Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add OAuth2 Support #15 #23

Merged
merged 12 commits into from
May 4, 2018
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ install:
- pip install -U tox-travis
- pip install coverage
- pip install requests
- pip install tinydb
language: python
python:
- pypy3
Expand Down
14 changes: 3 additions & 11 deletions Pipfile
Original file line number Diff line number Diff line change
@@ -1,30 +1,22 @@
[[source]]

url = "https://pypi.python.org/simple"
verify_ssl = true
name = "pypi"

[dev-packages]

bumpversion = ">=\"0.5.3\""
watchdog = ">=\"0.8.3\""
"flake8" = ">=\"2.6.0\""
tox = ">=\"2.3.1\""
coverage = ">=\"4.1\""
sphinx = ">=\"1.4.8\""
cryptography = ">=\"1.7\""
pyyaml = ">=\"3.11\""
Sphinx = ">=\"1.4.8\""
PyYAML = ">=\"3.11\""
pytest = ">=\"2.9.2\""
pytest-runner = ">=\"2.11.1\""


[packages]

requests = "*"
pyopenssl = "*"
requests-oauthlib = "*"

tinydb = "*"

[requires]

python_version = "3.6"
255 changes: 64 additions & 191 deletions Pipfile.lock

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions pancloud/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
UnexpectedKwargsError, RequiredKwargsError
from .httpclient import HTTPClient
from .logging import LoggingService
from .credentials import Credentials

__author__ = 'Palo Alto Networks'
__version__ = '1.0.3'
Loading