Most of the time I use `timezone.now` in conjunction with `timezone.timedelta`, however, today I realized it was not publicly exported in the module.
Most of the time, using it saves an import from `datetime` (e.g., timezone.now + timezone.timedelta is a common pattern). I presume this use case is a common one among Django developers. I made a quick Stack Overflow search, which yielded 100+ results:
Then I thought, why stop there? Usage of `timezone.datetime` would possibly reduce the `datetime` imports to zero in some Django projects. However it is not used as much, as you can imagine:
I would say we should at least consider exporting `timedelta` What do you think?