aouthlib

Useful extensions to the standard Python datetime features

https://github.com/dateutil/dateutil

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

datetime library parsing python time timezones

Keywords from Contributors

unit-testing templates closember apps views jinja pallets forhumans distribution ipython
Last synced: 6 months ago · JSON representation

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
datetime library parsing python time timezones
Created over 11 years ago · Last pushed 11 months ago
Metadata Files
Readme Changelog Contributing License Authors

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

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

All Time
  • Total Commits: 1,132
  • Total Committers: 133
  • Avg Commits per committer: 8.511
  • Development Distribution Score (DDS): 0.519
Past Year
  • Commits: 2
  • Committers: 2
  • Avg Commits per committer: 1.0
  • Development Distribution Score (DDS): 0.5
Top Committers
Name Email 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...

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
parser (16) enhancement (15) wontfix (10) medium-difficulty (7) rrule (7) help wanted (6) bug (6) isoparser (5) duplicate (4) low-difficulty (4) implementation-uncertain (3) question (3) documentation (3) build (3) relativedelta (3) good first issue (2) time zones (2) release (1) formatter (1) tests (1)
Pull Request Labels
build (5) release (2) documentation (2) enhancement (1) wontfix (1) parser (1)

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

  • Versions: 34
  • Dependent Packages: 6,070
  • Dependent Repositories: 338,574
  • Downloads: 583,266,048 Last month
  • Docker Downloads: 14,648,472,202
Rankings
Dependent repos count: 0.0%
Docker downloads count: 0.0%
Downloads: 0.0%
Dependent packages count: 0.0%
Average: 0.9%
Stargazers count: 2.1%
Forks count: 3.1%
Last synced: 6 months ago
conda-forge.org: python-dateutil

The dateutil module provides powerful extensions to the standard datetime module, available in Python.

  • Versions: 13
  • Dependent Packages: 459
  • Dependent Repositories: 3,920
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.1%
Average: 4.3%
Forks count: 8.0%
Stargazers count: 8.9%
Last synced: 6 months ago
anaconda.org: python-dateutil

The dateutil module provides powerful extensions to the standard datetime module, available in Python.

  • Versions: 10
  • Dependent Packages: 62
  • Dependent Repositories: 3,920
Rankings
Dependent repos count: 0.3%
Dependent packages count: 0.4%
Average: 8.6%
Forks count: 16.2%
Stargazers count: 17.6%
Last synced: 6 months ago
pypi.org: python-dateut

Extensions to the standard Python datetime module

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 0
Rankings
Stargazers count: 1.4%
Forks count: 2.5%
Dependent packages count: 5.9%
Dependent repos count: 12.4%
Average: 12.4%
Downloads: 40.1%
Last synced: about 1 year ago
pypi.org: argpars

Extensions to the standard Python datetime module

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 0
Rankings
Stargazers count: 1.4%
Forks count: 2.5%
Dependent packages count: 5.9%
Dependent repos count: 12.4%
Average: 12.4%
Downloads: 40.1%
Last synced: about 1 year ago
pypi.org: charset-normaliz

Extensions to the standard Python datetime module

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 0
Rankings
Stargazers count: 1.5%
Forks count: 2.5%
Dependent packages count: 4.8%
Dependent repos count: 6.3%
Average: 13.1%
Downloads: 50.2%
Last synced: about 1 year ago
pypi.org: zure-mgmt-authorization

Extensions to the standard Python datetime module

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 0
Rankings
Stargazers count: 1.5%
Forks count: 2.5%
Dependent packages count: 4.8%
Dependent repos count: 6.3%
Average: 13.1%
Downloads: 50.2%
Last synced: about 1 year ago
pypi.org: oauthlbi

Extensions to the standard Python datetime module

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 0
Rankings
Stargazers count: 1.5%
Forks count: 2.5%
Dependent packages count: 4.8%
Dependent repos count: 6.3%
Average: 13.1%
Downloads: 50.2%
Last synced: about 1 year ago
pypi.org: soupsiev

Extensions to the standard Python datetime module

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 0
Rankings
Stargazers count: 1.5%
Forks count: 2.5%
Dependent packages count: 4.8%
Dependent repos count: 6.3%
Average: 13.1%
Downloads: 50.2%
Last synced: 6 months ago
pypi.org: cacheools

Extensions to the standard Python datetime module

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 0
Rankings
Stargazers count: 1.5%
Forks count: 2.5%
Dependent packages count: 4.8%
Dependent repos count: 6.3%
Average: 13.1%
Downloads: 50.2%
Last synced: about 1 year ago
pypi.org: pytho-dateuti

Extensions to the standard Python datetime module

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 0
Rankings
Stargazers count: 1.5%
Forks count: 2.5%
Dependent packages count: 4.8%
Dependent repos count: 6.3%
Average: 13.1%
Downloads: 50.2%
Last synced: about 1 year ago
pypi.org: zure-mgmt-containerregistry

