Metadata-Version: 2.1
Name: PyHackTheBox
Version: 0.0.2
Summary: A wrapper for the Hack The Box API.
Home-page: UNKNOWN
Author: clubby789@github.com
Author-email: clubby789@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: requests (==2.25.1)

# PyHackTheBox
[![Run Tests](https://github.com/clubby789/htb-api/actions/workflows/tests.yml/badge.svg?branch=master)](https://github.com/clubby789/htb-api/actions/workflows/tests.yml)
[![codecov](https://codecov.io/gh/clubby789/htb-api/branch/master/graph/badge.svg?token=NPoxQPqdyN)](https://codecov.io/gh/clubby789/htb-api)
[![Documentation Status](https://readthedocs.org/projects/pyhackthebox/badge/?version=latest)](https://pyhackthebox.readthedocs.io/en/latest/?badge=latest)
[![PyPI version](https://badge.fury.io/py/PyHackTheBox.svg)](https://badge.fury.io/py/PyHackTheBox)

PyHackTheBox is an unofficial Python library to interact with the Hack The Box API.


## Install
```bash
$ pip install pyhackthebox
```

## Demo
```py
from hackthebox import HTBClient
# Create an API connection
client = HTBClient(email="user@example.com", password="S3cr3tP455w0rd!")
# Print the User associated with the client
print(client.user)
```

## Documentation

The documentation is available [here](https://pyhackthebox.readthedocs.io/en/latest/).

