aouthlib
Useful extensions to the standard Python datetime features
Science Score: 36.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
○Academic publication links
-
✓Committers with academic emails
4 of 133 committers (3.0%) from academic institutions -
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (14.7%) to scientific vocabulary
Keywords
Keywords from Contributors
Repository
Useful extensions to the standard Python datetime features
Basic Info
- Host: GitHub
- Owner: dateutil
- License: other
- Language: Python
- Default Branch: master
- Size: 5.7 MB
Statistics
- Stars: 2,507
- Watchers: 44
- Forks: 514
- Open Issues: 413
- Releases: 20
Topics
Metadata Files
README.rst
dateutil - powerful extensions to datetime
==========================================
|pypi| |support| |licence|
|gitter| |readthedocs|
|appveyor| |gha| |coverage|
.. |pypi| image:: https://img.shields.io/pypi/v/python-dateutil.svg?style=flat-square
:target: https://pypi.org/project/python-dateutil/
:alt: pypi version
.. |support| image:: https://img.shields.io/pypi/pyversions/python-dateutil.svg?style=flat-square
:target: https://pypi.org/project/python-dateutil/
:alt: supported Python version
.. |appveyor| image:: https://img.shields.io/appveyor/ci/dateutil/dateutil/master.svg?style=flat-square&logo=appveyor
:target: https://ci.appveyor.com/project/dateutil/dateutil
:alt: appveyor build status
.. |gha| image:: https://github.com/dateutil/dateutil/actions/workflows/validate.yml/badge.svg
:target: https://github.com/dateutil/dateutil/actions
:alt: github actions build status
.. |coverage| image:: https://codecov.io/gh/dateutil/dateutil/branch/master/graphs/badge.svg?branch=master
:target: https://codecov.io/gh/dateutil/dateutil?branch=master
:alt: Code coverage
.. |gitter| image:: https://badges.gitter.im/dateutil/dateutil.svg
:alt: Join the chat at https://gitter.im/dateutil/dateutil
:target: https://gitter.im/dateutil/dateutil
.. |licence| image:: https://img.shields.io/pypi/l/python-dateutil.svg?style=flat-square
:target: https://pypi.org/project/python-dateutil/
:alt: licence
.. |readthedocs| image:: https://img.shields.io/readthedocs/dateutil/latest.svg?style=flat-square&label=Read%20the%20Docs
:alt: Read the documentation at https://dateutil.readthedocs.io/en/latest/
:target: https://dateutil.readthedocs.io/en/latest/
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:
.. doctest:: readmeexample
>>> 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
Being exactly 6 months ahead was **really** a coincidence :)
Contributing
============
We welcome many types of contributions - bug reports, pull requests (code, infrastructure or documentation fixes). For more information about how to contribute to the project, see the ``CONTRIBUTING.md`` file in the repository.
Author
======
The dateutil module was written by Gustavo Niemeyer
in 2003.
It is maintained by:
* Gustavo Niemeyer 2003-2011
* Tomi Pieviläinen 2012-2014
* Yaron de Leeuw 2014-2016
* Paul Ganssle 2015-
Starting with version 2.4.1 and running until 2.8.2, all source and binary
distributions will be signed by a PGP key that has, at the very least, been
signed by the key which made the previous release. A table of release signing
keys can be found below:
=========== ============================
Releases Signing key fingerprint
=========== ============================
2.4.1-2.8.2 `6B49 ACBA DCF6 BD1C A206 67AB CD54 FCE3 D964 BEFB`_
=========== ============================
New releases *may* have signed tags, but binary and source distributions
uploaded to PyPI will no longer have GPG signatures attached.
Contact
=======
Our mailing list is available at `dateutil@python.org `_. As it is hosted by the PSF, it is subject to the `PSF code of
conduct `_.
License
=======
All contributions after December 1, 2017 released under dual license - either `Apache 2.0 License `_ or the `BSD 3-Clause License `_. Contributions before December 1, 2017 - except those those explicitly relicensed - are released only under the BSD 3-Clause License.
.. _6B49 ACBA DCF6 BD1C A206 67AB CD54 FCE3 D964 BEFB:
https://pgp.mit.edu/pks/lookup?op=vindex&search=0xCD54FCE3D964BEFB
Owner
- Name: dateutil
- Login: dateutil
- Kind: organization
- Repositories: 4
- Profile: https://github.com/dateutil
GitHub Events
Total
- Issues event: 27
- Watch event: 130
- Issue comment event: 54
- Push event: 2
- Pull request review event: 6
- Pull request review comment event: 7
- Pull request event: 25
- Fork event: 32
Last Year
- Issues event: 27
- Watch event: 130
- Issue comment event: 54
- Push event: 2
- Pull request review event: 6
- Pull request review comment event: 7
- Pull request event: 25
- Fork event: 32
Committers
Last synced: 7 months ago
Top Committers
| Name | Commits | |
|---|---|---|
| Paul Ganssle | p****l@g****o | 544 |
| niemeyer | 112 | |
| Brock Mendel | j****l@g****m | 74 |
| Yaron de Leeuw | me@j****t | 46 |
| Mario Corchero | m****m@b****t | 24 |
| Jon Dufresne | j****e@g****m | 23 |
| Alex Willmer | a****x@m****k | 15 |
| Tomi Pieviläinen | t****d@i****i | 13 |
| Daniel Lemm | 6****4 | 10 |
| Hugo van Kemenade | h****k | 8 |
| Paul G | pg@e****m | 8 |
| John Purviance | j****e@v****u | 6 |
| Andrew Bennett | a****t | 6 |
| Pablo Galindo | p****l@g****m | 6 |
| Michael Aquilina | m****a@g****m | 5 |
| Luca Ferocino | l****x@h****m | 5 |
| Laszlo Kiss-Kollar | k****o@g****m | 5 |
| Tomasz-Kluczkowski | t****1@h****k | 5 |
| Matt Cooper | m****c@x****m | 5 |
| Bernat Gabor | j****r@g****m | 5 |
| Alex Chamberlain | a****9@b****t | 4 |
| Brook Li | e****t@g****m | 4 |
| Elliot Hughes | e****s@g****m | 4 |
| Florian Rathgeber | f****r@g****m | 4 |
| Gustavo Niemeyer | g****o@n****t | 4 |
| Kirit Thadaka | k****a@g****m | 4 |
| Labrys of Knossos | L****t@g****m | 4 |
| Rustem Sayargaliev | r****v@g****m | 4 |
| Ryan Petrello | l****s@r****m | 4 |
| Sherry Zhou | g****b@c****m | 4 |
| and 103 more... | ||
Committer Domains (Top 20 + Academic)
Issues and Pull Requests
Last synced: 6 months ago
All Time
- Total issues: 188
- Total pull requests: 126
- Average time to close issues: 4 months
- Average time to close pull requests: 6 months
- Total issue authors: 156
- Total pull request authors: 73
- Average comments per issue: 2.26
- Average comments per pull request: 1.4
- Merged pull requests: 24
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 29
- Pull requests: 34
- Average time to close issues: 28 days
- Average time to close pull requests: 28 days
- Issue authors: 27
- Pull request authors: 18
- Average comments per issue: 0.28
- Average comments per pull request: 0.68
- Merged pull requests: 4
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
- pganssle (12)
- kloczek (6)
- niccokunzmann (6)
- uri-rodberg (4)
- pventuzelo (3)
- mtelka (2)
- juliangilbey (2)
- ddouglas87 (2)
- salty-horse (2)
- joycebrum (2)
- safiyat (2)
- Mapiarz (1)
- jonathanunderwood (1)
- binnisb (1)
- espdev (1)
Pull Request Authors
- pganssle (14)
- graingert (7)
- cclauss (3)
- dodoru (2)
- bondress (2)
- KayMaN777 (2)
- yajo (2)
- alerque (2)
- JcsEV (2)
- tsx (2)
- jmartens (2)
- branchvincent (2)
- ljluestc (2)
- AndreLouisCaron (2)
- holzman (2)
Top Labels
Issue Labels
Pull Request Labels
Packages
- Total packages: 56
-
Total downloads:
- pypi 583,266,048 last-month
- homebrew 5 last-month
- Total docker downloads: 14,648,472,202
-
Total dependent packages: 6,611
(may contain duplicates) -
Total dependent repositories: 346,416
(may contain duplicates) - Total versions: 111
- Total maintainers: 4
pypi.org: python-dateutil
Extensions to the standard Python datetime module
- Homepage: https://github.com/dateutil/dateutil
- Documentation: https://dateutil.readthedocs.io/en/stable/
- License: Dual License
-
Latest release: 2.9.0
published almost 2 years ago
Rankings
Maintainers (4)
conda-forge.org: python-dateutil
The dateutil module provides powerful extensions to the standard datetime module, available in Python.
- Homepage: https://dateutil.readthedocs.org/
- License: Apache-2.0
-
Latest release: 2.8.2
published over 4 years ago
Rankings
anaconda.org: python-dateutil
The dateutil module provides powerful extensions to the standard datetime module, available in Python.
- Homepage: https://dateutil.readthedocs.io/
- License: BSD-3-Clause and Apache-2.0
-
Latest release: 2.8.2
published over 4 years ago
Rankings
pypi.org: python-dateut
Extensions to the standard Python datetime module
- Homepage: https://github.com/dateutil/dateutil
- Documentation: https://python-dateut.readthedocs.io/
- License: Dual License
-
Latest release: 0.0.0
published over 3 years ago
Rankings
pypi.org: argpars
Extensions to the standard Python datetime module
- Homepage: https://github.com/dateutil/dateutil
- Documentation: https://argpars.readthedocs.io/
- License: Dual License
-
Latest release: 0.0.0
published over 3 years ago
Rankings
pypi.org: charset-normaliz
Extensions to the standard Python datetime module
- Homepage: https://github.com/dateutil/dateutil
- Documentation: https://charset-normaliz.readthedocs.io/
- License: Dual License
-
Latest release: 0.0.0
published over 3 years ago
Rankings
pypi.org: zure-mgmt-authorization
Extensions to the standard Python datetime module
- Homepage: https://github.com/dateutil/dateutil
- Documentation: https://zure-mgmt-authorization.readthedocs.io/
- License: Dual License
-
Latest release: 0.0.0
published over 3 years ago
Rankings
pypi.org: oauthlbi
Extensions to the standard Python datetime module
- Homepage: https://github.com/dateutil/dateutil
- Documentation: https://oauthlbi.readthedocs.io/
- License: Dual License
-
Latest release: 0.0.0
published over 3 years ago
Rankings
pypi.org: soupsiev
Extensions to the standard Python datetime module
- Homepage: https://github.com/dateutil/dateutil
- Documentation: https://soupsiev.readthedocs.io/
- License: Dual License
-
Latest release: 0.0.0
published over 3 years ago
Rankings
pypi.org: cacheools
Extensions to the standard Python datetime module
- Homepage: https://github.com/dateutil/dateutil
- Documentation: https://cacheools.readthedocs.io/
- License: Dual License
-
Latest release: 0.0.0
published over 3 years ago
Rankings
pypi.org: pytho-dateuti
Extensions to the standard Python datetime module
- Homepage: https://github.com/dateutil/dateutil
- Documentation: https://pytho-dateuti.readthedocs.io/
- License: Dual License
-
Latest release: 0.0.0
published over 3 years ago
Rankings
pypi.org: zure-mgmt-containerregistry
Extensions to the standard Python datetime module
- Homepage: https://github.com/dateutil/dateutil
- Documentation: https://zure-mgmt-containerregistry.readthedocs.io/
- License: Dual License
-
Latest release: 0.0.0
published over 3 years ago
Rankings
pypi.org: great-expectation
Extensions to the standard Python datetime module
- Homepage: https://github.com/dateutil/dateutil
- Documentation: https://great-expectation.readthedocs.io/
- License: Dual License
-
Latest release: 0.0.0
published over 3 years ago
Rankings
pypi.org: cryptogarphy
Extensions to the standard Python datetime module
- Homepage: https://github.com/dateutil/dateutil
- Documentation: https://cryptogarphy.readthedocs.io/
- License: Dual License
-
Latest release: 0.0.0
published over 3 years ago
Rankings
pypi.org: ython-json-logger
Extensions to the standard Python datetime module
- Homepage: https://github.com/dateutil/dateutil
- Documentation: https://ython-json-logger.readthedocs.io/
- License: Dual License
-
Latest release: 0.0.0
published over 3 years ago
Rankings
pypi.org: rotobuf
Extensions to the standard Python datetime module
- Homepage: https://github.com/dateutil/dateutil
- Documentation: https://rotobuf.readthedocs.io/
- License: Dual License
-
Latest release: 0.0.0
published over 3 years ago
Rankings
pypi.org: googl-auth
Extensions to the standard Python datetime module
- Homepage: https://github.com/dateutil/dateutil
- Documentation: https://googl-auth.readthedocs.io/
- License: Dual License
-
Latest release: 0.0.0
published over 3 years ago
Rankings
pypi.org: python-dateuitl
Extensions to the standard Python datetime module
- Homepage: https://github.com/dateutil/dateutil
- Documentation: https://python-dateuitl.readthedocs.io/
- License: Dual License
-
Latest release: 0.0.0
published over 3 years ago
Rankings
pypi.org: oautlhib
Extensions to the standard Python datetime module
- Homepage: https://github.com/dateutil/dateutil
- Documentation: https://oautlhib.readthedocs.io/
- License: Dual License
-
Latest release: 0.0.0
published over 3 years ago
Rankings
pypi.org: prtobuf
Extensions to the standard Python datetime module
- Homepage: https://github.com/dateutil/dateutil
- Documentation: https://prtobuf.readthedocs.io/
- License: Dual License
-
Latest release: 0.0.0
published over 3 years ago
Rankings
pypi.org: colormaa
Extensions to the standard Python datetime module
- Homepage: https://github.com/dateutil/dateutil
- Documentation: https://colormaa.readthedocs.io/
- License: Dual License
-
Latest release: 0.0.0
published over 3 years ago
Rankings
pypi.org: coloraam
Extensions to the standard Python datetime module
- Homepage: https://github.com/dateutil/dateutil
- Documentation: https://coloraam.readthedocs.io/
- License: Dual License
-
Latest release: 0.0.0
published over 3 years ago
Rankings
pypi.org: dataclass-json
Extensions to the standard Python datetime module
- Homepage: https://github.com/dateutil/dateutil
- Documentation: https://dataclass-json.readthedocs.io/
- License: Dual License
-
Latest release: 0.0.0
published over 3 years ago
Rankings
pypi.org: reat-expectations
Extensions to the standard Python datetime module
- Homepage: https://github.com/dateutil/dateutil
- Documentation: https://reat-expectations.readthedocs.io/
- License: Dual License
-
Latest release: 0.0.0
published over 3 years ago
Rankings
pypi.org: cachetoosl
Extensions to the standard Python datetime module
- Homepage: https://github.com/dateutil/dateutil
- Documentation: https://cachetoosl.readthedocs.io/
- License: Dual License
-
Latest release: 0.0.0
published over 3 years ago
Rankings
pypi.org: dataclasses-jso
Extensions to the standard Python datetime module
- Homepage: https://github.com/dateutil/dateutil
- Documentation: https://dataclasses-jso.readthedocs.io/
- License: Dual License
-
Latest release: 0.0.0
published over 3 years ago
Rankings
pypi.org: azure-mgmt-containerregistr
Extensions to the standard Python datetime module
- Homepage: https://github.com/dateutil/dateutil
- Documentation: https://azure-mgmt-containerregistr.readthedocs.io/
- License: Dual License
-
Latest release: 0.0.0
published over 3 years ago
Rankings
pypi.org: azure-mgmt-authroization
Extensions to the standard Python datetime module
- Homepage: https://github.com/dateutil/dateutil
- Documentation: https://azure-mgmt-authroization.readthedocs.io/
- License: Dual License
-
Latest release: 0.0.0
published over 3 years ago
Rankings
pypi.org: ataclasses-json
Extensions to the standard Python datetime module
- Homepage: https://github.com/dateutil/dateutil
- Documentation: https://ataclasses-json.readthedocs.io/
- License: Dual License
-
Latest release: 0.0.0
published over 3 years ago
Rankings
pypi.org: azure-mgmt-authorizatio
Extensions to the standard Python datetime module
- Homepage: https://github.com/dateutil/dateutil
- Documentation: https://azure-mgmt-authorizatio.readthedocs.io/
- License: Dual License
-
Latest release: 0.0.0
published over 3 years ago
Rankings
pypi.org: oatuhlib
Extensions to the standard Python datetime module
- Homepage: https://github.com/dateutil/dateutil
- Documentation: https://oatuhlib.readthedocs.io/
- License: Dual License
-
Latest release: 0.0.0
published over 3 years ago
Rankings
pypi.org: bbeautifulsoup4
Extensions to the standard Python datetime module
- Homepage: https://github.com/dateutil/dateutil
- Documentation: https://bbeautifulsoup4.readthedocs.io/
- License: Dual License
-
Latest release: 0.0.0
published over 3 years ago
Rankings
pypi.org: oupsieve
Extensions to the standard Python datetime module
- Homepage: https://github.com/dateutil/dateutil
- Documentation: https://oupsieve.readthedocs.io/
- License: Dual License
-
Latest release: 0.0.0
published over 3 years ago
Rankings
pypi.org: pyparsign
Extensions to the standard Python datetime module
- Homepage: https://github.com/dateutil/dateutil
- Documentation: https://pyparsign.readthedocs.io/
- License: Dual License
-
Latest release: 0.0.0
published over 3 years ago
Rankings
pypi.org: arpgrase
Extensions to the standard Python datetime module
- Homepage: https://github.com/dateutil/dateutil
- Documentation: https://arpgrase.readthedocs.io/
- License: Dual License
-
Latest release: 0.0.0
published over 3 years ago
Rankings
pypi.org: pyparisng
Extensions to the standard Python datetime module
- Homepage: https://github.com/dateutil/dateutil
- Documentation: https://pyparisng.readthedocs.io/
- License: Dual License
-
Latest release: 0.0.0
published over 3 years ago
Rankings
pypi.org: jnija2
Extensions to the standard Python datetime module
- Homepage: https://github.com/dateutil/dateutil
- Documentation: https://jnija2.readthedocs.io/
- License: Dual License
-
Latest release: 0.0.0
published over 3 years ago
Rankings
pypi.org: pycparse
Extensions to the standard Python datetime module
- Homepage: https://github.com/dateutil/dateutil
- Documentation: https://pycparse.readthedocs.io/
- License: Dual License
-
Latest release: 0.0.0
published over 3 years ago
Rankings
pypi.org: aouthlib
Extensions to the standard Python datetime module
- Homepage: https://github.com/dateutil/dateutil
- Documentation: https://aouthlib.readthedocs.io/
- License: Dual License
-
Latest release: 0.0.0
published over 3 years ago
Rankings
pypi.org: hcarset-normalize
Extensions to the standard Python datetime module
- Homepage: https://github.com/dateutil/dateutil
- Documentation: https://hcarset-normalize.readthedocs.io/
- License: Dual License
-
Latest release: 0.0.0
published over 3 years ago
Rankings
pypi.org: coloraama
Extensions to the standard Python datetime module
- Homepage: https://github.com/dateutil/dateutil
- Documentation: https://coloraama.readthedocs.io/
- License: Dual License
-
Latest release: 0.0.0
published over 3 years ago
Rankings
pypi.org: azure-mgmt-containrregistry
Extensions to the standard Python datetime module
- Homepage: https://github.com/dateutil/dateutil
- Documentation: https://azure-mgmt-containrregistry.readthedocs.io/
- License: Dual License
-
Latest release: 0.0.0
published over 3 years ago
Rankings
pypi.org: semve
Extensions to the standard Python datetime module
- Homepage: https://github.com/dateutil/dateutil
- Documentation: https://semve.readthedocs.io/
- License: Dual License
-
Latest release: 0.0.0
published over 3 years ago
Rankings
pypi.org: pyprasing
Extensions to the standard Python datetime module
- Homepage: https://github.com/dateutil/dateutil
- Documentation: https://pyprasing.readthedocs.io/
- License: Dual License
-
Latest release: 0.0.0
published over 3 years ago
Rankings
pypi.org: soupseive
Extensions to the standard Python datetime module
- Homepage: https://github.com/dateutil/dateutil
- Documentation: https://soupseive.readthedocs.io/
- License: Dual License
-
Latest release: 0.0.0
published over 3 years ago
Rankings
pypi.org: knac
Extensions to the standard Python datetime module
- Homepage: https://github.com/dateutil/dateutil
- Documentation: https://knac.readthedocs.io/
- License: Dual License
-
Latest release: 0.0.0
published over 3 years ago
Rankings
pypi.org: ryptography
Extensions to the standard Python datetime module
- Homepage: https://github.com/dateutil/dateutil
- Documentation: https://ryptography.readthedocs.io/
- License: Dual License
-
Latest release: 0.0.0
published over 3 years ago
Rankings
pypi.org: python-json-logge
Extensions to the standard Python datetime module
- Homepage: https://github.com/dateutil/dateutil
- Documentation: https://python-json-logge.readthedocs.io/
- License: Dual License
-
Latest release: 0.0.0
published over 3 years ago
Rankings
pypi.org: coolorama
Extensions to the standard Python datetime module
- Homepage: https://github.com/dateutil/dateutil
- Documentation: https://coolorama.readthedocs.io/
- License: Dual License
-
Latest release: 0.0.0
published over 3 years ago
Rankings
pypi.org: jupyter-cor
Extensions to the standard Python datetime module
- Homepage: https://github.com/dateutil/dateutil
- Documentation: https://jupyter-cor.readthedocs.io/
- License: Dual License
-
Latest release: 0.0.0
published over 3 years ago
Rankings
pypi.org: charset-noramlizer
Extensions to the standard Python datetime module
- Homepage: https://github.com/dateutil/dateutil
- Documentation: https://charset-noramlizer.readthedocs.io/
- License: Dual License
-
Latest release: 0.0.0
published over 3 years ago
Rankings
pypi.org: oogle-auth
Extensions to the standard Python datetime module
- Homepage: https://github.com/dateutil/dateutil
- Documentation: https://oogle-auth.readthedocs.io/
- License: Dual License
-
Latest release: 0.0.0
published over 3 years ago
Rankings
pypi.org: upyter-core
Extensions to the standard Python datetime module
- Homepage: https://github.com/dateutil/dateutil
- Documentation: https://upyter-core.readthedocs.io/
- License: Dual License
-
Latest release: 0.0.0
published over 3 years ago
Rankings
pypi.org: portobuf
Extensions to the standard Python datetime module
- Homepage: https://github.com/dateutil/dateutil
- Documentation: https://portobuf.readthedocs.io/
- License: Dual License
-
Latest release: 0.0.0
published over 3 years ago
Rankings
pypi.org: juupyter-core
Extensions to the standard Python datetime module
- Homepage: https://github.com/dateutil/dateutil
- Documentation: https://juupyter-core.readthedocs.io/
- License: Dual License
-
Latest release: 0.0.0
published over 3 years ago
Rankings
formulae.brew.sh: python-dateutil
Useful extensions to the standard Python datetime features
- Homepage: https://github.com/dateutil/dateutil
- License: Apache-2.0
- Status: removed
-
Latest release: 2.8.2
published over 2 years ago
Rankings
Dependencies
- coverage * development
- freezegun <0.3.11 development
- hypothesis >=3.30 development
- pytest <3.3 development
- pytest-cov >=2.0.0 development
- setuptools <40.0 development
- tox <3.8.0 development
- virtualenv <16.0 development
- attrs * development
- build >=0.3.0 development
- coverage * development
- freezegun * development
- hypothesis >=3.30 development
- mock * development
- pytest >=3.0 development
- pytest-cov >=2.0.0 development
- six * development
- Sphinx >=1.7.3,
- readme-renderer >=21.0
- sphinx_rtd_theme >=0.3.0
- actions/checkout v3 composite
- actions/setup-python v3 composite
- actions/checkout v3 composite
- actions/setup-python v3 composite
- actions/setup-python v4 composite
- akaihola/darker 1.5.1 composite
- codecov/codecov-action v3 composite