mirror of
https://github.com/kevinveenbirkenbach/baserow-ifto.git
synced 2024-11-01 01:23:10 +01:00
Added fetch draft
This commit is contained in:
parent
316343c6c2
commit
0f265ba381
45
README.md
45
README.md
@ -1,2 +1,45 @@
|
|||||||
# baserow-ifto
|
# baserow-ifto
|
||||||
This repository contains the Input Filter Transform and Output scripts to work with baserow data
|
|
||||||
|
This repository contains the Input Filter Transform and Output (IFTO) scripts to work with Baserow data.
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
|
||||||
|
### Fetching All Data from a Baserow Database
|
||||||
|
|
||||||
|
We have a Python script that allows you to fetch all data from a Baserow database using its API.
|
||||||
|
|
||||||
|
#### Requirements
|
||||||
|
|
||||||
|
- Python 3.x
|
||||||
|
- `requests` library. You can install it using pip:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
pip install requests
|
||||||
|
```
|
||||||
|
|
||||||
|
#### How to Use
|
||||||
|
|
||||||
|
1. Clone this repository:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
git clone https://github.com/yourusername/baserow-ifto.git
|
||||||
|
cd baserow-ifto
|
||||||
|
```
|
||||||
|
|
||||||
|
2. Run the script with the required arguments:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
python fetch-all-data.py BASE_URL API_KEY DATABASE_ID
|
||||||
|
```
|
||||||
|
|
||||||
|
Replace `BASE_URL`, `API_KEY`, `DATABASE_ID` with the appropriate values:
|
||||||
|
|
||||||
|
- `BASE_URL`: Base URL of your Baserow instance, e.g., `https://YOUR_BASEROW_INSTANCE_URL/api/`
|
||||||
|
- `API_KEY`: Your Baserow API key.
|
||||||
|
- `DATABASE_ID`: ID of the Baserow database you want to fetch data from.
|
||||||
|
|
||||||
|
The script will then fetch all the data from the specified Baserow database and print it to the console.
|
||||||
|
|
||||||
|
## Contributing
|
||||||
|
|
||||||
|
If you have suggestions or improvements, feel free to open an issue or submit a pull request. Your contributions are welcome!
|
||||||
|
@ -1,40 +1,49 @@
|
|||||||
import requests
|
import requests
|
||||||
|
import argparse
|
||||||
|
|
||||||
BASE_URL = "https://YOUR_BASEROW_INSTANCE_URL/api/"
|
def get_all_rows_from_table(base_url, api_key, table_id):
|
||||||
API_KEY = "YOUR_API_KEY"
|
headers = {
|
||||||
HEADERS = {
|
"Authorization": f"Token {api_key}",
|
||||||
"Authorization": f"Token {API_KEY}",
|
|
||||||
"Content-Type": "application/json"
|
"Content-Type": "application/json"
|
||||||
}
|
}
|
||||||
|
|
||||||
def get_all_rows_from_table(table_id):
|
|
||||||
rows = []
|
rows = []
|
||||||
next_url = f"{BASE_URL}database/rows/table/{table_id}/"
|
next_url = f"{base_url}database/rows/table/{table_id}/"
|
||||||
|
|
||||||
while next_url:
|
while next_url:
|
||||||
response = requests.get(next_url, headers=HEADERS)
|
response = requests.get(next_url, headers=headers)
|
||||||
data = response.json()
|
data = response.json()
|
||||||
rows.extend(data['results'])
|
rows.extend(data['results'])
|
||||||
next_url = data['next']
|
next_url = data['next']
|
||||||
|
|
||||||
return rows
|
return rows
|
||||||
|
|
||||||
def get_all_tables_from_database(database_id):
|
def get_all_tables_from_database(base_url, api_key, database_id):
|
||||||
response = requests.get(f"{BASE_URL}database/tables/database/{database_id}/", headers=HEADERS)
|
headers = {
|
||||||
|
"Authorization": f"Token {api_key}",
|
||||||
|
"Content-Type": "application/json"
|
||||||
|
}
|
||||||
|
response = requests.get(f"{base_url}database/tables/database/{database_id}/", headers=headers)
|
||||||
tables = response.json()
|
tables = response.json()
|
||||||
return tables
|
return tables
|
||||||
|
|
||||||
def get_all_data_from_database(database_id):
|
def get_all_data_from_database(base_url, api_key, database_id):
|
||||||
tables = get_all_tables_from_database(database_id)
|
tables = get_all_tables_from_database(base_url, api_key, database_id)
|
||||||
data = {}
|
data = {}
|
||||||
|
|
||||||
for table in tables:
|
for table in tables:
|
||||||
table_id = table['id']
|
table_id = table['id']
|
||||||
table_name = table['name']
|
table_name = table['name']
|
||||||
data[table_name] = get_all_rows_from_table(table_id)
|
data[table_name] = get_all_rows_from_table(base_url, api_key, table_id)
|
||||||
|
|
||||||
return data
|
return data
|
||||||
|
|
||||||
database_id = "YOUR_DATABASE_ID"
|
if __name__ == "__main__":
|
||||||
all_data = get_all_data_from_database(database_id)
|
parser = argparse.ArgumentParser(description="Fetch all data from a Baserow database.")
|
||||||
|
parser.add_argument("base_url", help="Base URL of your Baserow instance, e.g., https://YOUR_BASEROW_INSTANCE_URL/api/")
|
||||||
|
parser.add_argument("api_key", help="Your Baserow API key.")
|
||||||
|
parser.add_argument("database_id", help="ID of the Baserow database you want to fetch data from.")
|
||||||
|
|
||||||
|
args = parser.parse_args()
|
||||||
|
|
||||||
|
all_data = get_all_data_from_database(args.base_url, args.api_key, args.database_id)
|
||||||
print(all_data)
|
print(all_data)
|
||||||
|
Loading…
Reference in New Issue
Block a user