You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -31,3 +31,37 @@ Your solution to convert API responses to Pandas DataFrames with retry strategie
31
31
32
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
33
34
+
## Installation
35
+
36
+
To install the package using pip, use the following command:
37
+
38
+
```sh
39
+
pip install api-to-dataframe
40
+
```
41
+
42
+
To install the package using poetry, use the following command:
43
+
44
+
```sh
45
+
poetry add api-to-dataframe
46
+
```
47
+
48
+
## How to use it
49
+
50
+
```python
51
+
## Importing library
52
+
from api_to_dataframe import ClientBuilder, RetryStrategies
53
+
54
+
# Create a client for the API without retry strategy
0 commit comments