python-python-dateutil
Port variant v11
Summary Extension to the standard datetime module (3.11)
Package version 2.9.0.post0
Homepage https://github.com/dateutil/dateutil
Keywords python
Maintainer Python Automaton
License Not yet specified
Other variants v12
Ravenports Buildsheet | History
Ravensource Port Directory | History
Last modified 03 MAR 2024, 15:36:05 UTC
Port created 28 SEP 2017, 20:31:25 UTC
Subpackage Descriptions
single dateutil - powerful extensions to datetime ========================================== |pypi| |support| |licence| |gitter| |readthedocs| |travis| |appveyor| |pipelines| |coverage| :alt: pypi version :alt: supported Python version :alt: travis build status :alt: appveyor build status :alt: azure pipelines build status :alt: Code coverage :alt: licence The `dateutil` module provides powerful extensions to the standard `datetime` module, available in Python. Installation ============ `dateutil` can be installed from PyPI using `pip` (note that the package name is different from the importable name):: pip install python-dateutil Download ======== dateutil is available on PyPI https://pypi.org/project/python-dateutil/ The documentation is hosted at: https://dateutil.readthedocs.io/en/stable/ Code ==== The code and issue tracker are hosted on GitHub: https://github.com/dateutil/dateutil/ Features ======== * Computing of relative deltas (next month, next year, next Monday, last week of month, etc); * Computing of relative deltas between two given date and/or datetime objects; * Computing of dates based on very flexible recurrence rules, using a superset of the [iCalendar] specification. Parsing of RFC strings is supported as well. * Generic parsing of dates in almost any string format; * Timezone (tzinfo) implementations for tzfile(5) format files (/etc/localtime, /usr/share/zoneinfo, etc), TZ environment string (in all known formats), iCalendar format files, given ranges (with help from relative deltas), local machine timezone, fixed offset timezone, UTC timezone, and Windows registry-based time zones. * Internal up-to-date world timezone information based on Olson's database. * Computing of Easter Sunday dates for any given year, using Western, Orthodox or Julian algorithms; * A comprehensive test suite. Quick example ============= Here's a snapshot, just to give an idea about the power of the package. For more examples, look at the documentation. Suppose you want to know how much time is left, in years/months/days/etc, before the next easter happening on a year with a Friday 13th in August, and you want to get today's date out of the "date" unix system command. Here is the code: .. code-block:: python3 >>> from dateutil.relativedelta import * >>> from dateutil.easter import * >>> from dateutil.rrule import * >>> from dateutil.parser import * >>> from datetime import * >>> now = parse("Sat Oct 11 17:13:46 UTC 2003") >>> today = now.date() >>> year = rrule(YEARLY,dtstart=now,bymonth=8,bymonthday=13,byweekday=FR)[0].year >>> rdelta = relativedelta(easter(year), today) >>> print("Today is: %s" % today) Today is: 2003-10-11 >>> print("Year with next Aug 13th on a Friday is: %s" % year) Year with next Aug 13th on a Friday is: 2004 >>> print("How far is the Easter of that year: %s" % rdelta) How far is the Easter of that year: relativedelta(months=+6) >>> print("And the Easter of that year is: %s" % (today+rdelta)) And the Easter of that year is: 2004-04-11
Configuration Switches (platform-specific settings discarded)
PY311 ON Build using Python 3.11 PY312 OFF Build using Python 3.12
Package Dependencies by Type
Build (only) python-pip:single:v11
autoselect-python:single:standard
Build and Runtime python311:single:standard
Runtime (only) python-six:single:v11
Download groups
main mirror://PYPIWHL/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b
Distribution File Information
a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427 229892 python_dateutil-2.9.0.post0-py2.py3-none-any.whl
Ports that require python-python-dateutil:v11
python-botocore:v11 Low-level, data-driven core of boto 3 (3.11)
python-celery:v11 Distributed Task Queue (3.11)
python-croniter:v11 Iteration for datetime object like cron (3.11)
python-e3-core:v11 E3 core. Tools and library for building and (3.11)
python-freezegun:v11 Let your Python tests travel through time (3.11)
python-ghp-import:v11 Copies docs directly to gh-pages branch (3.11)
python-pandas:v11 Data structures for time series, statistics (3.11)
python-rq-scheduler:v11 Job scheduling capabilities to Redis Queue (3.11)
python-tryton:v11 Tryton desktop client (3.11)
python-trytond-account-asset:v11 Tryton module for assets management (3.11)
python-trytond-account-invoice:v11 Tryton module for invoicing (3.11)
python-trytond-account:v11 Tryton module for accounting (3.11)
python-trytond-currency:v11 Tryton module with currencies (3.11)
python-trytond:v11 Tryton server (3.11)
python-vobject:v11 Parser for iCalendar and vCard files (3.11)
radicale:v11 CalDAV and CardDAV Server (3.11)