photocrowd / django-cursor-pagination

Cursor-based pagination for Django
BSD 3-Clause "New" or "Revised" License
156 stars 27 forks source link

Support async queryset evaluation #49

Closed bradleyoesch closed 2 months ago

bradleyoesch commented 3 months ago

Closes #50

Was switching our codebase over to async so we could use dataloaders and realized this library didn't support async querysets

I cannot claim to be very knowledgeable about async python but this is what I did locally :shrug:

patrick91 commented 3 months ago

@bradleyoesch sorry, I missed the updates, I'll try to review and merge in next few days

patrick91 commented 3 months ago

@bradleyoesch I pushed a couple of commits to fix the tests 😊

I think I want to update the CI to run tests on different python version with different django versions, but I'm fine with merging this now, but can you double check my changes?

bradleyoesch commented 2 months ago

@bradleyoesch I pushed a couple of commits to fix the tests 😊

I think I want to update the CI to run tests on different python version with different django versions, but I'm fine with merging this now, but can you double check my changes?

Thank you! Yeah those look good to me overall! Left one comment on acount()

bradleyoesch commented 2 months ago

@patrick91 is this all good to go? Anything else I can do to get this merged?

patrick91 commented 2 months ago

@bradleyoesch just the ping is enough! thanks 😊

patrick91 commented 2 months ago

@bradleyoesch released: https://pypi.org/project/django-cursor-pagination/0.3.0/

thommor commented 2 months ago

Thanks for the contribution @bradleyoesch.

And thanks for reviewing @patrick91

bradleyoesch commented 2 months ago

Thanks yall!