Extensions to the standard Python datetime module

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 0
Rankings
Stargazers count: 1.5%
Forks count: 2.5%
Dependent packages count: 4.8%
Dependent repos count: 6.3%
Average: 13.1%
Downloads: 50.2%
Last synced: 6 months ago
pypi.org: great-expectation

Extensions to the standard Python datetime module

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 0
Rankings
Stargazers count: 1.5%
Forks count: 2.5%
Dependent packages count: 4.8%
Dependent repos count: 6.3%
Average: 13.1%
Downloads: 50.2%
Last synced: about 1 year ago
pypi.org: cryptogarphy

Extensions to the standard Python datetime module

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 0
Rankings
Stargazers count: 1.5%
Forks count: 2.5%
Dependent packages count: 4.8%
Dependent repos count: 6.3%
Average: 13.1%
Downloads: 50.2%
Last synced: about 1 year ago
pypi.org: ython-json-logger

Extensions to the standard Python datetime module

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 0
Rankings
Stargazers count: 1.5%
Forks count: 2.5%
Dependent packages count: 4.8%
Dependent repos count: 6.3%
Average: 13.1%
Downloads: 50.2%
Last synced: about 1 year ago
pypi.org: rotobuf

Extensions to the standard Python datetime module

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 0
Rankings
Stargazers count: 1.5%
Forks count: 2.5%
Dependent packages count: 4.8%
Dependent repos count: 6.3%
Average: 13.1%
Downloads: 50.2%
Last synced: about 1 year ago
pypi.org: googl-auth

Extensions to the standard Python datetime module

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 0
Rankings
Stargazers count: 1.5%
Forks count: 2.5%
Dependent packages count: 4.8%
Dependent repos count: 6.3%
Average: 13.1%
Downloads: 50.2%
Last synced: about 1 year ago
pypi.org: python-dateuitl

Extensions to the standard Python datetime module

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 0
Rankings
Stargazers count: 1.5%
Forks count: 2.5%
Dependent packages count: 4.8%
Dependent repos count: 6.3%
Average: 13.1%
Downloads: 50.2%
Last synced: about 1 year ago
pypi.org: oautlhib

Extensions to the standard Python datetime module

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 0
Rankings
Stargazers count: 1.5%
Forks count: 2.5%
Dependent packages count: 4.8%
Dependent repos count: 6.3%
Average: 13.1%
Downloads: 50.2%
Last synced: about 1 year ago
pypi.org: prtobuf

Extensions to the standard Python datetime module

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 0
Rankings
Stargazers count: 1.5%
Forks count: 2.5%
Dependent packages count: 4.8%
Dependent repos count: 6.3%
Average: 13.1%
Downloads: 50.2%
Last synced: about 1 year ago
pypi.org: colormaa

Extensions to the standard Python datetime module

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 0
Rankings
Stargazers count: 1.5%
Forks count: 2.5%
Dependent packages count: 4.8%
Dependent repos count: 6.3%
Average: 13.1%
Downloads: 50.2%
Last synced: about 1 year ago
pypi.org: coloraam

Extensions to the standard Python datetime module

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 0
Rankings
Stargazers count: 1.5%
Forks count: 2.5%
Dependent packages count: 4.8%
Dependent repos count: 6.3%
Average: 13.1%
Downloads: 50.2%
Last synced: about 1 year ago
pypi.org: dataclass-json

Extensions to the standard Python datetime module

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 0
Rankings
Stargazers count: 1.5%
Forks count: 2.5%
Dependent packages count: 4.8%
Dependent repos count: 6.3%
Average: 13.1%
Downloads: 50.2%
Last synced: about 1 year ago
pypi.org: reat-expectations

Extensions to the standard Python datetime module

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 0
Rankings
Stargazers count: 1.5%
Forks count: 2.5%
Dependent packages count: 4.8%
Dependent repos count: 6.3%
Average: 13.1%
Downloads: 50.2%
Last synced: about 1 year ago
pypi.org: cachetoosl

Extensions to the standard Python datetime module

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 0
Rankings
Stargazers count: 1.5%
Forks count: 2.5%
Dependent packages count: 4.8%
Dependent repos count: 6.3%
Average: 13.1%
Downloads: 50.2%
Last synced: about 1 year ago
pypi.org: dataclasses-jso

Extensions to the standard Python datetime module

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 0
Rankings
Stargazers count: 1.5%
Forks count: 2.5%
Dependent packages count: 4.8%
Dependent repos count: 6.3%
Average: 13.1%
Downloads: 50.2%
Last synced: about 1 year ago
pypi.org: azure-mgmt-containerregistr

