Skip to content

A simple python wrapper for the baserow API

License

Notifications You must be signed in to change notification settings

LaborBerlin/simple_baserow_api

 
 

Repository files navigation

simple_baserow_api

codecov CI

Awesome simple_baserow_api created by KuechlerO

Install it from PyPI

pip install simple_baserow_api

Usage

from simple_baserow_api import BaserowApi

# Initialize the API
api = BaserowApi(database_url="https://your-baserow-instance.com", token="your-token")

# Get fields for a table
fields = api.get_fields(table_id=1)
print(fields)

# Add a new row to a table
new_row_id = api.add_data(table_id=1, data={"field_name": "value"})
print(f"New row ID: {new_row_id}")

# Retrieve data from a table
data = api.get_data(table_id=1)
print(data)

Development

Read the CONTRIBUTING.md file.


Thank you for using simple_baserow_api! If you encounter any issues or have any questions, please open an issue on our GitHub repository.

About

A simple python wrapper for the baserow API

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 88.3%
  • Makefile 11.5%
  • Dockerfile 0.2%