Skip to main content

Extension to Python `datetime` functionality.

Project description

pyfortified-dateutil

Important Note

Work In Progress

Badges

Install

pip install pyfortified-dateutil

Functions

import pyfortified_dateutil
import datetime as dt

month_first_date, month_last_date = pyfortified_dateutil.dates_month_first_last(dt.date(2016, 12, 20))
print(month_first_date)
print(month_last_date)
datetime.date(2016, 12, 1)
datetime.date(2016, 12, 31)
import pyfortified_dateutil
import datetime as dt

start_dt = dt.date(2015, 12, 20)
end_dt = dt.date(2016, 1, 6)

for dt in pyfortified_dateutil.date_range(start_dt, end_dt):
    pprint(dt.strftime("%Y-%m-%d"))
'2015-12-20'
'2015-12-21'
'2015-12-22'
'2015-12-23'
'2015-12-24'
'2015-12-25'
'2015-12-26'
'2015-12-27'
'2015-12-28'
'2015-12-29'
'2015-12-30'
'2015-12-31'
'2016-01-01'
'2016-01-02'
'2016-01-03'
'2016-01-04'
'2016-01-05'
'2016-01-06'
import pyfortified_dateutil
import datetime as dt

start_dt = dt.date(2016, 12, 20)
end_dt = dt.date(2018, 1, 11))

for dt in pyfortified_dateutil.dates_months_list(start_dt, end_dt):
    print(dt)
'2016-12'
'2017-01'
'2017-02'
'2017-03'
'2017-04'
'2017-05'
'2017-06'
'2017-07'
'2017-08'
'2017-09'
'2017-10'
'2017-11'
'2017-12'

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyfortified-dateutil-0.1.1.tar.gz (4.2 kB view hashes)

Uploaded Source

Built Distribution

pyfortified_dateutil-0.1.1-py3-none-any.whl (3.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page