airbyte-source-rki-covid 0.1.26__py3-none-any.whl → 0.1.28__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.
- {airbyte_source_rki_covid-0.1.26.dist-info → airbyte_source_rki_covid-0.1.28.dist-info}/METADATA +1 -1
- {airbyte_source_rki_covid-0.1.26.dist-info → airbyte_source_rki_covid-0.1.28.dist-info}/RECORD +5 -5
- source_rki_covid/source.py +1 -2
- {airbyte_source_rki_covid-0.1.26.dist-info → airbyte_source_rki_covid-0.1.28.dist-info}/WHEEL +0 -0
- {airbyte_source_rki_covid-0.1.26.dist-info → airbyte_source_rki_covid-0.1.28.dist-info}/entry_points.txt +0 -0
{airbyte_source_rki_covid-0.1.26.dist-info → airbyte_source_rki_covid-0.1.28.dist-info}/RECORD
RENAMED
@@ -17,9 +17,9 @@ source_rki_covid/schemas/states_history_frozen_incidence.json,sha256=JP0LsmviL2G
|
|
17
17
|
source_rki_covid/schemas/states_history_hospitalization.json,sha256=97ReTPh3MaTa5P3z3bCD2fYuCnUUDF5NCIR8gQB9Ry4,1490
|
18
18
|
source_rki_covid/schemas/states_history_incidence.json,sha256=TPdHWE_l_2oY1AUJS734PqyKLb3J16JtHhHTuVyXzwg,390
|
19
19
|
source_rki_covid/schemas/states_history_recovered.json,sha256=afabGmNzZkDiJYtoQ-RS6CJ97e0dlWuOk0VcPUcENu0,383
|
20
|
-
source_rki_covid/source.py,sha256=
|
20
|
+
source_rki_covid/source.py,sha256=adIEJpzGCaccs-_G3FLgRYm1Yy7g-lWzi-Uhpx21NzY,24291
|
21
21
|
source_rki_covid/spec.json,sha256=iwjqr_qbsuhHWsEz3_AOVn1Z8eiN-KH-F6KBL8AA6Jg,540
|
22
|
-
airbyte_source_rki_covid-0.1.
|
23
|
-
airbyte_source_rki_covid-0.1.
|
24
|
-
airbyte_source_rki_covid-0.1.
|
25
|
-
airbyte_source_rki_covid-0.1.
|
22
|
+
airbyte_source_rki_covid-0.1.28.dist-info/METADATA,sha256=yas2kEIRXBb0RTrmmBCguRfuhXUkDiXudzgyEy64VoU,5264
|
23
|
+
airbyte_source_rki_covid-0.1.28.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
24
|
+
airbyte_source_rki_covid-0.1.28.dist-info/entry_points.txt,sha256=1tWGHwhTZoHp9hPQ6S1jcQPycz0MRgj4Q-BhiL5-d-4,61
|
25
|
+
airbyte_source_rki_covid-0.1.28.dist-info/RECORD,,
|
source_rki_covid/source.py
CHANGED
@@ -8,6 +8,7 @@ from datetime import datetime
|
|
8
8
|
from typing import Any, Iterable, List, Mapping, MutableMapping, Optional, Tuple
|
9
9
|
|
10
10
|
import requests
|
11
|
+
|
11
12
|
from airbyte_cdk.sources import AbstractSource
|
12
13
|
from airbyte_cdk.sources.streams import Stream
|
13
14
|
from airbyte_cdk.sources.streams.http import HttpStream
|
@@ -15,7 +16,6 @@ from airbyte_cdk.sources.streams.http import HttpStream
|
|
15
16
|
|
16
17
|
# Basic full refresh stream
|
17
18
|
class RkiCovidStream(HttpStream, ABC):
|
18
|
-
|
19
19
|
url_base = "https://api.corona-zahlen.org/"
|
20
20
|
|
21
21
|
def next_page_token(self, response: requests.Response) -> Optional[Mapping[str, Any]]:
|
@@ -106,7 +106,6 @@ class GermanyStatesAgeGroups(RkiCovidStream):
|
|
106
106
|
|
107
107
|
# Basic incremental stream
|
108
108
|
class IncrementalRkiCovidStream(RkiCovidStream, ABC):
|
109
|
-
|
110
109
|
state_checkpoint_interval = None
|
111
110
|
|
112
111
|
@property
|
{airbyte_source_rki_covid-0.1.26.dist-info → airbyte_source_rki_covid-0.1.28.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|