Metadata-Version: 2.1
Name: h1
Version: 1.4.2
Summary: A HackerOne API client for Python
Home-page: https://github.com/uber-common/h1-python
Author: Uber Product Security
License: MIT
Platform: UNKNOWN
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Software Development :: Libraries
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
License-File: LICENSE
Requires-Dist: requests (<3.0,>2.4)
Requires-Dist: requests-futures
Requires-Dist: python-dateutil

.. role:: python(code)
   :language: python

==
h1
==

.. image:: https://img.shields.io/pypi/pyversions/h1.svg
.. image:: https://img.shields.io/pypi/v/h1.svg
    :target: https://pypi.python.org/pypi/h1


A HackerOne API client for Python. The API closely maps to the REST API that HackerOne provides.
Documentation for their API is `available here <https://api.hackerone.com/docs/v1>`_.

=======
License
=======

MIT

============
Installation
============

For installation via pip:

.. code-block:: bash

    pip install h1

For development, In the project root run:

.. code-block:: bash

    virtualenv env
    source env/bin/activate
    make bootstrap

The manual approach should work as well:

.. code-block:: bash

    python setup.py install

========
Examples
========

-----------------------
Initializing the Client
-----------------------

.. code-block:: python

    >>> from h1.client import HackerOneClient
    >>> from h1.models import Report
    >>> c = HackerOneClient("YOUR-API-TOKEN-IDENTIFIER", "YOUR-API-TOKEN")

-------------------------------------------
Getting all reports created in the last day
-------------------------------------------

:python:`HackerOneClient.find_resources()` allows you to specify a resource to find (only :python:`Report` is
supported for now) and some criteria to filter on. The only *required* filter is :python:`program`, which
must be set to the target HackerOne program's name. Any additional filters may be passed as kwargs,
and everything in `HackerOne's filter documentation <https://api.hackerone.com/docs/v1#/reports/query>`_
should be supported.

For example, here's how we'd get all reports created in the past 24 hours:

.. code-block:: python

    >>> import datetime as dt
    >>> day_ago = dt.datetime.now() - dt.timedelta(days=1)
    >>> listing = c.find_resources(Report, program=["test-program"], created_at__gt=day_ago)
    >>> len(listing)
    3
    >>> listing[0].title
    u'This is a test report!'

-----------------------------------------
Getting all resolved reports in a program
-----------------------------------------

Similarly, if we filter on :python:`state` we can get all the :python:`resolved` reports:

.. code-block:: python

    >>> resolved_listing = c.find_resources(Report, program=["test-program"], state=["resolved"])
    >>> resolved_listing[0].title

-------------------------------
Getting a specific report by ID
-------------------------------

:python:`HackerOneClient.get_resource()` allows you to pass a resource type (again, currently just :python:`Report`,)
and an ID to fetch:

.. code-block:: python

    >>> report = c.get_resource(Report, 110306)
    >>> report.title
    u'Test RCE SQLi'
    >>> report.state
    u'not-applicable'

------------------------------
Tallying report counts by user
------------------------------

Here's an example of using the client to figure out who your most prolific reporters are:

.. code-block:: python

    >>> from collections import Counter
    >>> reporter_count = Counter()
    >>> all_reports = c.find_resources(Report, program=["test-program"])
    >>> for report in all_reports:
    ...     reporter_count[report.reporter] += 1
    ...
    >>> print(reporter_count)
    Counter({<User - bestreporter>: 21, <User - another_reporter>: 12, <User - r3p0rt3r>: 2, <User - newbie>: 1})

=============
Running Tests
=============

.. code-block:: bash

    virtualenv env
    source env/bin/activate
    make bootstrap
    make test

