A reimplementation of auk in Python.
Note that this is not a direct port: aukpy does not use awk
to access data. Instead it provides a similar API, but uses sqlite to index and query the dataset.
For detailed usage, see the full documentation
To load and filter a set of eBird observations stored in observations.txt
:
from aukpy import db, queries
db_conn = db.build_db_pandas('observations.txt')
df = queries.species('Sturnus vulgaris').run(db_conn)