├── .github ├── FUNDING.yml └── workflows │ └── main.yml ├── .gitignore ├── LICENSE ├── README.md ├── about_time ├── __init__.py ├── core.py ├── features.py ├── human_count.py ├── human_duration.py ├── human_throughput.py └── py.typed ├── justfile ├── noxfile.py ├── pyproject.toml ├── requirements ├── dev.txt └── test.txt ├── setup.py └── tests ├── test_core.py ├── test_human_count.py ├── test_human_duration.py └── test_human_throughput.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsalmei/about-time/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsalmei/about-time/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsalmei/about-time/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsalmei/about-time/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsalmei/about-time/HEAD/README.md -------------------------------------------------------------------------------- /about_time/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsalmei/about-time/HEAD/about_time/__init__.py -------------------------------------------------------------------------------- /about_time/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsalmei/about-time/HEAD/about_time/core.py -------------------------------------------------------------------------------- /about_time/features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsalmei/about-time/HEAD/about_time/features.py -------------------------------------------------------------------------------- /about_time/human_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsalmei/about-time/HEAD/about_time/human_count.py -------------------------------------------------------------------------------- /about_time/human_duration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsalmei/about-time/HEAD/about_time/human_duration.py -------------------------------------------------------------------------------- /about_time/human_throughput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsalmei/about-time/HEAD/about_time/human_throughput.py -------------------------------------------------------------------------------- /about_time/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsalmei/about-time/HEAD/justfile -------------------------------------------------------------------------------- /noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsalmei/about-time/HEAD/noxfile.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsalmei/about-time/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements/dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsalmei/about-time/HEAD/requirements/dev.txt -------------------------------------------------------------------------------- /requirements/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsalmei/about-time/HEAD/requirements/test.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsalmei/about-time/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsalmei/about-time/HEAD/tests/test_core.py -------------------------------------------------------------------------------- /tests/test_human_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsalmei/about-time/HEAD/tests/test_human_count.py -------------------------------------------------------------------------------- /tests/test_human_duration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsalmei/about-time/HEAD/tests/test_human_duration.py -------------------------------------------------------------------------------- /tests/test_human_throughput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsalmei/about-time/HEAD/tests/test_human_throughput.py --------------------------------------------------------------------------------