airbyte-source-rki-covid 0.1.27__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: airbyte-source-rki-covid
3
- Version: 0.1.27
3
+ Version: 0.1.28
4
4
  Summary: Source implementation for Rki Covid.
5
5
  Home-page: https://airbyte.com
6
6
  License: MIT
@@ -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=SWcWxJc83PoGXRvS6BmHDco8BlgzT47xGxUmXGZ_k5k,24292
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.27.dist-info/METADATA,sha256=E2dMV4u66HEmnVfsueb5yLHpbAW5dwiN0DIaM70tED0,5264
23
- airbyte_source_rki_covid-0.1.27.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
24
- airbyte_source_rki_covid-0.1.27.dist-info/entry_points.txt,sha256=1tWGHwhTZoHp9hPQ6S1jcQPycz0MRgj4Q-BhiL5-d-4,61
25
- airbyte_source_rki_covid-0.1.27.dist-info/RECORD,,
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,,
@@ -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