Skip to main content

PyOpenFisheries makes it even easier to access the OpenFisheries API in Python. A good usecase of this library is to gather data to plot in a Jupyter Notebook, or to collect data to run time-series analysis on.

Project description

PyOpenFisheries makes it even easier to access the OpenFisheries API in Python.

A good usecase of this library is to gather data to plot in a Jupyter Notebook, or to collect data to run time-series analysis on.

Learn more about OpenFisheries.org.

PyOpenFisheries(**kwargs)

Bases: object

Base class for accessing the OpenFisheries API. Useful for gathering data for plots or analysis.

Returns:

instance: base OpenFisheries API wrapper

Examples:

>>> open_fish_conn = PyOpenFisheries()
>>> skipjack_tuna = open_fish_conn.annual_landings(species="SKJ").filter_years(start_year=1970,end_year=1991)
>>> print(skipjack_tuna.landings)
[{'year': 1970, 'catch': 402166}...{'year': 1991, 'catch': 1575170}]
>>> print(skipjack_tuna.summarize())
Landings of SKJ globally from 1970 to 1991

Attributes:

landings: List of dictionaries containing the year and landing count.
species: if present - three-letter ASFIS species code (i.e. “SKJ” - Skipjack Tuna).
country: if present - ISO-3166 alpha 3 country code (i.e. “USA” - United States).
start_year: if present - start year of filtered landings data.
end_year : if present - end year of filtered landings data.

annual_landings(species=None, country=None)

Gathers annual fishery landings filtered by either species or country. If neither fish nor country are specified, then this will return global aggregate landings data.

Args:

species: three-letter ASFIS species code (i.e. “SKJ” - Skipjack Tuna)
country: ISO-3166 alpha 3 country code (i.e. “USA” - United States)

Returns:

instance: PyOpenFisheries instance with landings populated

filter_years(start_year=1950, end_year=2018)

Filters annual fishing data to within a time-frame.

Args:

start_year: 4 digit integer year (i.e. 1980)
end_year: 4 digit integer year (i.e. 2015)

Returns:

instance: PyOpenFisheries instance with years filtered.

summarize()

Summarizes what has been returned from OpenFisheries.

label()

Useful as a legend / for plots.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

PyOpenFisheries-0.1.2.tar.gz (7.4 kB view hashes)

Uploaded Source

Built Distribution

PyOpenFisheries-0.1.2-py3-none-any.whl (12.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page