Skip to content

gtalarico/pyairtable

Repository files navigation

pyAirtable (formerly airtable-python-wrapper)

CI PyPI PyPI Downloads Documentation Status codecov

Python client for the Airtable API.

Installing

pip install pyairtable

Documentation

Read the full documentation on pyairtable.readthedocs.io.

If you're still using airtable-python-wrapper and want to upgrade, read the migration guide.

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. 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.

% make setup
% make test

Reporting a bug

We encourage anyone to submit an issue 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 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 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.

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. 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!