Skip to content

Commit

Permalink
Merge pull request #23 from sserrata/feature-credentials
Browse files Browse the repository at this point in the history
Add OAuth2 Support #15
  • Loading branch information
sserrata committed May 4, 2018
2 parents 49b4092 + 643ecde commit 13024a3
Show file tree
Hide file tree
Showing 9 changed files with 481 additions and 203 deletions.
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

0 comments on commit 13024a3

Please sign in to comment.