This an alternative way to generating sets of Delorean objects with DAILY stops
(start=None, stop=None, timezone='UTC', count=None)
| 97 | |
| 98 | |
| 99 | def range_daily(start=None, stop=None, timezone='UTC', count=None): |
| 100 | """ |
| 101 | This an alternative way to generating sets of Delorean objects with |
| 102 | DAILY stops |
| 103 | """ |
| 104 | return stops(start=start, stop=stop, freq=DAILY, timezone=timezone, count=count) |
| 105 | |
| 106 | |
| 107 | def range_hourly(start=None, stop=None, timezone='UTC', count=None): |