Format and parser for Celery-Flower's Database

863 Views Asked by At

Will just ask if Celery-Flower's database (i.e when you use --persisten=True --db=flower) has a specific format? If yes, what is it? And are there any parsers for it, aside from flower itself?

Many thanks in advance!

1

There are 1 best solutions below

1
On BEST ANSWER

It is using Shelve, which is essentially a dictionary of pickled objects. You can use the same technique to read it. Check out the code, should give you a good starting point. Keep in mind that this is not a "published feature", hence, the project author might choose to change it at any given point. I'd suggest trying to use the API for your needs.