datespan
A Python package for effortless date span parsing and management.
Aimed for data analysis and processing, useful in any context requiring date & time spans.
pip install datespan
import pandas as pd
from datespan import parse, DateSpan
df = pd.DataFrame({"date": pd.date_range("2024-01-01", "2024-12-31")})
dss = parse("April 2024 ytd")
dss.add("May")
dss.add("today")
dss += "previous week"
dss -= "January"
print(len(dss))
print(dss.to_tuples())
print(dss.to_sql("date"))
print(dss.filter(df, "date"))
Classes
DateSpan
represents a single date or time span, defined by a start and an end datetime.
Provides methods to create, compare, merge, parse, split, shift, expand & intersect
DateSpan
objects and /or datetime
, date
or time
objects.
DateSpanSet
represents an ordered and redundancy free collection of DateSpan
objects,
where consecutive or overlapping DateSpan
objects get automatically merged into a single DateSpan
object. Required for fragmented date span expressions like every 2nd Friday of next month
.
DateSpanParser
provides parsing for arbitrary date, time and date span strings in english language,
ranging from simple dates like '2021-01-01' up to complex date span expressions like
'Mondays to Wednesday last month'. For internal DateTime parsing and manipulation, the
DateUtil library is used.
Part of the CubedPandas Project
The 'dataspan' package has been carved out from the
CubedPandas project, a library for
easy, fast & fun data analysis with Pandas dataframes, as DataSpan serves a broader
scope and purpose and can be used independently of CubedPandas.
Bugs, Issues, Feature Requests
Please report any bugs, issues, feature requests, questions or feedback on the
GitHub Issues page. It will
be highly appreciated and will help to improve the package.
Documentation
Documentation will be available from 0.3.0 release on.