pax_global_header00006660000000000000000000000064145066575550014534gustar00rootroot0000000000000052 comment=c147acc8952bf279a38d5cab1f80be71735a10cf pyiso8601-2.1.0/000077500000000000000000000000001450665755500132165ustar00rootroot00000000000000pyiso8601-2.1.0/.editorconfig000066400000000000000000000002651450665755500156760ustar00rootroot00000000000000root = true [*] indent_size = 4 indent_style = space end_of_line = lf trim_trailing_whitespace = true charset = utf-8 insert_final_newline = true [{*.yaml,*.yml}] indent_size = 2 pyiso8601-2.1.0/.envrc000066400000000000000000000003111450665755500143270ustar00rootroot00000000000000#shellcheck shell=bash source_url "https://raw.githubusercontent.com/cachix/devenv/d1f7b48e35e6dee421cfd0f51481d17f77586997/direnvrc" "sha256-YBzqskFZxmNb3kYVoKD9ZixoPXJh1C9ZvTLGFRkauZ0=" use devenv pyiso8601-2.1.0/.github/000077500000000000000000000000001450665755500145565ustar00rootroot00000000000000pyiso8601-2.1.0/.github/workflows/000077500000000000000000000000001450665755500166135ustar00rootroot00000000000000pyiso8601-2.1.0/.github/workflows/python-app.yml000066400000000000000000000026341450665755500214420ustar00rootroot00000000000000name: Python build on: push: branches: [main] pull_request: jobs: build: runs-on: ubuntu-latest strategy: max-parallel: 8 matrix: python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} architecture: x64 allow-prereleases: true - name: Install nox run: python -m pip install --upgrade nox - name: nox test # Little hack to detect major.minor version, matrix version not always compatible with nox expectation run: nox --python $(python -c 'import sys; print(f"{sys.version_info.major}.{sys.version_info.minor}")') --session test lint: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - uses: actions/setup-python@v4 with: python-version: "3.11" - name: Install nox run: python -m pip install --upgrade nox - name: nox lint run: nox --session lint docs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - uses: actions/setup-python@v4 with: python-version: "3.11" - name: Install nox run: python -m pip install --upgrade nox - name: nox docs run: nox --session docs pyiso8601-2.1.0/.gitignore000066400000000000000000000002001450665755500151760ustar00rootroot00000000000000.tox *.egg-info *.pyc __pycache__ build dist .vscode .hypothesis git_log.txt # Devenv .devenv* devenv.local.nix .direnv .venv pyiso8601-2.1.0/.pre-commit-config.yaml000066400000000000000000000012331450665755500174760ustar00rootroot00000000000000# See https://pre-commit.com for more information # See https://pre-commit.com/hooks.html for more hooks # To update: run `pre-commit autoupdate` repos: - repo: https://github.com/pre-commit/pre-commit-hooks rev: v4.4.0 hooks: - id: trailing-whitespace - id: end-of-file-fixer - id: check-yaml - id: check-toml - id: check-added-large-files - repo: https://github.com/charliermarsh/ruff-pre-commit rev: v0.0.272 hooks: - id: ruff - repo: https://github.com/psf/black rev: 23.3.0 hooks: - id: black - repo: https://github.com/pre-commit/mirrors-mypy rev: v1.3.0 hooks: - id: mypy pyiso8601-2.1.0/.readthedocs.yaml000066400000000000000000000020071450665755500164440ustar00rootroot00000000000000# Read the Docs configuration file for Sphinx projects # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details # Required version: 2 # Set the OS, Python version and other tools you might need build: os: ubuntu-22.04 tools: python: "3.11" # You can also specify other tool versions: # nodejs: "20" # rust: "1.70" # golang: "1.20" # Build documentation in the "docs/" directory with Sphinx sphinx: configuration: docs/conf.py # You can configure Sphinx to use a different builder, for instance use the dirhtml builder for simpler URLs # builder: "dirhtml" # Fail on all warnings to avoid broken references # fail_on_warning: true # Optionally build your docs in additional formats such as PDF and ePub # formats: # - pdf # - epub # Optional but recommended, declare the Python requirements required # to build your documentation # See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html python: install: - requirements: docs/requirements.txt pyiso8601-2.1.0/.tool-versions000066400000000000000000000000731450665755500160420ustar00rootroot00000000000000python 3.10.4 3.11.0rc2 3.9.12 3.8.13 3.7.13 pypy3.9-7.3.9 pyiso8601-2.1.0/CHANGELOG.md000066400000000000000000000214741450665755500150370ustar00rootroot00000000000000# Changelog All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] ## [2.1.0] - 2023-10-03 ### Fixed - Use ruff for linting - Fixed CHANGELOG version links ### Added - Add readthedocs configuration ## [2.0.0] - 2023-06-09 ### Added - Add just for development commands - Add Python 3.12 support ### Changed - Move changelog into [CHANGELOG.md](CHANGELOG.md) - Freshen up README ### Fixed - Fix test_fixedoffset_eq by adding an actual assertion ### Removed - Drop Python 3.6 support (3.6 is end of life) ## [1.1.0] - 2022-09-28 ### Added - Add `is_iso8601` function for validating that a string matches an ISO 8601 format (thanks to David Baumgold (https://github.com/singingwolfboy) for https://github.com/micktwomey/pyiso8601/pull/21) - Add Python 3.11 to the test mix ## [1.0.2] - 2021-11-23 ### Added - Add missing `__all__` in `__init__.py`. Addresses https://github.com/micktwomey/pyiso8601/issues/17 (thanks to Alex Gaynor for reporting) ## [1.0.1] - 2021-11-22 ### Added - Add missing py.typed file (as per PEP 561), keeps mypy happy :D ## [1.0.0] - 2021-11-07 ### Added - Add type annotations to code ### Changed - Switch to poetry for packaging - Simplify internals and remove old compatability code - Switch to nox for testing - Lots of small project development changes ### Removed - Remove external type annotations in pyi - Drop python < 3.6 support ## [0.1.16] - 2021-07-16 ### Added - Include `docs/` into sdist tarball (thanks to kloczek in https://github.com/micktwomey/pyiso8601/issues/14) ## [0.1.15] - 2021-07-16 ### Added - Include .pyi files in built wheels and source tarballs ## [0.1.14] - 2021-02-05 ### Added - Add GitHub build actions for project - Add project URLs in setup.py (thanks to Steve Piercy) - Add Python 3.9 to test matrix (thanks to Luciano Mammino) - Add type hints (thanks to Brett Cannon) ### Changed - Update README links (thanks to Steve Piercy) - Derive `ParseError` from `ValueError` (thanks to Lex Robinson) ### Fixed - Fix handling of README in setup.py (encoding fun in 3.5, 3.6 and pypy3) - Fix README links (thanks to Chris Barker) ## [0.1.13] - 2020-09-11 ### Added - Add python 3.7 and 3.8 to tests ### Changed - Move to GitHub (https://github.com/micktwomey/pyiso8601). Thanks go to Martin Häcker for pointing out the bitbucket project had been deleted by Atlassian! ### Removed - Remove python 2.6, 3.2, 3.3 and 3.4 from tests ## [0.1.12] - 2017-07-27 ### Fixed - Fix class reference for iso8601.Utc in module docstring (thanks to felixschwarz in https://bitbucket.org/micktwomey/pyiso8601/pull-requests/7/fix-class-reference-for-iso8601utc-in/diff) ## [0.1.11] - 2015-11-03 ### Added - Add support for , as separator for fractional part (thanks to ecksun in https://bitbucket.org/micktwomey/pyiso8601/pull-requests/5/add-support-for-as-separator-for/diff) - Add Python 3.4 and 3.5 to tox test config. - Add PyPy 3 to tox test config. - Link to documentation at https://pyiso8601.readthedocs.org/ ### Removed - Remove logging (thanks to Quentin Pradet in https://bitbucket.org/micktwomey/pyiso8601/pull-requests/6/remove-debug-logging/diff) ## [0.1.10] - 2014-02-27 ### Added - Adds YYYY as a valid date (uses 1 for both month and day) - Woo, semantic versioning, .10 at last. ### Fixed - Fixes https://bitbucket.org/micktwomey/pyiso8601/issue/14/regression-yyyy-mm-no-longer-parses (thanks to Kevin Gill for reporting) ## [0.1.9] - 2014-02-26 ### Fixed - Lots of fixes tightening up parsing from jdanjou. In particular more invalid cases are treated as errors. Also includes fixes for tests (which is how these invalid cases got in in the first place). - Release addresses https://bitbucket.org/micktwomey/pyiso8601/issue/13/new-release-based-on-critical-bug-fix ## [0.1.8] - 2013-10-22 ### Fixed - Remove +/- chars from README.rst and ensure tox tests run using LC_ALL=C. The setup.py egg_info command was failing in python 3.* on some setups (basically any where the system encoding wasn't UTF-8). (https://bitbucket.org/micktwomey/pyiso8601/issue/10/setuppy-broken-for-python-33) (thanks to klmitch) ## [0.1.7] - 2013-10-19 ### Fixed - Fix parsing of microseconds (https://bitbucket.org/micktwomey/pyiso8601/issue/9/regression-parsing-microseconds) (Thanks to dims and bnemec) ## [0.1.6] - 2013-10-18 ### Fixed - Correct negative timezone offsets (https://bitbucket.org/micktwomey/pyiso8601/issue/8/015-parses-negative-timezones-incorrectly) (thanks to Jonathan Lange) ## [0.1.5] - 2013-10-17 ### Added - Add support for python 3. https://code.google.com/p/pyiso8601/issues/detail?id=23 (thanks to zefciu) ### Changed - Wow, it's alive! First update since 2007 - Moved over to https://bitbucket.org/micktwomey/pyiso8601 - Switched to py.test and tox for testing - Make seconds optional in date format ("1997-07-16T19:20+01:00" now valid). https://bitbucket.org/micktwomey/pyiso8601/pull-request/1/make-the-inclusion-of-seconds-optional-in/diff (thanks to Chris Down) - Support more variations of ISO 8601 dates, times and time zone specs. - "Z" produces default timezone if one is specified (https://bitbucket.org/micktwomey/pyiso8601/issue/5/z-produces-default-timezone-if-one-is) (thanks to vfaronov). This one may cause problems if you've been relying on default_timezone to use that timezone instead of UTC. Strictly speaking that was wrong but this is potentially backwards incompatible. - Handle compact date format (https://bitbucket.org/micktwomey/pyiso8601/issue/6/handle-compact-date-format) (thanks to rvandolson@esri.com) ### Fixed - Correctly raise ParseError for more invalid inputs (https://bitbucket.org/micktwomey/pyiso8601/issue/1/raise-parseerror-for-invalid-input) (thanks to manish.tomar) - Fix microsecond rounding issues (https://bitbucket.org/micktwomey/pyiso8601/issue/2/roundoff-issues-when-parsing-decimal) (thanks to nielsenb@jetfuse.net) - Fix pickling and deepcopy of returned datetime objects (https://bitbucket.org/micktwomey/pyiso8601/issue/3/dates-returned-by-parse_date-do-not) (thanks to fogathmann and john@openlearning.com) - Fix timezone offsets without a separator (https://bitbucket.org/micktwomey/pyiso8601/issue/4/support-offsets-without-a-separator) (thanks to joe.walton.gglcd) ## [0.1.4] - 2007-09-18 ### Fixed - The default_timezone argument wasn't being passed through correctly, UTC was being used in every case. Fixes issue 10. ## [0.1.3] - 2007-08-28 ### Fixed - Fixed the microsecond handling, the generated microsecond values were way too small. Fixes issue 9. ## [0.1.2] - 2007-07-24 ### Added - Adding ParseError to __all__ in iso8601 module, allows people to import it. Addresses issue 7. ### Changed - Allow date/time separators other than T. - Be a little more flexible when dealing with dates without leading zeroes. This violates the spec a little, but handles more dates as seen in the field. Addresses issue 6. ## [0.1.1] - 2007-03-30 ### Changed - When parsing dates without a timezone the specified default is used. If no default is specified then UTC is used. Addresses issue 4. ## [0.1.0] - 2007-01-04 ### Added - First release [Unreleased]: https://github.com/micktwomey/pyiso8601/compare/2.1.0...HEAD [2.1.0]: https://github.com/micktwomey/pyiso8601/compare/2.0.0...2.1.0 [2.0.0]: https://github.com/micktwomey/pyiso8601/compare/1.1.0...2.0.0 [1.1.0]: https://github.com/micktwomey/pyiso8601/compare/1.0.2...1.1.0 [1.0.2]: https://github.com/micktwomey/pyiso8601/compare/1.0.1...1.0.2 [1.0.1]: https://github.com/micktwomey/pyiso8601/compare/1.0.0...1.0.1 [1.0.0]: https://github.com/micktwomey/pyiso8601/compare/0.1.16...1.0.0 [0.1.16]: https://github.com/micktwomey/pyiso8601/compare/0.1.15...0.1.16 [0.1.15]: https://github.com/micktwomey/pyiso8601/compare/0.1.14...0.1.15 [0.1.14]: https://github.com/micktwomey/pyiso8601/compare/0.1.13...0.1.14 [0.1.13]: https://github.com/micktwomey/pyiso8601/compare/0.1.12...0.1.13 [0.1.12]: https://github.com/micktwomey/pyiso8601/compare/0.1.11...0.1.12 [0.1.11]: https://github.com/micktwomey/pyiso8601/compare/0.1.10...0.1.11 [0.1.10]: https://github.com/micktwomey/pyiso8601/compare/0.1.9...0.1.10 [0.1.9]: https://github.com/micktwomey/pyiso8601/compare/0.1.8...0.1.9 [0.1.8]: https://github.com/micktwomey/pyiso8601/compare/0.1.7...0.1.8 [0.1.7]: https://github.com/micktwomey/pyiso8601/compare/0.1.6...0.1.7 [0.1.6]: https://github.com/micktwomey/pyiso8601/compare/0.1.5...0.1.6 [0.1.5]: https://github.com/micktwomey/pyiso8601/compare/0.1.4...0.1.5 [0.1.4]: https://github.com/micktwomey/pyiso8601/compare/0.1.3...0.1.4 [0.1.3]: https://github.com/micktwomey/pyiso8601/compare/0.1.2...0.1.3 [0.1.2]: https://github.com/micktwomey/pyiso8601/compare/0.1.1...0.1.2 [0.1.1]: https://github.com/micktwomey/pyiso8601/compare/0.1.0...0.1.1 [0.1.0]: https://github.com/micktwomey/pyiso8601/releases/tag/0.1.0 pyiso8601-2.1.0/LICENSE000066400000000000000000000020511450665755500142210ustar00rootroot00000000000000Copyright (c) 2007 - 2022 Michael Twomey Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. pyiso8601-2.1.0/MANIFEST.in000066400000000000000000000004311450665755500147520ustar00rootroot00000000000000recursive-include iso8601 *.py recursive-include docs * include .editorconfig include .envrc include .gitignore include .pre-commit-config.yaml include .tool-versions include LICENSE include noxfile.py include poetry.lock include pyproject.toml include README.rst include setup.py pyiso8601-2.1.0/README.rst000066400000000000000000000055241450665755500147130ustar00rootroot00000000000000Simple module to parse ISO 8601 dates `pip install iso8601` Documentation: https://pyiso8601.readthedocs.org/ PyPI: https://pypi.org/project/iso8601/ Source: https://github.com/micktwomey/pyiso8601 This module parses the most common forms of ISO 8601 date strings (e.g. 2007-01-14T20:34:22+00:00) into datetime objects. >>> import iso8601 >>> iso8601.parse_date("2007-01-25T12:00:00Z") datetime.datetime(2007, 1, 25, 12, 0, tzinfo=) >>> See the LICENSE file for the license this package is released under. If you want more full featured parsing look at: - https://arrow.readthedocs.io - arrow - https://pendulum.eustace.io - pendulum - https://labix.org/python-dateutil - python-dateutil - https://docs.python.org/3/library/datetime.html#datetime.datetime.fromisoformat - Yes, Python 3 has built in parsing too! Parsed Formats ============== You can parse full date + times, or just the date. In both cases a datetime instance is returned but with missing times defaulting to 0, and missing days / months defaulting to 1. Dates ----- - YYYY-MM-DD - YYYYMMDD - YYYY-MM (defaults to 1 for the day) - YYYY (defaults to 1 for month and day) Times ----- - hh:mm:ss.nn - hhmmss.nn - hh:mm (defaults to 0 for seconds) - hhmm (defaults to 0 for seconds) - hh (defaults to 0 for minutes and seconds) Time Zones ---------- - Nothing, will use the default timezone given (which in turn defaults to UTC). - Z (UTC) - +/-hh:mm - +/-hhmm - +/-hh Where it Differs From ISO 8601 ============================== Known differences from the ISO 8601 spec: - You can use a " " (space) instead of T for separating date from time. - Days and months without a leading 0 (2 vs 02) will be parsed. - If time zone information is omitted the default time zone given is used (which in turn defaults to UTC). Use a default of None to yield naive datetime instances. References ========== - https://en.wikipedia.org/wiki/ISO_8601 - https://www.cl.cam.ac.uk/~mgk25/iso-time.html - simple overview - https://web.archive.org/web/20090309040208/http://hydracen.com/dx/iso8601.htm - more detailed enumeration of valid formats. Testing ======= 1. `poetry install` 2. `poetry run nox` Note that you need all the pythons installed to perform a tox run (see below). pyenv helps hugely, use pyenv install for the versions you need then use 'pyenv local version ...' to link them in (the tox-pyenv plugin will pick them up). Alternatively, to test only with your current python: 1. `poetry install` 2. `pytest` Releasing ========= 1. `just prepare-release` 2. `just do-release` Supported Python Versions ========================= Tested against: - Python 3.7 - Python 3.8 - Python 3.9 - Python 3.10 - Python 3.11 - Python 3.12 - PyPy 3 Python 3 versions < 3.7 are untested but should work. Changes ======= See `CHANGELOG.md `_. pyiso8601-2.1.0/devenv.lock000066400000000000000000000100051450665755500153530ustar00rootroot00000000000000{ "nodes": { "devenv": { "locked": { "dir": "src/modules", "lastModified": 1686239587, "narHash": "sha256-MpF2msSM7INvzOfT+Zs8KY4tN3IhDOhnQ7Ao5aNvEiI=", "owner": "cachix", "repo": "devenv", "rev": "9d51052c5983724a9225fa62587e0cbe51e50622", "type": "github" }, "original": { "dir": "src/modules", "owner": "cachix", "repo": "devenv", "type": "github" } }, "flake-compat": { "flake": false, "locked": { "lastModified": 1673956053, "narHash": "sha256-4gtG9iQuiKITOjNQQeQIpoIB6b16fm+504Ch3sNKLd8=", "owner": "edolstra", "repo": "flake-compat", "rev": "35bb57c0c8d8b62bbfd284272c928ceb64ddbde9", "type": "github" }, "original": { "owner": "edolstra", "repo": "flake-compat", "type": "github" } }, "flake-utils": { "inputs": { "systems": "systems" }, "locked": { "lastModified": 1685518550, "narHash": "sha256-o2d0KcvaXzTrPRIo0kOLV0/QXHhDQ5DTi+OxcjO8xqY=", "owner": "numtide", "repo": "flake-utils", "rev": "a1720a10a6cfe8234c0e93907ffe81be440f4cef", "type": "github" }, "original": { "owner": "numtide", "repo": "flake-utils", "type": "github" } }, "gitignore": { "inputs": { "nixpkgs": [ "pre-commit-hooks", "nixpkgs" ] }, "locked": { "lastModified": 1660459072, "narHash": "sha256-8DFJjXG8zqoONA1vXtgeKXy68KdJL5UaXR8NtVMUbx8=", "owner": "hercules-ci", "repo": "gitignore.nix", "rev": "a20de23b925fd8264fd7fad6454652e142fd7f73", "type": "github" }, "original": { "owner": "hercules-ci", "repo": "gitignore.nix", "type": "github" } }, "nixpkgs": { "locked": { "lastModified": 1686089707, "narHash": "sha256-LTNlJcru2qJ0XhlhG9Acp5KyjB774Pza3tRH0pKIb3o=", "owner": "NixOS", "repo": "nixpkgs", "rev": "af21c31b2a1ec5d361ed8050edd0303c31306397", "type": "github" }, "original": { "owner": "NixOS", "ref": "nixpkgs-unstable", "repo": "nixpkgs", "type": "github" } }, "nixpkgs-stable": { "locked": { "lastModified": 1685801374, "narHash": "sha256-otaSUoFEMM+LjBI1XL/xGB5ao6IwnZOXc47qhIgJe8U=", "owner": "NixOS", "repo": "nixpkgs", "rev": "c37ca420157f4abc31e26f436c1145f8951ff373", "type": "github" }, "original": { "owner": "NixOS", "ref": "nixos-23.05", "repo": "nixpkgs", "type": "github" } }, "pre-commit-hooks": { "inputs": { "flake-compat": "flake-compat", "flake-utils": "flake-utils", "gitignore": "gitignore", "nixpkgs": [ "nixpkgs" ], "nixpkgs-stable": "nixpkgs-stable" }, "locked": { "lastModified": 1686213770, "narHash": "sha256-Re6xXLEqQ/HRnThryumyGzEf3Uv0Pl4cuG50MrDofP8=", "owner": "cachix", "repo": "pre-commit-hooks.nix", "rev": "182af51202998af5b64ddecaa7ff9be06425399b", "type": "github" }, "original": { "owner": "cachix", "repo": "pre-commit-hooks.nix", "type": "github" } }, "root": { "inputs": { "devenv": "devenv", "nixpkgs": "nixpkgs", "pre-commit-hooks": "pre-commit-hooks" } }, "systems": { "locked": { "lastModified": 1681028828, "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", "owner": "nix-systems", "repo": "default", "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", "type": "github" }, "original": { "owner": "nix-systems", "repo": "default", "type": "github" } } }, "root": "root", "version": 7 } pyiso8601-2.1.0/devenv.nix000066400000000000000000000007611450665755500152310ustar00rootroot00000000000000{ pkgs, ... }: { packages = [ pkgs.git pkgs.just pkgs.python38 pkgs.python39 pkgs.python310 pkgs.python311 pkgs.python312 ]; enterShell = '' git --version # type -a python python --version poetry install ''; languages.python = { enable = true; package = pkgs.python311; poetry.enable = true; poetry.package = pkgs.poetry; venv.enable = true; }; # Note: I'm not using devenv's pre-commit support as isn't portable } pyiso8601-2.1.0/devenv.yaml000066400000000000000000000001021450665755500153620ustar00rootroot00000000000000inputs: nixpkgs: url: github:NixOS/nixpkgs/nixpkgs-unstable pyiso8601-2.1.0/docs/000077500000000000000000000000001450665755500141465ustar00rootroot00000000000000pyiso8601-2.1.0/docs/.gitignore000066400000000000000000000000071450665755500161330ustar00rootroot00000000000000_build pyiso8601-2.1.0/docs/Makefile000066400000000000000000000151661450665755500156170ustar00rootroot00000000000000# Makefile for Sphinx documentation # # You can set these variables from the command line. SPHINXOPTS = SPHINXBUILD = sphinx-build PAPER = BUILDDIR = _build # User-friendly check for sphinx-build ifeq ($(shell which $(SPHINXBUILD) >/dev/null 2>&1; echo $$?), 1) $(error The '$(SPHINXBUILD)' command was not found. Make sure you have Sphinx installed, then set the SPHINXBUILD environment variable to point to the full path of the '$(SPHINXBUILD)' executable. Alternatively you can add the directory with the executable to your PATH. If you don't have Sphinx installed, grab it from http://sphinx-doc.org/) endif # Internal variables. PAPEROPT_a4 = -D latex_paper_size=a4 PAPEROPT_letter = -D latex_paper_size=letter ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) . # the i18n builder cannot share the environment and doctrees with the others I18NSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) . .PHONY: help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest gettext help: @echo "Please use \`make ' where is one of" @echo " html to make standalone HTML files" @echo " dirhtml to make HTML files named index.html in directories" @echo " singlehtml to make a single large HTML file" @echo " pickle to make pickle files" @echo " json to make JSON files" @echo " htmlhelp to make HTML files and a HTML help project" @echo " qthelp to make HTML files and a qthelp project" @echo " devhelp to make HTML files and a Devhelp project" @echo " epub to make an epub" @echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter" @echo " latexpdf to make LaTeX files and run them through pdflatex" @echo " latexpdfja to make LaTeX files and run them through platex/dvipdfmx" @echo " text to make text files" @echo " man to make manual pages" @echo " texinfo to make Texinfo files" @echo " info to make Texinfo files and run them through makeinfo" @echo " gettext to make PO message catalogs" @echo " changes to make an overview of all changed/added/deprecated items" @echo " xml to make Docutils-native XML files" @echo " pseudoxml to make pseudoxml-XML files for display purposes" @echo " linkcheck to check all external links for integrity" @echo " doctest to run all doctests embedded in the documentation (if enabled)" clean: rm -rf $(BUILDDIR)/* html: $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html @echo @echo "Build finished. The HTML pages are in $(BUILDDIR)/html." dirhtml: $(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) $(BUILDDIR)/dirhtml @echo @echo "Build finished. The HTML pages are in $(BUILDDIR)/dirhtml." singlehtml: $(SPHINXBUILD) -b singlehtml $(ALLSPHINXOPTS) $(BUILDDIR)/singlehtml @echo @echo "Build finished. The HTML page is in $(BUILDDIR)/singlehtml." pickle: $(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) $(BUILDDIR)/pickle @echo @echo "Build finished; now you can process the pickle files." json: $(SPHINXBUILD) -b json $(ALLSPHINXOPTS) $(BUILDDIR)/json @echo @echo "Build finished; now you can process the JSON files." htmlhelp: $(SPHINXBUILD) -b htmlhelp $(ALLSPHINXOPTS) $(BUILDDIR)/htmlhelp @echo @echo "Build finished; now you can run HTML Help Workshop with the" \ ".hhp project file in $(BUILDDIR)/htmlhelp." qthelp: $(SPHINXBUILD) -b qthelp $(ALLSPHINXOPTS) $(BUILDDIR)/qthelp @echo @echo "Build finished; now you can run "qcollectiongenerator" with the" \ ".qhcp project file in $(BUILDDIR)/qthelp, like this:" @echo "# qcollectiongenerator $(BUILDDIR)/qthelp/pyiso8601.qhcp" @echo "To view the help file:" @echo "# assistant -collectionFile $(BUILDDIR)/qthelp/pyiso8601.qhc" devhelp: $(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp @echo @echo "Build finished." @echo "To view the help file:" @echo "# mkdir -p $$HOME/.local/share/devhelp/pyiso8601" @echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/pyiso8601" @echo "# devhelp" epub: $(SPHINXBUILD) -b epub $(ALLSPHINXOPTS) $(BUILDDIR)/epub @echo @echo "Build finished. The epub file is in $(BUILDDIR)/epub." latex: $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex @echo @echo "Build finished; the LaTeX files are in $(BUILDDIR)/latex." @echo "Run \`make' in that directory to run these through (pdf)latex" \ "(use \`make latexpdf' here to do that automatically)." latexpdf: $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex @echo "Running LaTeX files through pdflatex..." $(MAKE) -C $(BUILDDIR)/latex all-pdf @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex." latexpdfja: $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex @echo "Running LaTeX files through platex and dvipdfmx..." $(MAKE) -C $(BUILDDIR)/latex all-pdf-ja @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex." text: $(SPHINXBUILD) -b text $(ALLSPHINXOPTS) $(BUILDDIR)/text @echo @echo "Build finished. The text files are in $(BUILDDIR)/text." man: $(SPHINXBUILD) -b man $(ALLSPHINXOPTS) $(BUILDDIR)/man @echo @echo "Build finished. The manual pages are in $(BUILDDIR)/man." texinfo: $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo @echo @echo "Build finished. The Texinfo files are in $(BUILDDIR)/texinfo." @echo "Run \`make' in that directory to run these through makeinfo" \ "(use \`make info' here to do that automatically)." info: $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo @echo "Running Texinfo files through makeinfo..." make -C $(BUILDDIR)/texinfo info @echo "makeinfo finished; the Info files are in $(BUILDDIR)/texinfo." gettext: $(SPHINXBUILD) -b gettext $(I18NSPHINXOPTS) $(BUILDDIR)/locale @echo @echo "Build finished. The message catalogs are in $(BUILDDIR)/locale." changes: $(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes @echo @echo "The overview file is in $(BUILDDIR)/changes." linkcheck: $(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) $(BUILDDIR)/linkcheck @echo @echo "Link check complete; look for any errors in the above output " \ "or in $(BUILDDIR)/linkcheck/output.txt." doctest: $(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) $(BUILDDIR)/doctest @echo "Testing of doctests in the sources finished, look at the " \ "results in $(BUILDDIR)/doctest/output.txt." xml: $(SPHINXBUILD) -b xml $(ALLSPHINXOPTS) $(BUILDDIR)/xml @echo @echo "Build finished. The XML files are in $(BUILDDIR)/xml." pseudoxml: $(SPHINXBUILD) -b pseudoxml $(ALLSPHINXOPTS) $(BUILDDIR)/pseudoxml @echo @echo "Build finished. The pseudo-XML files are in $(BUILDDIR)/pseudoxml." pyiso8601-2.1.0/docs/conf.py000066400000000000000000000204511450665755500154470ustar00rootroot00000000000000#!/usr/bin/env python3 # -*- coding: utf-8 -*- # # pyiso8601 documentation build configuration file, created by # sphinx-quickstart on Thu Feb 27 16:05:52 2014. # # This file is execfile()d with the current directory set to its # containing dir. # # Note that not all possible configuration values are present in this # autogenerated file. # # All configuration values have a default; values that are commented out # serve to show the default. import os # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the # documentation root, use os.path.abspath to make it absolute, like shown here. # sys.path.insert(0, os.path.abspath('.')) # -- General configuration ------------------------------------------------ # If your documentation needs a minimal Sphinx version, state it here. # needs_sphinx = '1.0' # Add any Sphinx extension module names here, as strings. They can be # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # ones. extensions = [ "sphinx.ext.autodoc", "sphinx.ext.doctest", "sphinx.ext.viewcode", ] # doctest configuration doctest_path = [os.path.abspath(os.path.join(os.path.dirname(__file__), ".."))] # Add any paths that contain templates here, relative to this directory. templates_path = ["_templates"] # The suffix of source filenames. source_suffix = ".rst" # The encoding of source files. # source_encoding = 'utf-8-sig' # The master toctree document. master_doc = "index" # General information about the project. project = "pyiso8601" copyright = "2014, Michael Twomey" # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the # built documents. # # The short X.Y version. version = "0.1.10" # The full version, including alpha/beta/rc tags. release = "0.1.10" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. # language = None # There are two options for replacing |today|: either, you set today to some # non-false value, then it is used: # today = '' # Else, today_fmt is used as the format for a strftime call. # today_fmt = '%B %d, %Y' # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. exclude_patterns = ["_build"] # The reST default role (used for this markup: `text`) to use for all # documents. # default_role = None # If true, '()' will be appended to :func: etc. cross-reference text. # add_function_parentheses = True # If true, the current module name will be prepended to all description # unit titles (such as .. function::). # add_module_names = True # If true, sectionauthor and moduleauthor directives will be shown in the # output. They are ignored by default. # show_authors = False # The name of the Pygments (syntax highlighting) style to use. pygments_style = "sphinx" # A list of ignored prefixes for module index sorting. # modindex_common_prefix = [] # If true, keep warnings as "system message" paragraphs in the built documents. # keep_warnings = False # -- Options for HTML output ---------------------------------------------- # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. html_theme = "default" # Theme options are theme-specific and customize the look and feel of a theme # further. For a list of options available for each theme, see the # documentation. # html_theme_options = {} # Add any paths that contain custom themes here, relative to this directory. # html_theme_path = [] # The name for this set of Sphinx documents. If None, it defaults to # " v documentation". # html_title = None # A shorter title for the navigation bar. Default is the same as html_title. # html_short_title = None # The name of an image file (relative to this directory) to place at the top # of the sidebar. # html_logo = None # The name of an image file (within the static path) to use as favicon of the # docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32 # pixels large. # html_favicon = None # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". html_static_path = ["_static"] # Add any extra paths that contain custom files (such as robots.txt or # .htaccess) here, relative to this directory. These files are copied # directly to the root of the documentation. # html_extra_path = [] # If not '', a 'Last updated on:' timestamp is inserted at every page bottom, # using the given strftime format. # html_last_updated_fmt = '%b %d, %Y' # If true, SmartyPants will be used to convert quotes and dashes to # typographically correct entities. # html_use_smartypants = True # Custom sidebar templates, maps document names to template names. # html_sidebars = {} # Additional templates that should be rendered to pages, maps page names to # template names. # html_additional_pages = {} # If false, no module index is generated. # html_domain_indices = True # If false, no index is generated. # html_use_index = True # If true, the index is split into individual pages for each letter. # html_split_index = False # If true, links to the reST sources are added to the pages. # html_show_sourcelink = True # If true, "Created using Sphinx" is shown in the HTML footer. Default is True. # html_show_sphinx = True # If true, "(C) Copyright ..." is shown in the HTML footer. Default is True. # html_show_copyright = True # If true, an OpenSearch description file will be output, and all pages will # contain a tag referring to it. The value of this option must be the # base URL from which the finished HTML is served. # html_use_opensearch = '' # This is the file name suffix for HTML files (e.g. ".xhtml"). # html_file_suffix = None # Output file base name for HTML help builder. htmlhelp_basename = "pyiso8601doc" # -- Options for LaTeX output --------------------------------------------- latex_elements = { # type: ignore # The paper size ('letterpaper' or 'a4paper'). #'papersize': 'letterpaper', # The font size ('10pt', '11pt' or '12pt'). #'pointsize': '10pt', # Additional stuff for the LaTeX preamble. #'preamble': '', } # Grouping the document tree into LaTeX files. List of tuples # (source start file, target name, title, # author, documentclass [howto, manual, or own class]). latex_documents = [ ("index", "pyiso8601.tex", "pyiso8601 Documentation", "Michael Twomey", "manual"), ] # The name of an image file (relative to this directory) to place at the top of # the title page. # latex_logo = None # For "manual" documents, if this is true, then toplevel headings are parts, # not chapters. # latex_use_parts = False # If true, show page references after internal links. # latex_show_pagerefs = False # If true, show URL addresses after external links. # latex_show_urls = False # Documents to append as an appendix to all manuals. # latex_appendices = [] # If false, no module index is generated. # latex_domain_indices = True # -- Options for manual page output --------------------------------------- # One entry per manual page. List of tuples # (source start file, name, description, authors, manual section). man_pages = [("index", "pyiso8601", "pyiso8601 Documentation", ["Michael Twomey"], 1)] # If true, show URL addresses after external links. # man_show_urls = False # -- Options for Texinfo output ------------------------------------------- # Grouping the document tree into Texinfo files. List of tuples # (source start file, target name, title, author, # dir menu entry, description, category) texinfo_documents = [ ( "index", "pyiso8601", "pyiso8601 Documentation", "Michael Twomey", "pyiso8601", "One line description of project.", "Miscellaneous", ), ] # Documents to append as an appendix to all manuals. # texinfo_appendices = [] # If false, no module index is generated. # texinfo_domain_indices = True # How to display URL addresses: 'footnote', 'no', or 'inline'. # texinfo_show_urls = 'footnote' # If true, do not generate a @detailmenu in the "Top" node's menu. # texinfo_no_detailmenu = False pyiso8601-2.1.0/docs/example.py000066400000000000000000000002371450665755500161550ustar00rootroot00000000000000import datetime import iso8601 d = iso8601.parse_date("2007-01-25T12:00:00Z") print(d) assert d == datetime.datetime(2007, 1, 25, 12, 0, tzinfo=iso8601.UTC) pyiso8601-2.1.0/docs/index.rst000066400000000000000000000044571450665755500160210ustar00rootroot00000000000000pyiso8601: ISO 8601 Parsing for Python ====================================== Documentation: https://pyiso8601.readthedocs.org/ PyPI: https://pypi.org/project/iso8601/ Source: https://github.com/micktwomey/pyiso8601 This module parses the most common forms of ISO 8601 date strings (e.g. 2007-01-14T20:34:22+00:00) into datetime objects. >>> import iso8601 >>> iso8601.parse_date("2007-01-25T12:00:00Z") datetime.datetime(2007, 1, 25, 12, 0, tzinfo=) >>> See the LICENSE file for the license this package is released under. If you want more full featured parsing look at: - https://arrow.readthedocs.io - arrow - https://pendulum.eustace.io - pendulum - https://labix.org/python-dateutil - python-dateutil - https://docs.python.org/3/library/datetime.html#datetime.datetime.fromisoformat - Yes, Python 3 has built in parsing too! Parsed Formats ============== You can parse full date + times, or just the date. In both cases a datetime instance is returned but with missing times defaulting to 0, and missing days / months defaulting to 1. Dates ----- - YYYY-MM-DD - YYYYMMDD - YYYY-MM (defaults to 1 for the day) - YYYY (defaults to 1 for month and day) Times ----- - hh:mm:ss.nn - hhmmss.nn - hh:mm (defaults to 0 for seconds) - hhmm (defaults to 0 for seconds) - hh (defaults to 0 for minutes and seconds) Time Zones ---------- - Nothing, will use the default timezone given (which in turn defaults to UTC). - Z (UTC) - +/-hh:mm - +/-hhmm - +/-hh Where it Differs From ISO 8601 ============================== Known differences from the ISO 8601 spec: - You can use a " " (space) instead of T for separating date from time. - Days and months without a leading 0 (2 vs 02) will be parsed. - If time zone information is omitted the default time zone given is used (which in turn defaults to UTC). Use a default of None to yield naive datetime instances. References ========== - https://en.wikipedia.org/wiki/ISO_8601 - https://www.cl.cam.ac.uk/~mgk25/iso-time.html - simple overview - https://web.archive.org/web/20090309040208/http://hydracen.com/dx/iso8601.htm - more detailed enumeration of valid formats. Installation ============ To install simply use pip:: pip install iso8601 API === .. autofunction:: iso8601.is_iso8601 .. autofunction:: iso8601.parse_date .. autoexception:: iso8601.ParseError pyiso8601-2.1.0/docs/make.bat000066400000000000000000000150631450665755500155600ustar00rootroot00000000000000@ECHO OFF REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set BUILDDIR=_build set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% . set I18NSPHINXOPTS=%SPHINXOPTS% . if NOT "%PAPER%" == "" ( set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% ) if "%1" == "" goto help if "%1" == "help" ( :help echo.Please use `make ^` where ^ is one of echo. html to make standalone HTML files echo. dirhtml to make HTML files named index.html in directories echo. singlehtml to make a single large HTML file echo. pickle to make pickle files echo. json to make JSON files echo. htmlhelp to make HTML files and a HTML help project echo. qthelp to make HTML files and a qthelp project echo. devhelp to make HTML files and a Devhelp project echo. epub to make an epub echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter echo. text to make text files echo. man to make manual pages echo. texinfo to make Texinfo files echo. gettext to make PO message catalogs echo. changes to make an overview over all changed/added/deprecated items echo. xml to make Docutils-native XML files echo. pseudoxml to make pseudoxml-XML files for display purposes echo. linkcheck to check all external links for integrity echo. doctest to run all doctests embedded in the documentation if enabled goto end ) if "%1" == "clean" ( for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i del /q /s %BUILDDIR%\* goto end ) %SPHINXBUILD% 2> nul if errorlevel 9009 ( echo. echo.The 'sphinx-build' command was not found. Make sure you have Sphinx echo.installed, then set the SPHINXBUILD environment variable to point echo.to the full path of the 'sphinx-build' executable. Alternatively you echo.may add the Sphinx directory to PATH. echo. echo.If you don't have Sphinx installed, grab it from echo.http://sphinx-doc.org/ exit /b 1 ) if "%1" == "html" ( %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/html. goto end ) if "%1" == "dirhtml" ( %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. goto end ) if "%1" == "singlehtml" ( %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. goto end ) if "%1" == "pickle" ( %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the pickle files. goto end ) if "%1" == "json" ( %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the JSON files. goto end ) if "%1" == "htmlhelp" ( %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run HTML Help Workshop with the ^ .hhp project file in %BUILDDIR%/htmlhelp. goto end ) if "%1" == "qthelp" ( %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run "qcollectiongenerator" with the ^ .qhcp project file in %BUILDDIR%/qthelp, like this: echo.^> qcollectiongenerator %BUILDDIR%\qthelp\pyiso8601.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\pyiso8601.ghc goto end ) if "%1" == "devhelp" ( %SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp if errorlevel 1 exit /b 1 echo. echo.Build finished. goto end ) if "%1" == "epub" ( %SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub if errorlevel 1 exit /b 1 echo. echo.Build finished. The epub file is in %BUILDDIR%/epub. goto end ) if "%1" == "latex" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex if errorlevel 1 exit /b 1 echo. echo.Build finished; the LaTeX files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdf" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf cd %BUILDDIR%/.. echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdfja" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf-ja cd %BUILDDIR%/.. echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "text" ( %SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text if errorlevel 1 exit /b 1 echo. echo.Build finished. The text files are in %BUILDDIR%/text. goto end ) if "%1" == "man" ( %SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man if errorlevel 1 exit /b 1 echo. echo.Build finished. The manual pages are in %BUILDDIR%/man. goto end ) if "%1" == "texinfo" ( %SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo if errorlevel 1 exit /b 1 echo. echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo. goto end ) if "%1" == "gettext" ( %SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale if errorlevel 1 exit /b 1 echo. echo.Build finished. The message catalogs are in %BUILDDIR%/locale. goto end ) if "%1" == "changes" ( %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes if errorlevel 1 exit /b 1 echo. echo.The overview file is in %BUILDDIR%/changes. goto end ) if "%1" == "linkcheck" ( %SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck if errorlevel 1 exit /b 1 echo. echo.Link check complete; look for any errors in the above output ^ or in %BUILDDIR%/linkcheck/output.txt. goto end ) if "%1" == "doctest" ( %SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest if errorlevel 1 exit /b 1 echo. echo.Testing of doctests in the sources finished, look at the ^ results in %BUILDDIR%/doctest/output.txt. goto end ) if "%1" == "xml" ( %SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml if errorlevel 1 exit /b 1 echo. echo.Build finished. The XML files are in %BUILDDIR%/xml. goto end ) if "%1" == "pseudoxml" ( %SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml if errorlevel 1 exit /b 1 echo. echo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml. goto end ) :end pyiso8601-2.1.0/docs/requirements.txt000066400000000000000000000000201450665755500174220ustar00rootroot00000000000000Sphinx>=1.2.1 . pyiso8601-2.1.0/iso8601/000077500000000000000000000000001450665755500143275ustar00rootroot00000000000000pyiso8601-2.1.0/iso8601/__init__.py000066400000000000000000000002261450665755500164400ustar00rootroot00000000000000from .iso8601 import UTC, FixedOffset, ParseError, is_iso8601, parse_date __all__ = ["parse_date", "is_iso8601", "ParseError", "UTC", "FixedOffset"] pyiso8601-2.1.0/iso8601/iso8601.py000066400000000000000000000116001450665755500160100ustar00rootroot00000000000000"""ISO 8601 date time string parsing Basic usage: >>> import iso8601 >>> iso8601.parse_date("2007-01-25T12:00:00Z") datetime.datetime(2007, 1, 25, 12, 0, tzinfo=) >>> """ import datetime import re import typing from decimal import Decimal __all__ = ["parse_date", "ParseError", "UTC", "FixedOffset"] # Adapted from http://delete.me.uk/2005/03/iso8601.html ISO8601_REGEX = re.compile( r""" (?P[0-9]{4}) ( ( (-(?P[0-9]{1,2})) | (?P[0-9]{2}) (?!$) # Don't allow YYYYMM ) ( ( (-(?P[0-9]{1,2})) | (?P[0-9]{2}) ) ( ( (?P[ T]) (?P[0-9]{2}) (:{0,1}(?P[0-9]{2})){0,1} ( :{0,1}(?P[0-9]{1,2}) ([.,](?P[0-9]+)){0,1} ){0,1} (?P Z | ( (?P[-+]) (?P[0-9]{2}) :{0,1} (?P[0-9]{2}){0,1} ) ){0,1} ){0,1} ) ){0,1} # YYYY-MM ){0,1} # YYYY only $ """, re.VERBOSE, ) class ParseError(ValueError): """Raised when there is a problem parsing a date string""" UTC = datetime.timezone.utc def FixedOffset( offset_hours: float, offset_minutes: float, name: str ) -> datetime.timezone: return datetime.timezone( datetime.timedelta(hours=offset_hours, minutes=offset_minutes), name ) def parse_timezone( matches: typing.Dict[str, str], default_timezone: typing.Optional[datetime.timezone] = UTC, ) -> typing.Optional[datetime.timezone]: """Parses ISO 8601 time zone specs into tzinfo offsets""" tz = matches.get("timezone", None) if tz == "Z": return UTC # This isn't strictly correct, but it's common to encounter dates without # timezones so I'll assume the default (which defaults to UTC). # Addresses issue 4. if tz is None: return default_timezone sign = matches.get("tz_sign", None) hours = int(matches.get("tz_hour", 0)) minutes = int(matches.get("tz_minute", 0)) description = f"{sign}{hours:02d}:{minutes:02d}" if sign == "-": hours = -hours minutes = -minutes return FixedOffset(hours, minutes, description) def parse_date( datestring: str, default_timezone: typing.Optional[datetime.timezone] = UTC ) -> datetime.datetime: """Parses ISO 8601 dates into datetime objects The timezone is parsed from the date string. However it is quite common to have dates without a timezone (not strictly correct). In this case the default timezone specified in default_timezone is used. This is UTC by default. :param datestring: The date to parse as a string :param default_timezone: A datetime tzinfo instance to use when no timezone is specified in the datestring. If this is set to None then a naive datetime object is returned. :returns: A datetime.datetime instance :raises: ParseError when there is a problem parsing the date or constructing the datetime instance. """ try: m = ISO8601_REGEX.match(datestring) except Exception as e: raise ParseError(e) if not m: raise ParseError(f"Unable to parse date string {datestring!r}") # Drop any Nones from the regex matches # TODO: check if there's a way to omit results in regexes groups: typing.Dict[str, str] = { k: v for k, v in m.groupdict().items() if v is not None } try: return datetime.datetime( year=int(groups.get("year", 0)), month=int(groups.get("month", groups.get("monthdash", 1))), day=int(groups.get("day", groups.get("daydash", 1))), hour=int(groups.get("hour", 0)), minute=int(groups.get("minute", 0)), second=int(groups.get("second", 0)), microsecond=int( Decimal(f"0.{groups.get('second_fraction', 0)}") * Decimal("1000000.0") ), tzinfo=parse_timezone(groups, default_timezone=default_timezone), ) except Exception as e: raise ParseError(e) def is_iso8601(datestring: str) -> bool: """Check if a string matches an ISO 8601 format. :param datestring: The string to check for validity :returns: True if the string matches an ISO 8601 format, False otherwise """ try: m = ISO8601_REGEX.match(datestring) return bool(m) except Exception as e: raise ParseError(e) pyiso8601-2.1.0/iso8601/py.typed000066400000000000000000000000001450665755500160140ustar00rootroot00000000000000pyiso8601-2.1.0/iso8601/test_iso8601.py000066400000000000000000000245601450665755500170600ustar00rootroot00000000000000# coding=UTF-8 from __future__ import absolute_import import copy import datetime import pickle import hypothesis import hypothesis.extra.pytz import hypothesis.strategies import pytest from . import iso8601 def test_iso8601_regex() -> None: assert iso8601.ISO8601_REGEX.match("2006-10-11T00:14:33Z") def test_fixedoffset_eq() -> None: # See https://bitbucket.org/micktwomey/pyiso8601/issues/19 expected_timezone = datetime.timezone(offset=datetime.timedelta(hours=2)) assert expected_timezone == iso8601.FixedOffset(2, 0, "+2:00") def test_parse_no_timezone_different_default() -> None: tz = iso8601.FixedOffset(2, 0, "test offset") d = iso8601.parse_date("2007-01-01T08:00:00", default_timezone=tz) assert d == datetime.datetime(2007, 1, 1, 8, 0, 0, 0, tz) assert d.tzinfo == tz def test_parse_utc_different_default() -> None: """Z should mean 'UTC', not 'default'.""" tz = iso8601.FixedOffset(2, 0, "test offset") d = iso8601.parse_date("2007-01-01T08:00:00Z", default_timezone=tz) assert d == datetime.datetime(2007, 1, 1, 8, 0, 0, 0, iso8601.UTC) @pytest.mark.parametrize( "invalid_date, error_string", [ ("2013-10-", "Unable to parse date string"), ("2013-", "Unable to parse date string"), ("", "Unable to parse date string"), ("wibble", "Unable to parse date string"), ("23", "Unable to parse date string"), ("131015T142533Z", "Unable to parse date string"), ("131015", "Unable to parse date string"), ("20141", "Unable to parse date string"), ("201402", "Unable to parse date string"), ( "2007-06-23X06:40:34.00Z", "Unable to parse date string", ), # https://code.google.com/p/pyiso8601/issues/detail?id=14 ( "2007-06-23 06:40:34.00Zrubbish", "Unable to parse date string", ), # https://code.google.com/p/pyiso8601/issues/detail?id=14 ("20114-01-03T01:45:49", "Unable to parse date string"), ], ) def test_parse_invalid_date(invalid_date: str, error_string: str) -> None: assert iso8601.is_iso8601(invalid_date) is False with pytest.raises(iso8601.ParseError) as exc: iso8601.parse_date(invalid_date) assert exc.errisinstance(iso8601.ParseError) assert str(exc.value).startswith(error_string) @pytest.mark.parametrize( "valid_date,expected_datetime,isoformat", [ ( "2007-06-23 06:40:34.00Z", datetime.datetime(2007, 6, 23, 6, 40, 34, 0, iso8601.UTC), "2007-06-23T06:40:34+00:00", ), # Handle a separator other than T ( "1997-07-16T19:20+01:00", datetime.datetime( 1997, 7, 16, 19, 20, 0, 0, iso8601.FixedOffset(1, 0, "+01:00") ), "1997-07-16T19:20:00+01:00", ), # Parse with no seconds ( "2007-01-01T08:00:00", datetime.datetime(2007, 1, 1, 8, 0, 0, 0, iso8601.UTC), "2007-01-01T08:00:00+00:00", ), # Handle timezone-less dates. Assumes UTC. http://code.google.com/p/pyiso8601/issues/detail?id=4 ( "2006-10-20T15:34:56.123+02:30", datetime.datetime( 2006, 10, 20, 15, 34, 56, 123000, iso8601.FixedOffset(2, 30, "+02:30") ), None, ), ( "2006-10-20T15:34:56Z", datetime.datetime(2006, 10, 20, 15, 34, 56, 0, iso8601.UTC), "2006-10-20T15:34:56+00:00", ), ( "2007-5-7T11:43:55.328Z", datetime.datetime(2007, 5, 7, 11, 43, 55, 328000, iso8601.UTC), "2007-05-07T11:43:55.328000+00:00", ), # http://code.google.com/p/pyiso8601/issues/detail?id=6 ( "2006-10-20T15:34:56.123Z", datetime.datetime(2006, 10, 20, 15, 34, 56, 123000, iso8601.UTC), "2006-10-20T15:34:56.123000+00:00", ), ( "2013-10-15T18:30Z", datetime.datetime(2013, 10, 15, 18, 30, 0, 0, iso8601.UTC), "2013-10-15T18:30:00+00:00", ), ( "2013-10-15T22:30+04", datetime.datetime( 2013, 10, 15, 22, 30, 0, 0, iso8601.FixedOffset(4, 0, "+04:00") ), "2013-10-15T22:30:00+04:00", ), #