-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15 from JWCook/feature/add-taxa-endpoints
Add taxa endpoints
- Loading branch information
Showing
14 changed files
with
3,112 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,7 @@ Development Lead | |
Contributors | ||
------------ | ||
|
||
* Jordan Cook | ||
* Peter Desmet | ||
* Stijn Van Hoey | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# -*- coding: utf-8 -*- | ||
import logging | ||
|
||
__author__ = "Nicolas Noé" | ||
__email__ = "[email protected]" | ||
|
@@ -7,3 +7,6 @@ | |
DEFAULT_USER_AGENT = "Pyinaturalist/{version}".format(version=__version__) | ||
|
||
user_agent = DEFAULT_USER_AGENT | ||
|
||
# Enable logging for urllib and other external loggers | ||
logging.basicConfig(level="DEBUG") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,10 +25,23 @@ | |
author="Nicolas Noé", | ||
author_email="[email protected]", | ||
url="https://github.com/niconoe/pyinaturalist", | ||
packages=["pyinaturalist",], | ||
packages=["pyinaturalist"], | ||
package_dir={"pyinaturalist": "pyinaturalist"}, | ||
include_package_data=True, | ||
install_requires=["requests>=2.21.0", "typing>=3.7.4"], | ||
extras_require={ | ||
"dev": [ | ||
"black", | ||
"flake8", | ||
"mypy", | ||
"pytest", | ||
"requests-mock>=1.7", | ||
"Sphinx", | ||
"sphinx-autodoc-typehints", | ||
"sphinx-rtd-theme", | ||
"tox", | ||
] | ||
}, | ||
license="MIT", | ||
zip_safe=False, | ||
keywords="pyinaturalist", | ||
|
Oops, something went wrong.