Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gtalarico/pyairtable
Python Api Client for Airtable
https://github.com/gtalarico/pyairtable
airtable api api-wrapper client python
Last synced: 4 days ago
JSON representation
Python Api Client for Airtable
- Host: GitHub
- URL: https://github.com/gtalarico/pyairtable
- Owner: gtalarico
- License: mit
- Created: 2017-08-06T00:44:09.000Z (over 7 years ago)
- Default Branch: main
- Last Pushed: 2024-12-06T19:31:51.000Z (about 2 months ago)
- Last Synced: 2025-01-14T19:24:56.039Z (18 days ago)
- Topics: airtable, api, api-wrapper, client, python
- Language: Python
- Homepage: https://pyairtable.readthedocs.io
- Size: 7.73 MB
- Stars: 800
- Watchers: 20
- Forks: 138
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# pyAirtable (formerly airtable-python-wrapper)
![CI](https://github.com/gtalarico/pyairtable/actions/workflows/test_lint_deploy.yml/badge.svg)
[![PyPI](https://img.shields.io/pypi/v/pyairtable.svg)](https://pypi.org/project/pyairtable/)
[![PyPI Downloads](https://img.shields.io/pypi/dm/pyairtable.svg?label=downloads)](https://pypi.org/project/pyairtable/)
[![Documentation Status](https://readthedocs.org/projects/pyairtable/badge/?version=latest)](http://pyairtable.readthedocs.io/en/latest/?badge=latest)
[![codecov](https://codecov.io/gh/gtalarico/pyairtable/branch/main/graph/badge.svg?token=askmZgmMoV)](https://codecov.io/gh/gtalarico/pyairtable)Python client for the Airtable API.
## Installing
```
pip install pyairtable
```## Documentation
Read the full documentation on [pyairtable.readthedocs.io](https://pyairtable.readthedocs.io/en/stable/getting-started.html).
If you're still using airtable-python-wrapper and want to upgrade, read the [migration guide](https://pyairtable.readthedocs.io/en/stable/migrations.html).
## Contributing
Everyone who has an idea or suggestion is welcome to contribute! As maintainers, we expect our community of users and contributors to adhere to the guidelines and expectations set forth in the [Contributor Covenant](https://www.contributor-covenant.org/version/2/1/code_of_conduct/). Be kind and empathetic, respect differing opinions, and stay focused on what is best for the community.
### Getting started
If it's your first time working on this library, clone the repo, set up pre-commit hooks, and make sure you can run tests (and they pass). If that doesn't work out of the box, please check your local development environment before filing an issue.
```sh
% make setup
% make test
```### Reporting a bug
We encourage anyone to [submit an issue](https://github.com/gtalarico/pyairtable/issues/new) to let us know about bugs, as long as you've followed these steps:
1. Confirm you're on the latest version of the library and you can run the test suite locally.
2. Check [open issues](https://github.com/gtalarico/pyairtable/issues) to see if someone else has already reported it.
3. Provide as much context as possible, i.e. expected vs. actual behavior, steps to reproduce, and runtime environment.
4. If possible, reproduce the problem in a small example that you can share in the issue summary.We ask that you _never_ report security vulnerabilities to the GitHub issue tracker. Sensitive issues of this nature must be sent directly to the maintainers via email.
### Submitting a patch
Anyone who uses this library is welcome to [submit a pull request](https://github.com/gtalarico/pyairtable/pulls) for a bug fix or a new feature. We do ask that all pull requests adhere to the following guidelines:
1. Public functions/methods have docstrings and type annotations.
2. New functionality is accompanied by clear, descriptive unit tests.
3. You can run `make test && make docs` successfully.
4. You have [signed your commits](https://docs.github.com/en/authentication/managing-commit-signature-verification/about-commit-signature-verification).If you want to discuss an idea you're working on but haven't yet finished all of the above, please [open a draft pull request](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests#draft-pull-requests). That will be a clear signal that you're not asking to merge your code (yet) and are just looking for discussion or feedback.
Thanks in advance for sharing your ideas!