api-to-dataframe 1.2.2__tar.gz → 1.2.3__tar.gz
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.
- {api_to_dataframe-1.2.2 → api_to_dataframe-1.2.3}/PKG-INFO +7 -10
- {api_to_dataframe-1.2.2 → api_to_dataframe-1.2.3}/README.md +1 -6
- {api_to_dataframe-1.2.2 → api_to_dataframe-1.2.3}/pyproject.toml +7 -7
- {api_to_dataframe-1.2.2 → api_to_dataframe-1.2.3}/LICENSE +0 -0
- {api_to_dataframe-1.2.2 → api_to_dataframe-1.2.3}/src/api_to_dataframe/__init__.py +0 -0
- {api_to_dataframe-1.2.2 → api_to_dataframe-1.2.3}/src/api_to_dataframe/config/config.py +0 -0
- {api_to_dataframe-1.2.2 → api_to_dataframe-1.2.3}/src/api_to_dataframe/controller/client_builder.py +0 -0
- {api_to_dataframe-1.2.2 → api_to_dataframe-1.2.3}/src/api_to_dataframe/models/get_data.py +0 -0
- {api_to_dataframe-1.2.2 → api_to_dataframe-1.2.3}/src/api_to_dataframe/models/retainer.py +0 -0
- {api_to_dataframe-1.2.2 → api_to_dataframe-1.2.3}/src/api_to_dataframe/views/dataframe_metrics.py +0 -0
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: api-to-dataframe
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.3
|
|
4
4
|
Summary: A package to convert API responses to pandas dataframe
|
|
5
|
-
Home-page: https://github.com/IvanildoBarauna/api-to-dataframe
|
|
6
5
|
License: MIT
|
|
7
6
|
Author: IvanildoBarauna
|
|
8
7
|
Author-email: ivanildo.jnr@outlook.com
|
|
9
8
|
Requires-Python: >=3.9,<4.0
|
|
10
|
-
Classifier: Development Status ::
|
|
9
|
+
Classifier: Development Status :: 4 - Beta
|
|
11
10
|
Classifier: Intended Audience :: Developers
|
|
12
11
|
Classifier: License :: OSI Approved :: MIT License
|
|
13
12
|
Classifier: Programming Language :: Python :: 3
|
|
@@ -18,13 +17,16 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
18
17
|
Classifier: Programming Language :: Python :: 3.8
|
|
19
18
|
Requires-Dist: pandas (>=2.2.2,<3.0.0)
|
|
20
19
|
Requires-Dist: requests (>=2.32.3,<3.0.0)
|
|
21
|
-
Project-URL: Documentation, https://github.com/IvanildoBarauna/api-to-dataframe
|
|
20
|
+
Project-URL: Documentation, https://github.com/IvanildoBarauna/api-to-dataframe/blob/main/README.md
|
|
21
|
+
Project-URL: Homepage, https://pypi.org/project/api-to-dataframe
|
|
22
|
+
Project-URL: ImplementationCase, https://github.com/IvanildoBarauna/ETL-awesome-api
|
|
22
23
|
Project-URL: Issues, https://github.com/IvanildoBarauna/api-to-dataframe/issues
|
|
24
|
+
Project-URL: Notebook, https://github.com/IvanildoBarauna/api-to-dataframe/blob/main/notebooks/example.ipynb
|
|
23
25
|
Project-URL: Repository, https://github.com/IvanildoBarauna/api-to-dataframe
|
|
24
26
|
Description-Content-Type: text/markdown
|
|
25
27
|
|
|
26
28
|
# API to DataFrame
|
|
27
|
-
|
|
29
|
+
Python library that simplifies obtaining data from API endpoints by converting them directly into Pandas DataFrames. This library offers robust features, including retry strategies for failed requests.
|
|
28
30
|
|
|
29
31
|
[](https://github.com/IvanildoBarauna/api-to-dataframe)
|
|
30
32
|
|
|
@@ -51,11 +53,6 @@ Your solution to convert API responses to Pandas DataFrames with retry strategie
|
|
|
51
53
|

|
|
52
54
|
|
|
53
55
|
|
|
54
|
-
|
|
55
|
-
## Library Description
|
|
56
|
-
|
|
57
|
-
Python library that simplifies obtaining data from API endpoints by converting them directly into Pandas DataFrames. This library offers robust features, including retry strategies for failed requests and automatic generation of detailed reports on the received data.
|
|
58
|
-
|
|
59
56
|
## Installation
|
|
60
57
|
|
|
61
58
|
To install the package using pip, use the following command:
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# API to DataFrame
|
|
2
|
-
|
|
2
|
+
Python library that simplifies obtaining data from API endpoints by converting them directly into Pandas DataFrames. This library offers robust features, including retry strategies for failed requests.
|
|
3
3
|
|
|
4
4
|
[](https://github.com/IvanildoBarauna/api-to-dataframe)
|
|
5
5
|
|
|
@@ -26,11 +26,6 @@ Your solution to convert API responses to Pandas DataFrames with retry strategie
|
|
|
26
26
|

|
|
27
27
|
|
|
28
28
|
|
|
29
|
-
|
|
30
|
-
## Library Description
|
|
31
|
-
|
|
32
|
-
Python library that simplifies obtaining data from API endpoints by converting them directly into Pandas DataFrames. This library offers robust features, including retry strategies for failed requests and automatic generation of detailed reports on the received data.
|
|
33
|
-
|
|
34
29
|
## Installation
|
|
35
30
|
|
|
36
31
|
To install the package using pip, use the following command:
|
|
@@ -1,26 +1,26 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "api-to-dataframe"
|
|
3
|
-
version = "1.2.
|
|
3
|
+
version = "1.2.3"
|
|
4
4
|
description = "A package to convert API responses to pandas dataframe"
|
|
5
5
|
authors = ["IvanildoBarauna <ivanildo.jnr@outlook.com>"]
|
|
6
6
|
readme = "README.md"
|
|
7
7
|
license = "MIT"
|
|
8
8
|
classifiers=[
|
|
9
|
-
"Development Status ::
|
|
9
|
+
"Development Status :: 4 - Beta",
|
|
10
10
|
"Intended Audience :: Developers",
|
|
11
11
|
"License :: OSI Approved :: MIT License",
|
|
12
12
|
"Programming Language :: Python :: 3",
|
|
13
13
|
"Programming Language :: Python :: 3.8",
|
|
14
14
|
]
|
|
15
15
|
|
|
16
|
-
homepage = "https://github.com/IvanildoBarauna/api-to-dataframe"
|
|
17
|
-
repository = "https://github.com/IvanildoBarauna/api-to-dataframe"
|
|
18
|
-
documentation = "https://github.com/IvanildoBarauna/api-to-dataframe#readme"
|
|
19
16
|
|
|
20
17
|
[tool.poetry.urls]
|
|
21
|
-
Homepage = "https://
|
|
22
|
-
Documentation = "https://github.com/IvanildoBarauna/api-to-dataframe
|
|
18
|
+
Homepage = "https://pypi.org/project/api-to-dataframe"
|
|
19
|
+
Documentation = "https://github.com/IvanildoBarauna/api-to-dataframe/blob/main/README.md"
|
|
20
|
+
Notebook = 'https://github.com/IvanildoBarauna/api-to-dataframe/blob/main/notebooks/example.ipynb'
|
|
21
|
+
ImplementationCase = 'https://github.com/IvanildoBarauna/ETL-awesome-api'
|
|
23
22
|
Issues = "https://github.com/IvanildoBarauna/api-to-dataframe/issues"
|
|
23
|
+
Repository = "https://github.com/IvanildoBarauna/api-to-dataframe"
|
|
24
24
|
|
|
25
25
|
[tool.poetry.dependencies]
|
|
26
26
|
python = "^3.9"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{api_to_dataframe-1.2.2 → api_to_dataframe-1.2.3}/src/api_to_dataframe/controller/client_builder.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{api_to_dataframe-1.2.2 → api_to_dataframe-1.2.3}/src/api_to_dataframe/views/dataframe_metrics.py
RENAMED
|
File without changes
|