This page lists the very best Python engineering articles of the internet, hand-picked to give hours and hours
of pure reading joy.
It is especially designed for onboarding new members on your Pyt…
Python-efl is the binding for EFL, an awesome and performance-obcessed set of libraries. EFL stands for Enlightment Foundation Libraries. It was started for the …
Using celery 5.1.2 you can get the task id by the following code snippet:
from celery import current_app as celery_app
# in your function:
celery_app.tasks['…
Here’s a convenient way to set task id in celery:
import uuid # in-built in Python
task_id = str(uuid.uuid1())
task_dosomething.apply_async(task_id=task_id)
…
How to get server response from DropzoneJs for chunk uploads
After much struggling, here’s the magical formula we got for getting the server response back for chunck uploads:
var myDropzone = new Dropzone(document.body,…
Machine Learning Part 12: Association Analysis Explained
Association Analysis is an unsupervised learning technique used to discover interesting relationships hidden in large datasets. It’s most famous for its use in “Market Basket Analy…