Extensions to the standard Python datetime module

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 0
Rankings
Stargazers count: 1.5%
Forks count: 2.5%
Dependent packages count: 4.8%
Dependent repos count: 6.3%
Average: 13.1%
Downloads: 50.2%
Last synced: about 1 year ago
pypi.org: azure-mgmt-authroization

Extensions to the standard Python datetime module

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 0
Rankings
Stargazers count: 1.5%
Forks count: 2.5%
Dependent packages count: 4.8%
Dependent repos count: 6.3%
Average: 13.1%
Downloads: 50.2%
Last synced: about 1 year ago
pypi.org: ataclasses-json

Extensions to the standard Python datetime module

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 0
Rankings
Stargazers count: 1.5%
Forks count: 2.5%
Dependent packages count: 4.8%
Dependent repos count: 6.3%
Average: 13.1%
Downloads: 50.2%
Last synced: about 1 year ago
pypi.org: azure-mgmt-authorizatio

Extensions to the standard Python datetime module

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 0
Rankings
Stargazers count: 1.5%
Forks count: 2.5%
Dependent packages count: 4.8%
Dependent repos count: 6.3%
Average: 13.1%
Downloads: 50.2%
Last synced: about 1 year ago
pypi.org: oatuhlib

Extensions to the standard Python datetime module

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 0
Rankings
Stargazers count: 1.5%
Forks count: 2.5%
Dependent packages count: 4.8%
Dependent repos count: 6.3%
Average: 13.1%
Downloads: 50.2%
Last synced: about 1 year ago
pypi.org: bbeautifulsoup4

Extensions to the standard Python datetime module

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 0
Rankings
Stargazers count: 1.5%
Forks count: 2.5%
Dependent packages count: 4.8%
Dependent repos count: 6.3%
Average: 13.1%
Downloads: 50.2%
Last synced: about 1 year ago
pypi.org: oupsieve

Extensions to the standard Python datetime module

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 0
Rankings
Stargazers count: 1.5%
Forks count: 2.5%
Dependent packages count: 4.8%
Dependent repos count: 6.3%
Average: 13.1%
Downloads: 50.2%
Last synced: about 1 year ago
pypi.org: pyparsign

Extensions to the standard Python datetime module

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 0
Rankings
Stargazers count: 1.5%
Forks count: 2.5%
Dependent packages count: 4.8%
Dependent repos count: 6.3%
Average: 13.1%
Downloads: 50.2%
Last synced: about 1 year ago
pypi.org: arpgrase

Extensions to the standard Python datetime module

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 0
Rankings
Stargazers count: 1.5%
Forks count: 2.5%
Dependent packages count: 4.8%
Dependent repos count: 6.3%
Average: 13.1%
Downloads: 50.2%
Last synced: about 1 year ago
pypi.org: pyparisng

Extensions to the standard Python datetime module

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 0
Rankings
Stargazers count: 1.5%
Forks count: 2.5%
Dependent packages count: 4.8%
Dependent repos count: 6.3%
Average: 13.1%
Downloads: 50.2%
Last synced: about 1 year ago
pypi.org: jnija2

Extensions to the standard Python datetime module

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 0
Rankings
Stargazers count: 1.5%
Forks count: 2.5%
Dependent packages count: 4.8%
Dependent repos count: 6.3%
Average: 13.1%
Downloads: 50.2%
Last synced: about 1 year ago
pypi.org: pycparse

Extensions to the standard Python datetime module

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 0
Rankings
Stargazers count: 1.5%
Forks count: 2.5%
Dependent packages count: 4.8%
Dependent repos count: 6.3%
Average: 13.1%
Downloads: 50.2%
Last synced: about 1 year ago
pypi.org: aouthlib

Extensions to the standard Python datetime module

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 0
Rankings
Stargazers count: 1.5%
Forks count: 2.5%
Dependent packages count: 4.8%
Dependent repos count: 6.3%
Average: 13.1%
Downloads: 50.2%
Last synced: about 1 year ago
pypi.org: hcarset-normalize

Extensions to the standard Python datetime module

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 0
Rankings
Stargazers count: 1.5%
Forks count: 2.5%
Dependent packages count: 4.8%
Dependent repos count: 6.3%
Average: 13.1%
Downloads: 50.2%
Last synced: 6 months ago
pypi.org: coloraama

Extensions to the standard Python datetime module

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 0
Rankings
Stargazers count: 1.5%
Forks count: 2.5%
Dependent packages count: 4.8%
Dependent repos count: 6.3%
Average: 13.1%
Downloads: 50.2%
Last synced: about 1 year ago
pypi.org: azure-mgmt-containrregistry

Extensions to the standard Python datetime module

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 0
Rankings
Stargazers count: 1.5%
Forks count: 2.5%
Dependent packages count: 4.8%
Dependent repos count: 6.3%
Average: 13.1%
Downloads: 50.2%
Last synced: about 1 year ago
pypi.org: semve

