├── .arclint ├── .coveragerc ├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── h1 ├── __init__.py ├── client.py ├── lazy_listing.py └── models.py ├── requirements-test.in ├── requirements-test.txt ├── requirements.in ├── requirements.txt ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── resources ├── activity-agreed-on-going-public.json ├── activity-bounty-awarded.json ├── activity-bounty-suggested.json ├── activity-bug-cloned.json ├── activity-bug-duplicate.json ├── activity-bug-informative.json ├── activity-bug-needs-more-info.json ├── activity-bug-new.json ├── activity-bug-not-applicable.json ├── activity-bug-reopened.json ├── activity-bug-resolved.json ├── activity-bug-spam.json ├── activity-bug-triaged.json ├── activity-comment.json ├── activity-comments-closed.json ├── activity-external-user-invitation-cancelled.json ├── activity-external-user-invited.json ├── activity-external-user-joined.json ├── activity-external-user-removed.json ├── activity-group-assigned-to-bug.json ├── activity-hacker-requested-mediation.json ├── activity-manually-disclosed.json ├── activity-mediation-requested.json ├── activity-not-eligible-for-bounty.json ├── activity-reference-id-added.json ├── activity-report-became-public.json ├── activity-report-severity-updated.json ├── activity-report-title-updated.json ├── activity-report-vulnerability-types-updated.json ├── activity-swag-awarded.json ├── activity-user-assigned-to-bug.json ├── activity-user-banned-from-program.json ├── address.json ├── attachment.json ├── bounty.json ├── group.json ├── program.json ├── report-summary.json ├── report.json ├── responses │ ├── report-list-onepage.json │ ├── report-list-twopage-0.json │ ├── report-list-twopage-1.json │ └── report.json ├── swag.json ├── user.json └── vulnerability-type.json ├── test_client.py ├── test_lazy_listing.py └── test_models.py /.arclint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/.arclint -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/README.rst -------------------------------------------------------------------------------- /h1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/h1/__init__.py -------------------------------------------------------------------------------- /h1/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/h1/client.py -------------------------------------------------------------------------------- /h1/lazy_listing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/h1/lazy_listing.py -------------------------------------------------------------------------------- /h1/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/h1/models.py -------------------------------------------------------------------------------- /requirements-test.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/requirements-test.in -------------------------------------------------------------------------------- /requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/requirements-test.txt -------------------------------------------------------------------------------- /requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/requirements.in -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/resources/activity-agreed-on-going-public.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/tests/resources/activity-agreed-on-going-public.json -------------------------------------------------------------------------------- /tests/resources/activity-bounty-awarded.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/tests/resources/activity-bounty-awarded.json -------------------------------------------------------------------------------- /tests/resources/activity-bounty-suggested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/tests/resources/activity-bounty-suggested.json -------------------------------------------------------------------------------- /tests/resources/activity-bug-cloned.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/tests/resources/activity-bug-cloned.json -------------------------------------------------------------------------------- /tests/resources/activity-bug-duplicate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/tests/resources/activity-bug-duplicate.json -------------------------------------------------------------------------------- /tests/resources/activity-bug-informative.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/tests/resources/activity-bug-informative.json -------------------------------------------------------------------------------- /tests/resources/activity-bug-needs-more-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/tests/resources/activity-bug-needs-more-info.json -------------------------------------------------------------------------------- /tests/resources/activity-bug-new.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/tests/resources/activity-bug-new.json -------------------------------------------------------------------------------- /tests/resources/activity-bug-not-applicable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/tests/resources/activity-bug-not-applicable.json -------------------------------------------------------------------------------- /tests/resources/activity-bug-reopened.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/tests/resources/activity-bug-reopened.json -------------------------------------------------------------------------------- /tests/resources/activity-bug-resolved.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/tests/resources/activity-bug-resolved.json -------------------------------------------------------------------------------- /tests/resources/activity-bug-spam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/tests/resources/activity-bug-spam.json -------------------------------------------------------------------------------- /tests/resources/activity-bug-triaged.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/tests/resources/activity-bug-triaged.json -------------------------------------------------------------------------------- /tests/resources/activity-comment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/tests/resources/activity-comment.json -------------------------------------------------------------------------------- /tests/resources/activity-comments-closed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/tests/resources/activity-comments-closed.json -------------------------------------------------------------------------------- /tests/resources/activity-external-user-invitation-cancelled.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/tests/resources/activity-external-user-invitation-cancelled.json -------------------------------------------------------------------------------- /tests/resources/activity-external-user-invited.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/tests/resources/activity-external-user-invited.json -------------------------------------------------------------------------------- /tests/resources/activity-external-user-joined.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/tests/resources/activity-external-user-joined.json -------------------------------------------------------------------------------- /tests/resources/activity-external-user-removed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/tests/resources/activity-external-user-removed.json -------------------------------------------------------------------------------- /tests/resources/activity-group-assigned-to-bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/tests/resources/activity-group-assigned-to-bug.json -------------------------------------------------------------------------------- /tests/resources/activity-hacker-requested-mediation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/tests/resources/activity-hacker-requested-mediation.json -------------------------------------------------------------------------------- /tests/resources/activity-manually-disclosed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/tests/resources/activity-manually-disclosed.json -------------------------------------------------------------------------------- /tests/resources/activity-mediation-requested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/tests/resources/activity-mediation-requested.json -------------------------------------------------------------------------------- /tests/resources/activity-not-eligible-for-bounty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/tests/resources/activity-not-eligible-for-bounty.json -------------------------------------------------------------------------------- /tests/resources/activity-reference-id-added.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/tests/resources/activity-reference-id-added.json -------------------------------------------------------------------------------- /tests/resources/activity-report-became-public.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/tests/resources/activity-report-became-public.json -------------------------------------------------------------------------------- /tests/resources/activity-report-severity-updated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/tests/resources/activity-report-severity-updated.json -------------------------------------------------------------------------------- /tests/resources/activity-report-title-updated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/tests/resources/activity-report-title-updated.json -------------------------------------------------------------------------------- /tests/resources/activity-report-vulnerability-types-updated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/tests/resources/activity-report-vulnerability-types-updated.json -------------------------------------------------------------------------------- /tests/resources/activity-swag-awarded.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/tests/resources/activity-swag-awarded.json -------------------------------------------------------------------------------- /tests/resources/activity-user-assigned-to-bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/tests/resources/activity-user-assigned-to-bug.json -------------------------------------------------------------------------------- /tests/resources/activity-user-banned-from-program.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/tests/resources/activity-user-banned-from-program.json -------------------------------------------------------------------------------- /tests/resources/address.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/tests/resources/address.json -------------------------------------------------------------------------------- /tests/resources/attachment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/tests/resources/attachment.json -------------------------------------------------------------------------------- /tests/resources/bounty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/tests/resources/bounty.json -------------------------------------------------------------------------------- /tests/resources/group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/tests/resources/group.json -------------------------------------------------------------------------------- /tests/resources/program.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/tests/resources/program.json -------------------------------------------------------------------------------- /tests/resources/report-summary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/tests/resources/report-summary.json -------------------------------------------------------------------------------- /tests/resources/report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/tests/resources/report.json -------------------------------------------------------------------------------- /tests/resources/responses/report-list-onepage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/tests/resources/responses/report-list-onepage.json -------------------------------------------------------------------------------- /tests/resources/responses/report-list-twopage-0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/tests/resources/responses/report-list-twopage-0.json -------------------------------------------------------------------------------- /tests/resources/responses/report-list-twopage-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/tests/resources/responses/report-list-twopage-1.json -------------------------------------------------------------------------------- /tests/resources/responses/report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/tests/resources/responses/report.json -------------------------------------------------------------------------------- /tests/resources/swag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/tests/resources/swag.json -------------------------------------------------------------------------------- /tests/resources/user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/tests/resources/user.json -------------------------------------------------------------------------------- /tests/resources/vulnerability-type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/tests/resources/vulnerability-type.json -------------------------------------------------------------------------------- /tests/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/tests/test_client.py -------------------------------------------------------------------------------- /tests/test_lazy_listing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/tests/test_lazy_listing.py -------------------------------------------------------------------------------- /tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-archive/h1-python/HEAD/tests/test_models.py --------------------------------------------------------------------------------