gitextract_jsvx0o33/ ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ ├── documentation.md │ │ └── feature_request.md │ ├── dependabot.yml │ ├── pull_request_template.md │ └── workflows/ │ ├── continuous_integration.yml │ └── release.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── CHANGELOG.rst ├── LICENSE ├── Makefile ├── README.rst ├── arrow/ │ ├── __init__.py │ ├── _version.py │ ├── api.py │ ├── arrow.py │ ├── constants.py │ ├── factory.py │ ├── formatter.py │ ├── locales.py │ ├── parser.py │ ├── py.typed │ └── util.py ├── docs/ │ ├── Makefile │ ├── api-guide.rst │ ├── conf.py │ ├── getting-started.rst │ ├── guide.rst │ ├── index.rst │ ├── make.bat │ └── releases.rst ├── pyproject.toml ├── requirements/ │ ├── requirements-docs.txt │ ├── requirements-tests.txt │ └── requirements.txt ├── setup.cfg ├── tests/ │ ├── __init__.py │ ├── conftest.py │ ├── test_api.py │ ├── test_arrow.py │ ├── test_factory.py │ ├── test_formatter.py │ ├── test_locales.py │ ├── test_parser.py │ ├── test_util.py │ └── utils.py └── tox.ini