Extensions to the standard Python datetime module

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 0
Rankings
Stargazers count: 1.5%
Forks count: 2.5%
Dependent packages count: 4.8%
Dependent repos count: 6.3%
Average: 13.1%
Downloads: 50.2%
Last synced: about 1 year ago
pypi.org: pyprasing

Extensions to the standard Python datetime module

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 0
Rankings
Stargazers count: 1.5%
Forks count: 2.5%
Dependent packages count: 4.8%
Dependent repos count: 6.3%
Average: 13.1%
Downloads: 50.2%
Last synced: about 1 year ago
pypi.org: soupseive

Extensions to the standard Python datetime module

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 0
Rankings
Stargazers count: 1.5%
Forks count: 2.5%
Dependent packages count: 4.8%
Dependent repos count: 6.3%
Average: 13.1%
Downloads: 50.2%
Last synced: about 1 year ago
pypi.org: knac

Extensions to the standard Python datetime module

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 0
Rankings
Stargazers count: 1.5%
Forks count: 2.5%
Dependent packages count: 4.8%
Dependent repos count: 6.3%
Average: 13.1%
Downloads: 50.2%
Last synced: about 1 year ago
pypi.org: ryptography

Extensions to the standard Python datetime module

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 0
Rankings
Stargazers count: 1.5%
Forks count: 2.5%
Dependent packages count: 4.8%
Dependent repos count: 6.3%
Average: 13.1%
Downloads: 50.2%
Last synced: about 1 year ago
pypi.org: python-json-logge

Extensions to the standard Python datetime module

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 0
Rankings
Stargazers count: 1.5%
Forks count: 2.5%
Dependent packages count: 4.8%
Dependent repos count: 6.3%
Average: 13.1%
Downloads: 50.2%
Last synced: about 1 year ago
pypi.org: coolorama

Extensions to the standard Python datetime module

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 0
Rankings
Stargazers count: 1.5%
Forks count: 2.5%
Dependent packages count: 4.8%
Dependent repos count: 6.3%
Average: 13.1%
Downloads: 50.2%
Last synced: about 1 year ago
pypi.org: jupyter-cor

Extensions to the standard Python datetime module

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 0
Rankings
Stargazers count: 1.5%
Forks count: 2.5%
Dependent packages count: 4.8%
Dependent repos count: 6.3%
Average: 13.1%
Downloads: 50.2%
Last synced: about 1 year ago
pypi.org: charset-noramlizer

Extensions to the standard Python datetime module

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 0
Rankings
Stargazers count: 1.5%
Forks count: 2.5%
Dependent packages count: 4.8%
Dependent repos count: 6.3%
Average: 13.1%
Downloads: 50.2%
Last synced: about 1 year ago
pypi.org: oogle-auth

Extensions to the standard Python datetime module

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 0
Rankings
Stargazers count: 1.5%
Forks count: 2.5%
Dependent packages count: 4.8%
Dependent repos count: 6.3%
Average: 13.1%
Downloads: 50.2%
Last synced: about 1 year ago
pypi.org: upyter-core

Extensions to the standard Python datetime module

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 0
Rankings
Stargazers count: 1.5%
Forks count: 2.5%
Dependent packages count: 4.8%
Dependent repos count: 6.3%
Average: 13.1%
Downloads: 50.2%
Last synced: about 1 year ago
pypi.org: portobuf

Extensions to the standard Python datetime module

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 0
Rankings
Stargazers count: 1.5%
Forks count: 2.5%
Dependent packages count: 4.8%
Dependent repos count: 6.3%
Average: 13.1%
Downloads: 50.2%
Last synced: about 1 year ago
pypi.org: juupyter-core

Extensions to the standard Python datetime module

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 0
Rankings
Stargazers count: 1.5%
Forks count: 2.5%
Dependent packages count: 4.8%
Dependent repos count: 6.3%
Average: 13.1%
Downloads: 50.2%
Last synced: about 1 year ago
formulae.brew.sh: python-dateutil

Useful extensions to the standard Python datetime features

  • Versions: 2
  • Dependent Packages: 20
  • Dependent Repositories: 0
  • Downloads: 5 Last month
Rankings
Forks count: 5.7%
Stargazers count: 10.9%
Dependent packages count: 19.4%
Average: 31.4%
Dependent repos count: 57.5%
Downloads: 63.3%
Last synced: 6 months ago

Dependencies

requirements/3.3/requirements-dev.txt pypi
  • 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
requirements-dev.txt pypi
  • 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
docs/requirements-docs.txt pypi
  • Sphinx >=1.7.3,
  • readme-renderer >=21.0
  • sphinx_rtd_theme >=0.3.0
.github/workflows/publish.yml actions
  • actions/checkout v3 composite
  • actions/setup-python v3 composite
.github/workflows/validate.yml actions
  • 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