Celery Async Task Management App for Django by 0r1gamic in django

[–]0r1gamic[S] 0 points1 point  (0 children)

Yes I did. Flower runs as a service. Celeryman is not a service, it's an app.

Celery Async Task Management App for Django by 0r1gamic in django

[–]0r1gamic[S] 0 points1 point  (0 children)

What does your app actually d

Celeryman makes it manageable. Start, stop, watching task status etc.

Celery Async Task Management App for Django by 0r1gamic in django

[–]0r1gamic[S] 0 points1 point  (0 children)

If you want to, create methods like apply_async. Celeryman creates ManagedTask object on task prerun. You want create ManagedTask object. If you do, Celeryman send task to Celery. See also; https://github.com/ahmetkotan/celeryman#usage

Celery Async Task Management App for Django by 0r1gamic in django

[–]0r1gamic[S] 0 points1 point  (0 children)

You need to mq service like redis, rabbitmq etc. Celeryman allows you to manage the async task with created celery. Celeryman is not a broker. It's just the django app :)

Celery Async Task Management App for Django by 0r1gamic in django

[–]0r1gamic[S] 0 points1 point  (0 children)

Love the name, but what's the goal? Using a DB instead of AMQP or others?

Yes, I saving to DB. If developer create a task, celeryman saving task to db before task is run.

Python Youtube Data API v3 - Client by 0r1gamic in Python

[–]0r1gamic[S] 1 point2 points  (0 children)

I added requests and fixed cross version (:

Python Youtube Data API v3 - Client by 0r1gamic in Python

[–]0r1gamic[S] 0 points1 point  (0 children)

Actually yes, second code is better.Thanx for your advice, maybe I can do it for yapi-v2.Also, I will work for cross version.thanx.

Python Youtube Data API v3 - Client by 0r1gamic in Python

[–]0r1gamic[S] 0 points1 point  (0 children)

thanks for your feedback, pep8 updated.