├── .coveragerc ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .vscode └── settings.json ├── LICENSE.md ├── README.md ├── bin └── create_document_soort_enum.py ├── doc └── release.md ├── examples ├── fracties_example.py ├── geschenken_fractieleden_example.py ├── kamerleden_example.py ├── kamerleden_nevenfuncties_example.py ├── kamervragen_example.py ├── reizen_fractieleden_example.py └── stemming_example.py ├── pyproject.toml ├── requirements.txt ├── setup.py ├── tests ├── __init__.py ├── core.py ├── test_activiteit.py ├── test_agendapunt.py ├── test_api.py ├── test_besluit.py ├── test_commissie.py ├── test_document.py ├── test_dossier.py ├── test_filter.py ├── test_fractie.py ├── test_kamervraag.py ├── test_metadata.py ├── test_order.py ├── test_persoon.py ├── test_stemming.py ├── test_util.py ├── test_vergadering.py ├── test_verslag.py └── test_zaak.py └── tkapi ├── __init__.py ├── activiteit.py ├── agendapunt.py ├── besluit.py ├── commissie.py ├── core.py ├── document.py ├── dossier.py ├── filter.py ├── fractie.py ├── info.py ├── kamervraag.py ├── order.py ├── persoon.py ├── stemming.py ├── tkapi.py ├── util ├── __init__.py ├── document.py ├── queries.py └── util.py ├── vergadering.py ├── verslag.py └── zaak.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openkamer/tkapi/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openkamer/tkapi/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openkamer/tkapi/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openkamer/tkapi/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openkamer/tkapi/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openkamer/tkapi/HEAD/README.md -------------------------------------------------------------------------------- /bin/create_document_soort_enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openkamer/tkapi/HEAD/bin/create_document_soort_enum.py -------------------------------------------------------------------------------- /doc/release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openkamer/tkapi/HEAD/doc/release.md -------------------------------------------------------------------------------- /examples/fracties_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openkamer/tkapi/HEAD/examples/fracties_example.py -------------------------------------------------------------------------------- /examples/geschenken_fractieleden_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openkamer/tkapi/HEAD/examples/geschenken_fractieleden_example.py -------------------------------------------------------------------------------- /examples/kamerleden_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openkamer/tkapi/HEAD/examples/kamerleden_example.py -------------------------------------------------------------------------------- /examples/kamerleden_nevenfuncties_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openkamer/tkapi/HEAD/examples/kamerleden_nevenfuncties_example.py -------------------------------------------------------------------------------- /examples/kamervragen_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openkamer/tkapi/HEAD/examples/kamervragen_example.py -------------------------------------------------------------------------------- /examples/reizen_fractieleden_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openkamer/tkapi/HEAD/examples/reizen_fractieleden_example.py -------------------------------------------------------------------------------- /examples/stemming_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openkamer/tkapi/HEAD/examples/stemming_example.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openkamer/tkapi/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests>=2.20.0 2 | python-dateutil>=2.7.5 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openkamer/tkapi/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openkamer/tkapi/HEAD/tests/core.py -------------------------------------------------------------------------------- /tests/test_activiteit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openkamer/tkapi/HEAD/tests/test_activiteit.py -------------------------------------------------------------------------------- /tests/test_agendapunt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openkamer/tkapi/HEAD/tests/test_agendapunt.py -------------------------------------------------------------------------------- /tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openkamer/tkapi/HEAD/tests/test_api.py -------------------------------------------------------------------------------- /tests/test_besluit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openkamer/tkapi/HEAD/tests/test_besluit.py -------------------------------------------------------------------------------- /tests/test_commissie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openkamer/tkapi/HEAD/tests/test_commissie.py -------------------------------------------------------------------------------- /tests/test_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openkamer/tkapi/HEAD/tests/test_document.py -------------------------------------------------------------------------------- /tests/test_dossier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openkamer/tkapi/HEAD/tests/test_dossier.py -------------------------------------------------------------------------------- /tests/test_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openkamer/tkapi/HEAD/tests/test_filter.py -------------------------------------------------------------------------------- /tests/test_fractie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openkamer/tkapi/HEAD/tests/test_fractie.py -------------------------------------------------------------------------------- /tests/test_kamervraag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openkamer/tkapi/HEAD/tests/test_kamervraag.py -------------------------------------------------------------------------------- /tests/test_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openkamer/tkapi/HEAD/tests/test_metadata.py -------------------------------------------------------------------------------- /tests/test_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openkamer/tkapi/HEAD/tests/test_order.py -------------------------------------------------------------------------------- /tests/test_persoon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openkamer/tkapi/HEAD/tests/test_persoon.py -------------------------------------------------------------------------------- /tests/test_stemming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openkamer/tkapi/HEAD/tests/test_stemming.py -------------------------------------------------------------------------------- /tests/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openkamer/tkapi/HEAD/tests/test_util.py -------------------------------------------------------------------------------- /tests/test_vergadering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openkamer/tkapi/HEAD/tests/test_vergadering.py -------------------------------------------------------------------------------- /tests/test_verslag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openkamer/tkapi/HEAD/tests/test_verslag.py -------------------------------------------------------------------------------- /tests/test_zaak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openkamer/tkapi/HEAD/tests/test_zaak.py -------------------------------------------------------------------------------- /tkapi/__init__.py: -------------------------------------------------------------------------------- 1 | from .tkapi import TKApi 2 | -------------------------------------------------------------------------------- /tkapi/activiteit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openkamer/tkapi/HEAD/tkapi/activiteit.py -------------------------------------------------------------------------------- /tkapi/agendapunt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openkamer/tkapi/HEAD/tkapi/agendapunt.py -------------------------------------------------------------------------------- /tkapi/besluit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openkamer/tkapi/HEAD/tkapi/besluit.py -------------------------------------------------------------------------------- /tkapi/commissie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openkamer/tkapi/HEAD/tkapi/commissie.py -------------------------------------------------------------------------------- /tkapi/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openkamer/tkapi/HEAD/tkapi/core.py -------------------------------------------------------------------------------- /tkapi/document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openkamer/tkapi/HEAD/tkapi/document.py -------------------------------------------------------------------------------- /tkapi/dossier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openkamer/tkapi/HEAD/tkapi/dossier.py -------------------------------------------------------------------------------- /tkapi/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openkamer/tkapi/HEAD/tkapi/filter.py -------------------------------------------------------------------------------- /tkapi/fractie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openkamer/tkapi/HEAD/tkapi/fractie.py -------------------------------------------------------------------------------- /tkapi/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openkamer/tkapi/HEAD/tkapi/info.py -------------------------------------------------------------------------------- /tkapi/kamervraag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openkamer/tkapi/HEAD/tkapi/kamervraag.py -------------------------------------------------------------------------------- /tkapi/order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openkamer/tkapi/HEAD/tkapi/order.py -------------------------------------------------------------------------------- /tkapi/persoon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openkamer/tkapi/HEAD/tkapi/persoon.py -------------------------------------------------------------------------------- /tkapi/stemming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openkamer/tkapi/HEAD/tkapi/stemming.py -------------------------------------------------------------------------------- /tkapi/tkapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openkamer/tkapi/HEAD/tkapi/tkapi.py -------------------------------------------------------------------------------- /tkapi/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tkapi/util/document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openkamer/tkapi/HEAD/tkapi/util/document.py -------------------------------------------------------------------------------- /tkapi/util/queries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openkamer/tkapi/HEAD/tkapi/util/queries.py -------------------------------------------------------------------------------- /tkapi/util/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openkamer/tkapi/HEAD/tkapi/util/util.py -------------------------------------------------------------------------------- /tkapi/vergadering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openkamer/tkapi/HEAD/tkapi/vergadering.py -------------------------------------------------------------------------------- /tkapi/verslag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openkamer/tkapi/HEAD/tkapi/verslag.py -------------------------------------------------------------------------------- /tkapi/zaak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openkamer/tkapi/HEAD/tkapi/zaak.py --------------------------------------------------------------------------------