Metadata-Version: 2.1
Name: thehive4py
Version: 2.0.0b1
Summary: Python client for TheHive5
Home-page: UNKNOWN
Author: Szabolcs Antal
Author-email: antalszabolcs01@gmail.com
License: AGPL-V3
Keywords: thehive api rest client
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Provides-Extra: lint
Provides-Extra: test
Provides-Extra: dev
License-File: LICENSE

<div>
  <p align="center">
    <img src="https://thehive-project.org/img/logo.png" width="700"/>  
  </p>
</div>
<div>
  <p align="center">
    <a href="https://chat.thehive-project.org" target"_blank">
      <img src="https://img.shields.io/discord/779945042039144498" alt="Discord">
    </a>
    <a href="./LICENSE" target"_blank">
      <img src="https://img.shields.io/github/license/TheHive-Project/TheHive4py" alt="License">
    </a>
    <a href="https://pypi.org/project/thehive4py" target"_blank">
      <img src="https://img.shields.io/pypi/dm/thehive4py" alt="Pypi page">
    </a>
  </p>
</div>


# thehive4py

    IMPORTANT: The library is still under development and is in beta phase. Use it with caution and expect breaking changes before the first stable release!

Rebooted version of thehive4py for TheHive5! Stay tuned, more to come!

## Development

You can setup a venv (see the [official docs for this](https://docs.python.org/3/tutorial/venv.html):

```
# Create and activate venv
python3 -m venv <path_of_venv>
source <path_of_venv>/bin/activate
```

Install the dev dependencies for the project
```
pip install -e '.[dev]'
```


