airbyte-source-rki-covid 0.1.2__py3-none-any.whl → 0.1.3__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. airbyte_source_rki_covid-0.1.3.dist-info/METADATA +110 -0
  2. airbyte_source_rki_covid-0.1.3.dist-info/RECORD +25 -0
  3. {airbyte_source_rki_covid-0.1.2.dist-info → airbyte_source_rki_covid-0.1.3.dist-info}/WHEEL +1 -2
  4. airbyte_source_rki_covid-0.1.3.dist-info/entry_points.txt +3 -0
  5. source_rki_covid/schemas/TODO.md +30 -0
  6. airbyte_source_rki_covid-0.1.2.dist-info/METADATA +0 -119
  7. airbyte_source_rki_covid-0.1.2.dist-info/RECORD +0 -53
  8. airbyte_source_rki_covid-0.1.2.dist-info/entry_points.txt +0 -2
  9. airbyte_source_rki_covid-0.1.2.dist-info/top_level.txt +0 -3
  10. integration_tests/__init__.py +0 -3
  11. integration_tests/abnormal_state.json +0 -44
  12. integration_tests/acceptance.py +0 -14
  13. integration_tests/configured_catalog.json +0 -861
  14. integration_tests/invalid_config.json +0 -3
  15. integration_tests/sample_config.json +0 -3
  16. integration_tests/sample_state.json +0 -18
  17. unit_tests/__init__.py +0 -3
  18. unit_tests/test_cached_stream_state.py +0 -5
  19. unit_tests/test_incremental_germanhistorycases.py +0 -56
  20. unit_tests/test_incremental_germanhistorydeaths.py +0 -66
  21. unit_tests/test_incremental_germanhistoryfrozenIncidence.py +0 -66
  22. unit_tests/test_incremental_germanhistoryhospitalization.py +0 -66
  23. unit_tests/test_incremental_germanhistoryincidence.py +0 -66
  24. unit_tests/test_incremental_germanhistoryrecovered.py +0 -66
  25. unit_tests/test_incremental_streams.py +0 -52
  26. unit_tests/test_source.py +0 -21
  27. unit_tests/test_stateshistorycases.py +0 -29
  28. unit_tests/test_stateshistorydeaths.py +0 -29
  29. unit_tests/test_stateshistoryfrozenincidence.py +0 -29
  30. unit_tests/test_stateshistoryhospitalization.py +0 -29
  31. unit_tests/test_stateshistoryincidence.py +0 -29
  32. unit_tests/test_stateshistoryrecovered.py +0 -29
  33. unit_tests/test_stream_agegroup.py +0 -18
  34. unit_tests/test_stream_germany.py +0 -18
  35. unit_tests/test_stream_germany_states.py +0 -18
  36. unit_tests/test_streams.py +0 -67
  37. unit_tests/test_streams_states_agegroup.py +0 -18
