ebird-api
ebird-api copied to clipboard
A wrapper for the public API to the eBird database.
documentation changes only minor clarification and typo fixes for the readme
I found out that while trying to get taxonomy in other languages such as fr, the variable sppLocale is not working. replacing it with locale works as it should.
Bumps [cryptography](https://github.com/pyca/cryptography) from 3.1 to 39.0.1. Changelog Sourced from cryptography's changelog. 39.0.1 - 2023-02-07 * **SECURITY ISSUE** - Fixed a bug where ``Cipher.update_into`` accepted Python buffer protocol objects, but allowed...
Bumps [certifi](https://github.com/certifi/python-certifi) from 2020.6.20 to 2022.12.7. Commits 9e9e840 2022.12.07 b81bdb2 2022.09.24 939a28f 2022.09.14 aca828a 2022.06.15.2 de0eae1 Only use importlib.resources's new files() / Traversable API on Python ≥3.11 ... b8eb5e9 2022.06.15.1...
Bumps [py](https://github.com/pytest-dev/py) from 1.9.0 to 1.10.0. Changelog Sourced from py's changelog. 1.10.0 (2020-12-12) Fix a regular expression DoS vulnerability in the py.path.svnwc SVN blame functionality (CVE-2020-29651) Update vendored apipkg: 1.4...
This PR addresses #25 which I created. I needed to get the first observation of a taxa on the date specified for `get_historic_observations`. This functionality is provided in the eBird...
This is a handy wrapper of the API! Currently, get_historic_observations has the rank hard-coded as "mrec" without being able to pass "create." It would be nice if this were an...
Thanks for implementing this package! From a look at the eBird API, I can see API methods to - get species list from region code - get recent observations from...
I'm not sure how this happened, but a simple `pip install` command on August 24, 2025 led to ``` Downloading ebird_api-4.0.0-py3-none-any.whl.metadata (12 kB) Downloading ebird_api-4.0.0-py3-none-any.whl (26 kB) Installing collected packages:...
Fix issue #27 by changing regex from: ``` re.match(r"^[A-Z]{2}-[A-Z0-9]{2,3}-[A-Z0-9]{2,3}$", value) ``` to ``` re.match(r"^[A-Z]{2}-[A-Z0-9]{1,3}-[A-Z0-9]{2,3}$", value) ``` Closes #27