├── .github └── workflows │ ├── publish.yaml │ └── tests.yaml ├── .gitignore ├── .readthedocs.yml ├── AGENTS.md ├── CONTRIBUTORS.md ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── docs ├── basic_functionality.md ├── index.md ├── reference │ ├── cache.md │ ├── client.md │ ├── dates.md │ └── fetcher.md └── whats_new.md ├── mkdocs.yml ├── pyproject.toml ├── tests ├── test_client.py ├── test_dates.py └── test_fetcher.py ├── uv.lock └── wbdata ├── __init__.py ├── cache.py ├── client.py ├── dates.py ├── fetcher.py ├── py.typed └── version.py /.github/workflows/publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverSherouse/wbdata/HEAD/.github/workflows/publish.yaml -------------------------------------------------------------------------------- /.github/workflows/tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverSherouse/wbdata/HEAD/.github/workflows/tests.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverSherouse/wbdata/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverSherouse/wbdata/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverSherouse/wbdata/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverSherouse/wbdata/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverSherouse/wbdata/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverSherouse/wbdata/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverSherouse/wbdata/HEAD/README.md -------------------------------------------------------------------------------- /docs/basic_functionality.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverSherouse/wbdata/HEAD/docs/basic_functionality.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverSherouse/wbdata/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/reference/cache.md: -------------------------------------------------------------------------------- 1 | # Cache Module 2 | ::: wbdata.cache 3 | -------------------------------------------------------------------------------- /docs/reference/client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverSherouse/wbdata/HEAD/docs/reference/client.md -------------------------------------------------------------------------------- /docs/reference/dates.md: -------------------------------------------------------------------------------- 1 | # Dates module 2 | 3 | ::: wbdata.dates 4 | -------------------------------------------------------------------------------- /docs/reference/fetcher.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverSherouse/wbdata/HEAD/docs/reference/fetcher.md -------------------------------------------------------------------------------- /docs/whats_new.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverSherouse/wbdata/HEAD/docs/whats_new.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverSherouse/wbdata/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverSherouse/wbdata/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverSherouse/wbdata/HEAD/tests/test_client.py -------------------------------------------------------------------------------- /tests/test_dates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverSherouse/wbdata/HEAD/tests/test_dates.py -------------------------------------------------------------------------------- /tests/test_fetcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverSherouse/wbdata/HEAD/tests/test_fetcher.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverSherouse/wbdata/HEAD/uv.lock -------------------------------------------------------------------------------- /wbdata/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverSherouse/wbdata/HEAD/wbdata/__init__.py -------------------------------------------------------------------------------- /wbdata/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverSherouse/wbdata/HEAD/wbdata/cache.py -------------------------------------------------------------------------------- /wbdata/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverSherouse/wbdata/HEAD/wbdata/client.py -------------------------------------------------------------------------------- /wbdata/dates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverSherouse/wbdata/HEAD/wbdata/dates.py -------------------------------------------------------------------------------- /wbdata/fetcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverSherouse/wbdata/HEAD/wbdata/fetcher.py -------------------------------------------------------------------------------- /wbdata/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wbdata/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "1.1.0" 2 | --------------------------------------------------------------------------------