@@ -0,0 +1,110 @@
1
+ Metadata-Version: 2.1
2
+ Name: airbyte-source-rki-covid
3
+ Version: 0.1.3
4
+ Summary: Source implementation for Rki Covid.
5
+ Home-page: https://airbyte.com
6
+ License: MIT
7
+ Author: Airbyte
8
+ Author-email: contact@airbyte.io
9
+ Requires-Python: >=3.9,<3.12
10
+ Classifier: License :: OSI Approved :: MIT License
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: Programming Language :: Python :: 3.9
13
+ Classifier: Programming Language :: Python :: 3.10
14
+ Classifier: Programming Language :: Python :: 3.11
15
+ Requires-Dist: airbyte-cdk (==0.80.0)
16
+ Project-URL: Documentation, https://docs.airbyte.com/integrations/sources/rki-covid
17
+ Project-URL: Repository, https://github.com/airbytehq/airbyte
18
+ Description-Content-Type: text/markdown
19
+
20
+ # Rki-Covid source connector
21
+
22
+
23
+ This is the repository for the Rki-Covid source connector, written in Python.
24
+ For information about how to use this connector within Airbyte, see [the documentation](https://docs.airbyte.com/integrations/sources/rki-covid).
25
+
26
+ ## Local development
27
+
28
+ ### Prerequisites
29
+ * Python (~=3.9)
30
+ * Poetry (~=1.7) - installation instructions [here](https://python-poetry.org/docs/#installation)
31
+
32
+
33
+ ### Installing the connector
34
+ From this connector directory, run:
35
+ ```bash
36
+ poetry install --with dev
37
+ ```
38
+
39
+
40
+ ### Create credentials
41
+ **If you are a community contributor**, follow the instructions in the [documentation](https://docs.airbyte.com/integrations/sources/rki-covid)
42
+ to generate the necessary credentials. Then create a file `secrets/config.json` conforming to the `source_rki_covid/spec.yaml` file.
43
+ Note that any directory named `secrets` is gitignored across the entire Airbyte repo, so there is no danger of accidentally checking in sensitive information.
44
+ See `sample_files/sample_config.json` for a sample config file.
45
+
46
+
47
+ ### Locally running the connector
48
+ ```
49
+ poetry run source-rki-covid spec
50
+ poetry run source-rki-covid check --config secrets/config.json
51
+ poetry run source-rki-covid discover --config secrets/config.json
52
+ poetry run source-rki-covid read --config secrets/config.json --catalog sample_files/configured_catalog.json
53
+ ```
54
+
55
+ ### Running unit tests
56
+ To run unit tests locally, from the connector directory run:
57
+ ```
58
+ poetry run pytest unit_tests
59
+ ```
60
+
61
+ ### Building the docker image
62
+ 1. Install [`airbyte-ci`](https://github.com/airbytehq/airbyte/blob/master/airbyte-ci/connectors/pipelines/README.md)
63
+ 2. Run the following command to build the docker image:
64
+ ```bash
65
+ airbyte-ci connectors --name=source-rki-covid build
66
+ ```
67
+
68
+ An image will be available on your host with the tag `airbyte/source-rki-covid:dev`.
69
+
70
+
71
+ ### Running as a docker container
72
+ Then run any of the connector commands as follows:
73
+ ```
74
+ docker run --rm airbyte/source-rki-covid:dev spec
75
+ docker run --rm -v $(pwd)/secrets:/secrets airbyte/source-rki-covid:dev check --config /secrets/config.json
76
+ docker run --rm -v $(pwd)/secrets:/secrets airbyte/source-rki-covid:dev discover --config /secrets/config.json
77
+ docker run --rm -v $(pwd)/secrets:/secrets -v $(pwd)/integration_tests:/integration_tests airbyte/source-rki-covid:dev read --config /secrets/config.json --catalog /integration_tests/configured_catalog.json
78
+ ```
79
+
80
+ ### Running our CI test suite
81
+ You can run our full test suite locally using [`airbyte-ci`](https://github.com/airbytehq/airbyte/blob/master/airbyte-ci/connectors/pipelines/README.md):
82
+ ```bash
83
+ airbyte-ci connectors --name=source-rki-covid test
84
+ ```
85
+
86
+ ### Customizing acceptance Tests
87
+ Customize `acceptance-test-config.yml` file to configure acceptance tests. See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) for more information.
88
+ If your connector requires to create or destroy resources for use during acceptance tests create fixtures for it and place them inside integration_tests/acceptance.py.
89
+
90
+ ### Dependency Management
91
+ All of your dependencies should be managed via Poetry.
92
+ To add a new dependency, run:
93
+ ```bash
94
+ poetry add <package-name>
95
+ ```
96
+
97
+ Please commit the changes to `pyproject.toml` and `poetry.lock` files.
98
+
99
+ ## Publishing a new version of the connector
100
+ You've checked out the repo, implemented a million dollar feature, and you're ready to share your changes with the world. Now what?
101
+ 1. Make sure your changes are passing our test suite: `airbyte-ci connectors --name=source-rki-covid test`
102
+ 2. Bump the connector version (please follow [semantic versioning for connectors](https://docs.airbyte.com/contributing-to-airbyte/resources/pull-requests-handbook/#semantic-versioning-for-connectors)):
103
+ - bump the `dockerImageTag` value in in `metadata.yaml`
104
+ - bump the `version` value in `pyproject.toml`
105
+ 3. Make sure the `metadata.yaml` content is up to date.
106
+ 4. Make sure the connector documentation and its changelog is up to date (`docs/integrations/sources/rki-covid.md`).
107
+ 5. Create a Pull Request: use [our PR naming conventions](https://docs.airbyte.com/contributing-to-airbyte/resources/pull-requests-handbook/#pull-request-title-convention).
108
+ 6. Pat yourself on the back for being an awesome contributor.
109
+ 7. Someone from Airbyte will take a look at your PR and iterate with you to merge it into master.
110
+ 8. Once your PR is merged, the new version of the connector will be automatically published to Docker Hub and our connector registry.
@@ -0,0 +1,25 @@
1
+ source_rki_covid/__init__.py,sha256=J3m6pRZVaNeEQ0SoPAwB-uy_eHUCZ5J8UrEpbODMl2Q,128
2
+ source_rki_covid/run.py,sha256=sijuacBMp9ZcEOtHdWmeNoFBeYtExO2YcEPbHd_PX1w,237
3
+ source_rki_covid/schemas/TODO.md,sha256=buGbe_7mhRgtXK4cy-WI8y4HUKWnOYA6OPZCcFQJ2CI,1650
4
+ source_rki_covid/schemas/german_history_deaths.json,sha256=t7nPUB3yeL3NmYKdy49kBy99Vkcd4nUrAyuxn4o0VMI,217
5
+ source_rki_covid/schemas/german_history_frozen_incidence.json,sha256=uj41UHcFtZYzpQuE5pAW4yyORm7SzLNPjgJDZ6cTt5E,230
6
+ source_rki_covid/schemas/german_history_hospitalization.json,sha256=Mh0hZvFBT752cJTuNzPvXITa2dJJyObEOxHmapdBy6o,1342
7
+ source_rki_covid/schemas/german_history_incidence.json,sha256=uj41UHcFtZYzpQuE5pAW4yyORm7SzLNPjgJDZ6cTt5E,230
8
+ source_rki_covid/schemas/german_history_recovered.json,sha256=8jfuZC25SmZ9-kZ_8fG8-ZCdLx0q4J3oMeJRxRLRwwk,223
9
+ source_rki_covid/schemas/germany.json,sha256=Vabgr1K24OQ_ZYy015LUncx0x6jlH_P97BYfVzMtJ44,2624
10
+ source_rki_covid/schemas/germany_age_groups.json,sha256=gojohMqF2Y3piHxtL7TPUDCscuAMwVGhSB4IjbNRwvA,8490
11
+ source_rki_covid/schemas/germany_history_cases.json,sha256=sW6J2YNyHZfvY-yTYiPG4VWFa7XszBwocdCm-748llE,215
12
+ source_rki_covid/schemas/germany_states.json,sha256=a2uljdw-mzh21Jh6fAjfF_U6lP9h25vjywbgHNfZ9mA,1863
13
+ source_rki_covid/schemas/germany_states_age_groups.json,sha256=bUaQQ8ss0dc3HekOTtN_sYbdLDUuoGfMy-dsCu8jTRM,8582
14
+ source_rki_covid/schemas/states_history_cases.json,sha256=4Rg93WGzwqIpS82mbqEDdSo31r3m7CIiMHkngstZVgw,375
15
+ source_rki_covid/schemas/states_history_deaths.json,sha256=Sy6XsggU0UXlzsyuNI1P68EUPGKLw6G0mEnEjTFISME,377
16
+ source_rki_covid/schemas/states_history_frozen_incidence.json,sha256=JP0LsmviL2GZWdLczA3iuEFQIsCGmXbFGfaGXzxgFqo,464
17
+ source_rki_covid/schemas/states_history_hospitalization.json,sha256=97ReTPh3MaTa5P3z3bCD2fYuCnUUDF5NCIR8gQB9Ry4,1490
18
+ source_rki_covid/schemas/states_history_incidence.json,sha256=TPdHWE_l_2oY1AUJS734PqyKLb3J16JtHhHTuVyXzwg,390
19
+ source_rki_covid/schemas/states_history_recovered.json,sha256=afabGmNzZkDiJYtoQ-RS6CJ97e0dlWuOk0VcPUcENu0,383
20
+ source_rki_covid/source.py,sha256=SWcWxJc83PoGXRvS6BmHDco8BlgzT47xGxUmXGZ_k5k,24292
21
+ source_rki_covid/spec.json,sha256=iwjqr_qbsuhHWsEz3_AOVn1Z8eiN-KH-F6KBL8AA6Jg,540
22
+ airbyte_source_rki_covid-0.1.3.dist-info/METADATA,sha256=FvdUxxvq3Vda-o88zsOWPXoxtz20ZHjoyKpVbDqWu7A,5263
23
+ airbyte_source_rki_covid-0.1.3.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
24
+ airbyte_source_rki_covid-0.1.3.dist-info/entry_points.txt,sha256=1tWGHwhTZoHp9hPQ6S1jcQPycz0MRgj4Q-BhiL5-d-4,61
25
+ airbyte_source_rki_covid-0.1.3.dist-info/RECORD,,
@@ -1,5 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.42.0)
2
+ Generator: poetry-core 1.9.0
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
-
@@ -0,0 +1,3 @@
1
+ [console_scripts]
2
+ source-rki-covid=source_rki_covid.run:run
3
+
@@ -0,0 +1,30 @@
1
+ # TODO: Define your stream schemas
2
+
3
+ Your connector must describe the schema of each stream it can output using [JSONSchema](https://json-schema.org).
4
+
5
+ The simplest way to do this is to describe the schema of your streams using one `.json` file per stream. You can also dynamically generate the schema of your stream in code, or you can combine both approaches: start with a `.json` file and dynamically add properties to it.
6
+
7
+ The schema of a stream is the return value of `Stream.get_json_schema`.
8
+
9
+ ## Static schemas
10
+
11
+ By default, `Stream.get_json_schema` reads a `.json` file in the `schemas/` directory whose name is equal to the value of the `Stream.name` property. In turn `Stream.name` by default returns the name of the class in snake case. Therefore, if you have a class `class EmployeeBenefits(HttpStream)` the default behavior will look for a file called `schemas/employee_benefits.json`. You can override any of these behaviors as you need.
12
+
13
+ Important note: any objects referenced via `$ref` should be placed in the `shared/` directory in their own `.json` files.
14
+
15
+ ## Dynamic schemas
16
+
17
+ If you'd rather define your schema in code, override `Stream.get_json_schema` in your stream class to return a `dict` describing the schema using [JSONSchema](https://json-schema.org).
18
+
19
+ ## Dynamically modifying static schemas
20
+
21
+ Override `Stream.get_json_schema` to run the default behavior, edit the returned value, then return the edited value:
22
+
23
+ ```
24
+ def get_json_schema(self):
25
+ schema = super().get_json_schema()
26
+ schema['dynamically_determined_property'] = "property"
27
+ return schema
28
+ ```
29
+
30
+ Delete this file once you're done. Or don't. Up to you :)
@@ -1,119 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: airbyte-source-rki-covid
3
- Version: 0.1.2
4
- Summary: Source implementation for Rki Covid.
5
- Author: Airbyte
6
- Author-email: contact@airbyte.io
7
- Description-Content-Type: text/markdown
8
- Requires-Dist: airbyte-cdk
9
- Provides-Extra: tests
10
- Requires-Dist: requests-mock ~=1.9.3 ; extra == 'tests'
11
- Requires-Dist: pytest ~=6.1 ; extra == 'tests'
12
- Requires-Dist: pytest-mock ~=3.6.1 ; extra == 'tests'
13
- Requires-Dist: airbyte-cdk ; extra == 'tests'
14
-
15
- # RKI Covid Source
16
-
17
- This is the repository for the RkI (Robert Koch-Institut - von Marlon Lückert) Covid-19 source connector, written in Python.
18
- For information about how to use this connector within Airbyte, see [the documentation](https://docs.airbyte.io/integrations/sources/rki-covid).
19
-
20
- ```
21
- Germany:
22
- 1. /germany
23
- 2. /germany/age-groups
24
- 3. /germany/history/cases/:days
25
- 4. /germany/history/incidence/:days
26
- 5. /germany/history/deaths/:days
27
- 6. /germany/history/recovered/:days
28
- 7. /germany/history/frozen-incidence/:days
29
- 8. /germany/history/hospitalization/:days
30
- 9. /germany/states
31
- 10. /germany/states/age-groups
32
- 11. /germany/states/history/cases/:days
33
- 12. /germany/states/history/incidence/:days
34
- 13. /germany/states/history/frozen-incidence/:days
35
- 14. /germany/states/history/deaths/:days
36
- 15. /germany/states/history/recovered/:days
37
- 16. /germany/states/history/hospitalization/:days
38
- ```
39
-
40
- **To iterate on this connector, make sure to complete this prerequisites section.**
41
-
42
-
43
- From this connector directory, create a virtual environment:
44
- ```
45
- python -m venv .venv
46
- ```
47
-
48
- This will generate a virtualenv for this module in `.venv/`. Make sure this venv is active in your
49
- development environment of choice. To activate it from the terminal, run:
50
- ```
51
- source .venv/bin/activate
52
- pip install -r requirements.txt
53
- pip install '.[tests]'
54
- ```
55
- If you are in an IDE, follow your IDE's instructions to activate the virtualenv.
56
-
57
- Note that while we are installing dependencies from `requirements.txt`, you should only edit `setup.py` for your dependencies. `requirements.txt` is
58
- used for editable installs (`pip install -e`) to pull in Python dependencies from the monorepo and will call `setup.py`.
59
- If this is mumbo jumbo to you, don't worry about it, just put your deps in `setup.py` but install using `pip install -r requirements.txt` and everything
60
- should work as you expect.
61
-
62
- **If you are a community contributor**, follow the instructions in the [documentation](https://docs.airbyte.io/integrations/sources/rki-covid)
63
- to generate the necessary credentials. Then create a file `secrets/config.json` conforming to the `source_rki_covid/spec.json` file.
64
- Note that any directory named `secrets` is gitignored across the entire Airbyte repo, so there is no danger of accidentally checking in sensitive information.
65
- See `integration_tests/sample_config.json` for a sample config file.
66
-
67
- **If you are an Airbyte core member**, copy the credentials in Lastpass under the secret name `source rki-covid test creds`
68
- and place them into `secrets/config.json`.
69
-
70
- ```
71
- python main.py spec
72
- python main.py check --config secrets/config.json
73
- python main.py discover --config secrets/config.json
74
- python main.py read --config secrets/config.json --catalog integration_tests/configured_catalog.json
75
- ```
76
-
77
-
78
-
79
- **Via [`airbyte-ci`](https://github.com/airbytehq/airbyte/blob/master/airbyte-ci/connectors/pipelines/README.md) (recommended):**
80
- ```bash
81
- airbyte-ci connectors --name=source-rki-covid build
82
- ```
83
-
84
- An image will be built with the tag `airbyte/source-rki-covid:dev`.
85
-
86
- **Via `docker build`:**
87
- ```bash
88
- docker build -t airbyte/source-rki-covid:dev .
89
- ```
90
-
91
- Then run any of the connector commands as follows:
92
- ```
93
- docker run --rm airbyte/source-rki-covid:dev spec
94
- docker run --rm -v $(pwd)/secrets:/secrets airbyte/source-rki-covid:dev check --config /secrets/config.json
95
- docker run --rm -v $(pwd)/secrets:/secrets airbyte/source-rki-covid:dev discover --config /secrets/config.json
96
- docker run --rm -v $(pwd)/secrets:/secrets -v $(pwd)/integration_tests:/integration_tests airbyte/source-rki-covid:dev read --config /secrets/config.json --catalog /integration_tests/configured_catalog.json
97
- ```
98
-
99
- You can run our full test suite locally using [`airbyte-ci`](https://github.com/airbytehq/airbyte/blob/master/airbyte-ci/connectors/pipelines/README.md):
100
- ```bash
101
- airbyte-ci connectors --name=source-rki-covid test
102
- ```
103
-
104
- Customize `acceptance-test-config.yml` file to configure tests. See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) for more information.
105
- If your connector requires to create or destroy resources for use during acceptance tests create fixtures for it and place them inside integration_tests/acceptance.py.
106
-
107
- All of your dependencies should go in `setup.py`, NOT `requirements.txt`. The requirements file is only used to connect internal Airbyte dependencies in the monorepo for local development.
108
- We split dependencies between two groups, dependencies that are:
109
- * required for your connector to work need to go to `MAIN_REQUIREMENTS` list.
110
- * required for the testing need to go to `TEST_REQUIREMENTS` list
111
-
112
- You've checked out the repo, implemented a million dollar feature, and you're ready to share your changes with the world. Now what?
113
- 1. Make sure your changes are passing our test suite: `airbyte-ci connectors --name=source-rki-covid test`
114
- 2. Bump the connector version in `metadata.yaml`: increment the `dockerImageTag` value. Please follow [semantic versioning for connectors](https://docs.airbyte.com/contributing-to-airbyte/resources/pull-requests-handbook/#semantic-versioning-for-connectors).
115
- 3. Make sure the `metadata.yaml` content is up to date.
116
- 4. Make the connector documentation and its changelog is up to date (`docs/integrations/sources/rki-covid.md`).
117
- 5. Create a Pull Request: use [our PR naming conventions](https://docs.airbyte.com/contributing-to-airbyte/resources/pull-requests-handbook/#pull-request-title-convention).
118
- 6. Pat yourself on the back for being an awesome contributor.
119
- 7. Someone from Airbyte will take a look at your PR and iterate with you to merge it into master.
@@ -1,53 +0,0 @@
1
- integration_tests/__init__.py,sha256=ZnqYNxHsKCgO38IwB34RQyRMXTs4GTvlRi3ImKnIioo,61
2
- integration_tests/abnormal_state.json,sha256=WoLRvllW-oHNvFvob2KX0tRcLLFbXGjHedRtxJpOFUQ,1071
3
- integration_tests/acceptance.py,sha256=VpQhkCpkovNSs0uLNh6iAdJ0WY-gYg0FbSBl8te_D0A,314
4
- integration_tests/configured_catalog.json,sha256=LWhKTYP5lrjOBxT2DJBxk9e8_kxySJsH0sis5Dvf2y8,26710
5
- integration_tests/invalid_config.json,sha256=uEVb2QHnckHE47yWHWyWQ1uMAE9RENvGQOrhGY-V-Lc,31
6
- integration_tests/sample_config.json,sha256=zrxOERVDBt9lhFgwYtiBNVlR2aoBX-StjRD_3xmqasw,33
7
- integration_tests/sample_state.json,sha256=gZwXoSm-owG_e32dODNIXOzIvE_55UnwfmaPQRCsKW8,424
8
- source_rki_covid/__init__.py,sha256=J3m6pRZVaNeEQ0SoPAwB-uy_eHUCZ5J8UrEpbODMl2Q,128
9
- source_rki_covid/run.py,sha256=sijuacBMp9ZcEOtHdWmeNoFBeYtExO2YcEPbHd_PX1w,237
10
- source_rki_covid/source.py,sha256=SWcWxJc83PoGXRvS6BmHDco8BlgzT47xGxUmXGZ_k5k,24292
11
- source_rki_covid/spec.json,sha256=iwjqr_qbsuhHWsEz3_AOVn1Z8eiN-KH-F6KBL8AA6Jg,540
12
- source_rki_covid/schemas/german_history_deaths.json,sha256=t7nPUB3yeL3NmYKdy49kBy99Vkcd4nUrAyuxn4o0VMI,217
13
- source_rki_covid/schemas/german_history_frozen_incidence.json,sha256=uj41UHcFtZYzpQuE5pAW4yyORm7SzLNPjgJDZ6cTt5E,230
14
- source_rki_covid/schemas/german_history_hospitalization.json,sha256=Mh0hZvFBT752cJTuNzPvXITa2dJJyObEOxHmapdBy6o,1342
15
- source_rki_covid/schemas/german_history_incidence.json,sha256=uj41UHcFtZYzpQuE5pAW4yyORm7SzLNPjgJDZ6cTt5E,230
16
- source_rki_covid/schemas/german_history_recovered.json,sha256=8jfuZC25SmZ9-kZ_8fG8-ZCdLx0q4J3oMeJRxRLRwwk,223
17
- source_rki_covid/schemas/germany.json,sha256=Vabgr1K24OQ_ZYy015LUncx0x6jlH_P97BYfVzMtJ44,2624
18
- source_rki_covid/schemas/germany_age_groups.json,sha256=gojohMqF2Y3piHxtL7TPUDCscuAMwVGhSB4IjbNRwvA,8490
19
- source_rki_covid/schemas/germany_history_cases.json,sha256=sW6J2YNyHZfvY-yTYiPG4VWFa7XszBwocdCm-748llE,215
20
- source_rki_covid/schemas/germany_states.json,sha256=a2uljdw-mzh21Jh6fAjfF_U6lP9h25vjywbgHNfZ9mA,1863
21
- source_rki_covid/schemas/germany_states_age_groups.json,sha256=bUaQQ8ss0dc3HekOTtN_sYbdLDUuoGfMy-dsCu8jTRM,8582
22
- source_rki_covid/schemas/states_history_cases.json,sha256=4Rg93WGzwqIpS82mbqEDdSo31r3m7CIiMHkngstZVgw,375
23
- source_rki_covid/schemas/states_history_deaths.json,sha256=Sy6XsggU0UXlzsyuNI1P68EUPGKLw6G0mEnEjTFISME,377
24
- source_rki_covid/schemas/states_history_frozen_incidence.json,sha256=JP0LsmviL2GZWdLczA3iuEFQIsCGmXbFGfaGXzxgFqo,464
25
- source_rki_covid/schemas/states_history_hospitalization.json,sha256=97ReTPh3MaTa5P3z3bCD2fYuCnUUDF5NCIR8gQB9Ry4,1490
26
- source_rki_covid/schemas/states_history_incidence.json,sha256=TPdHWE_l_2oY1AUJS734PqyKLb3J16JtHhHTuVyXzwg,390
27
- source_rki_covid/schemas/states_history_recovered.json,sha256=afabGmNzZkDiJYtoQ-RS6CJ97e0dlWuOk0VcPUcENu0,383
28
- unit_tests/__init__.py,sha256=ZnqYNxHsKCgO38IwB34RQyRMXTs4GTvlRi3ImKnIioo,61
29
- unit_tests/test_cached_stream_state.py,sha256=6fYVX7YmbGhx1oKTfEBjseL676CTuA23ZqBwToJtmcU,64
30
- unit_tests/test_incremental_germanhistorycases.py,sha256=Aj6GDjj3rJ69RWX8e4NJS0g2vP4PtVEkLKk3d09KiJk,1828
31
- unit_tests/test_incremental_germanhistorydeaths.py,sha256=zZ_x2T8YVIPLzkQFmSFRYl9ac6hHyeHmNzrTEEcT1Nk,2283
32
- unit_tests/test_incremental_germanhistoryfrozenIncidence.py,sha256=6XPJJufDPgS2Gead8y1XYmYJqNt8gaVfGn0AUie51bA,2422
33
- unit_tests/test_incremental_germanhistoryhospitalization.py,sha256=htjkVgaO2cVkkCvZJhKybyMBCZ0Nm83Pom5C72z33Kc,2427
34
- unit_tests/test_incremental_germanhistoryincidence.py,sha256=5PJ4KM11Zju7a4rkAZoiEPfQttXkaVIjZ5Rg8BLrSog,2331
35
- unit_tests/test_incremental_germanhistoryrecovered.py,sha256=7aAlwfRobO4KdH79yg7U5NxxGdhE0Cj0dllFiSMY4DM,2331
36
- unit_tests/test_incremental_streams.py,sha256=4ZRdS4A4Sk5I4o0U9VdtMFcz9QcNalAzMn9tXp0-Mhc,1825
37
- unit_tests/test_source.py,sha256=rErHTWF1DPHEU314NHasjt0C1c-pW7I1sFUTMFCpwfg,564
38
- unit_tests/test_stateshistorycases.py,sha256=IYrSlI5il8zpQWcsxCyYT3ZLZQpJ7fCz8woHUD3Lnjg,808
39
- unit_tests/test_stateshistorydeaths.py,sha256=s_68uw7MLH-AdvSCIPX12hv3y74qcIhkV4htW304UMY,814
40
- unit_tests/test_stateshistoryfrozenincidence.py,sha256=i5MO-A6q3vt9PBybN6HTJ6CXP9LL43txXdiOzsLLqoA,869
41
- unit_tests/test_stateshistoryhospitalization.py,sha256=KrcrSF10SnhKo_utidemmzeVNDloA2n-eQ3zXNiQj9o,868
42
- unit_tests/test_stateshistoryincidence.py,sha256=t3MjsgE3d28nkB2QleI3PKT8JOZrDYjwLo9JlYV2BmY,832
43
- unit_tests/test_stateshistoryrecovered.py,sha256=cS5is902nK0xMxpcMvA_OyBxB3XIMkAtzyKpqibAMqA,832
44
- unit_tests/test_stream_agegroup.py,sha256=IU2TLOBZdaP_w9B5x2aLlUtXe0f-CRMcbwGy7YU76bM,481
45
- unit_tests/test_stream_germany.py,sha256=ZHnmRMSoKsvWpx5ETJavQDxzbonNxdk2L-8bD6h23As,452
46
- unit_tests/test_stream_germany_states.py,sha256=W8WeFcxj_f2Cib3hBoY3NNBF1r5cAPTaFKDiqNdU9Ms,483
47
- unit_tests/test_streams.py,sha256=Or8ALwrCZwGs8dgXnmRFNGu8HmyyaAEjbzktBFqIfXY,2063
48
- unit_tests/test_streams_states_agegroup.py,sha256=ktEHR16qmYXO_U4_9L-VDoubtzy_neN6QQJVRrgQ2ps,512
49
- airbyte_source_rki_covid-0.1.2.dist-info/METADATA,sha256=3I-YZoiBpXIVnL1R04aiZUl37gES9ChfeqJnOT2D4g4,6115
50
- airbyte_source_rki_covid-0.1.2.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
51
- airbyte_source_rki_covid-0.1.2.dist-info/entry_points.txt,sha256=W42WtxImgQPfoJXyT7dL77_4RjZ0Wuuh4HF0eAc7FeU,62
52
- airbyte_source_rki_covid-0.1.2.dist-info/top_level.txt,sha256=1DbNJKYT3ILua0Y-8Zk_LZiKBY7bPNuHc5QhfD4ZyQY,46
53
- airbyte_source_rki_covid-0.1.2.dist-info/RECORD,,
@@ -1,2 +0,0 @@
1
- [console_scripts]
2
- source-rki-covid = source_rki_covid.run:run
@@ -1,3 +0,0 @@
1
- integration_tests
2
- source_rki_covid
3
- unit_tests
@@ -1,3 +0,0 @@
1
- #
2
- # Copyright (c) 2021 Airbyte, Inc., all rights reserved.
3
- #
@@ -1,44 +0,0 @@
1
- {
2
- "germany_history_cases": {
3
- "date": "2024-04-06T00:00:00.000Z"
4
- },
5
- "german_history_incidence": {
6
- "date": "2024-04-06T00:00:00.000Z"
7
- },
8
- "german_history_deaths": {
9
- "date": "2024-04-06T00:00:00.000Z"
10
- },
11
- "german_history_recovered": {
12
- "date": "2024-04-06T00:00:00.000Z"
13
- },
14
- "german_history_hospitalization": {
15
- "date": "2024-04-07T00:00:00.000Z"
16
- },
17
- "german_history_frozen_incidence": {
18
- "date": "2024-01-01T00:00:00.000Z"
19
- },
20
- "germany_states": {
21
- "date": "2024-01-01T00:00:00.000Z"
22
- },
23
- "germany_states_age_groups": {
24
- "date": "2024-01-01T00:00:00.000Z"
25
- },
26
- "states_history_cases": {
27
- "date": "2024-01-01T00:00:00.000Z"
28
- },
29
- "states_history_incidence": {
30
- "date": "2024-01-01T00:00:00.000Z"
31
- },
32
- "states_history_frozen_incidence": {
33
- "date": "2024-01-01T00:00:00.000Z"
34
- },
35
- "states_history_deaths": {
36
- "date": "2024-01-01T00:00:00.000Z"
37
- },
38
- "states_history_recovered": {
39
- "date": "2024-01-01T00:00:00.000Z"
40
- },
41
- "states_history_hospitalization": {
42
- "date": "2024-01-01T00:00:00.000Z"
43
- }
44
- }
@@ -1,14 +0,0 @@
1
- #
2
- # Copyright (c) 2023 Airbyte, Inc., all rights reserved.
3
- #
4
-
5
-
6
- import pytest
7
-
8
- pytest_plugins = ("connector_acceptance_test.plugin",)
9
-
10
-
11
- @pytest.fixture(scope="session", autouse=True)
12
- def connector_setup():
13
- """This fixture is a placeholder for external resources that acceptance test might require."""
14
- yield