airbyte-source-facebook-pages 1.0.24__py3-none-any.whl → 1.0.25__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-facebook-pages
3
- Version: 1.0.24
3
+ Version: 1.0.25
4
4
  Summary: Source implementation for Facebook Pages.
5
5
  Home-page: https://airbyte.com
6
6
  License: ELv2
@@ -1,7 +1,7 @@
1
1
  source_facebook_pages/__init__.py,sha256=VZVUqQ18X8IkiApSkuDl9cXhuxsCFH4LCjHzcwmY0iI,138
2
- source_facebook_pages/components.py,sha256=zqnXCgwflagz4gLnFPEEMYFF7d2LarrHnP-MHttv4lY,4703
2
+ source_facebook_pages/components.py,sha256=GJLbduA0kYHSD-2JVhieR6us_KszmFbcI1l_nsHZCDE,4704
3
3
  source_facebook_pages/manifest.yaml,sha256=bi89XFptBKG1dlrZn_VXznWuvzGJusKrhtk-F0A8wcA,14804
4
- source_facebook_pages/run.py,sha256=mM79fY7kIB3OOv3NhsYQceKWILbv2Bmt9bILRH3iFgY,252
4
+ source_facebook_pages/run.py,sha256=LaHnyS63ROFHA8RA-xgN83CGtq6clz2UlmX3UcxxAQk,253
5
5
  source_facebook_pages/schemas/page.json,sha256=2IU2wycPRqVi9OCQfqGJcpRXiJczxsZmJhIwB8UgK6g,51056
6
6
  source_facebook_pages/schemas/page_insights.json,sha256=lmNt_NuUjr25eIC81L5mZcIfBnGnfCNIpkFKx-Lh7M8,734
7
7
  source_facebook_pages/schemas/post.json,sha256=iO0pvFRGqEg_es_uOD4eAXxJMfQczccvwQzJWvNrb8U,9961
@@ -70,9 +70,9 @@ source_facebook_pages/schemas/shared/user.json,sha256=j-kwFVFYSpzSIinmtMn0AZWgpg
70
70
  source_facebook_pages/schemas/shared/videocopyrightrule.json,sha256=oiMprdlaX83gVz4GaVbNfaXZnfH7Q_jKZGJ4ArEGOQc,438
71
71
  source_facebook_pages/schemas/shared/videolist.json,sha256=h9rK-JRbsV7EEzxM0ffLwfXuMLJfG3W_FFlz0gv9q7U,648
72
72
  source_facebook_pages/schemas/shared/voipinfo.json,sha256=lwkslyCbqXCBlusPZwXW40ZXUkf_PyR2dmboqT1fCpo,508
73
- source_facebook_pages/source.py,sha256=-MSUylarWYwpYwUk-94X_lC1obM81AmeCxBtIr56NAo,482
73
+ source_facebook_pages/source.py,sha256=Zd1H8OVfIytOTB99Nb2UWQtt-JAq9NGAVJsqAwWdwmQ,483
74
74
  source_facebook_pages/spec.yaml,sha256=rbbne2qnCX84pKYklIvETCKloS9LuWMvnFA3SXEc1cc,1019
75
- airbyte_source_facebook_pages-1.0.24.dist-info/METADATA,sha256=F-wYnmUNUXsDTOivh3GkunnezVeQnD3adgyp5FNyP90,7499
76
- airbyte_source_facebook_pages-1.0.24.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
77
- airbyte_source_facebook_pages-1.0.24.dist-info/entry_points.txt,sha256=AJV3GvUFQ9l36Gr9_Qa8nNl5Es2qOZMTKx2gugXnyvQ,71
78
- airbyte_source_facebook_pages-1.0.24.dist-info/RECORD,,
75
+ airbyte_source_facebook_pages-1.0.25.dist-info/METADATA,sha256=8Oa6xTB6qXWPzyqbr9FH18ghlsnoCPy7I1KicGckLyk,7499
76
+ airbyte_source_facebook_pages-1.0.25.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
77
+ airbyte_source_facebook_pages-1.0.25.dist-info/entry_points.txt,sha256=AJV3GvUFQ9l36Gr9_Qa8nNl5Es2qOZMTKx2gugXnyvQ,71
78
+ airbyte_source_facebook_pages-1.0.25.dist-info/RECORD,,
@@ -9,12 +9,13 @@ from typing import Any, Mapping, MutableMapping, Optional, Union
9
9
  import dpath.util
10
10
  import pendulum
11
11
  import requests
12
+ from requests import HTTPError
13
+
12
14
  from airbyte_cdk.sources.declarative.auth.declarative_authenticator import NoAuth
13
15
  from airbyte_cdk.sources.declarative.interpolation.interpolated_string import InterpolatedString
14
16
  from airbyte_cdk.sources.declarative.schema import JsonFileSchemaLoader
15
17
  from airbyte_cdk.sources.declarative.transformations import RecordTransformation
16
18
  from airbyte_cdk.sources.declarative.types import Config, Record, StreamSlice, StreamState
17
- from requests import HTTPError
18
19
 
19
20
 
20
21
  @dataclass
@@ -5,9 +5,10 @@
5
5
 
6
6
  import sys
7
7
 
8
- from airbyte_cdk.entrypoint import launch
9
8
  from source_facebook_pages import SourceFacebookPages
10
9
 
10
+ from airbyte_cdk.entrypoint import launch
11
+
11
12
 
12
13
  def run():
13
14
  source = SourceFacebookPages()
@@ -4,6 +4,7 @@
4
4
 
5
5
  from airbyte_cdk.sources.declarative.yaml_declarative_source import YamlDeclarativeSource
6
6
 
7
+
7
8
  """
8
9
  This file provides the necessary constructs to interpret a provided declarative YAML configuration file into
9
10
  source connector.