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.
@@ -1,13 +1,12 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: api-to-dataframe
3
- Version: 1.2.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 :: 3 - Alpha
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#readme
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
- Your solution to convert API responses to Pandas DataFrames with retry strategies and detailed reports.
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
  [![Github](https://img.shields.io/badge/-Go_to_Github_repository-05122A?style=flat&logo=github)](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
  ![pytest](https://img.shields.io/badge/-pytest-05122A?style=flat&logo=pytest)&nbsp;
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
- Your solution to convert API responses to Pandas DataFrames with retry strategies and detailed reports.
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
  [![Github](https://img.shields.io/badge/-Go_to_Github_repository-05122A?style=flat&logo=github)](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
  ![pytest](https://img.shields.io/badge/-pytest-05122A?style=flat&logo=pytest)&nbsp;
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.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 :: 3 - Alpha",
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://github.com/IvanildoBarauna/api-to-dataframe"
22
- Documentation = "https://github.com/IvanildoBarauna/api-to-dataframe#readme"
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"