skip to Main Content

Redis – Autodiscovering celery tasks

I have the following project tree (for testing purposes) and I am trying to understand how Celery is loading tasks. app ├── __init__.py ├── app.py ├── celery.py └── my_tasks ├── __init__.py └── tasks.py celery.py contains the following code for creating…

VIEW QUESTION

woocommerce rest api python get products

What I need is to get all product IDs that are 'instock' using python. It looks like this: wcapi.get('products', params={"per_page": 100, 'stock_status': 'instock', 'tag': '1111'}).json() This code works, but have max limit 100 per_page, I don't understand how can I…

VIEW QUESTION
Back To Top
Search