https://github.com/securisec/mixto-py
https://github.com/securisec/mixto-py
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/securisec/mixto-py
- Owner: securisec
- License: gpl-3.0
- Created: 2020-12-10T02:14:39.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2024-07-29T22:23:06.000Z (almost 2 years ago)
- Last Synced: 2025-05-21T18:14:31.416Z (about 1 year ago)
- Language: Python
- Size: 85.9 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# mixto-py
The python library for Mixto.
## Install
```
pip install mixto-py
```
For dev instances, clone this repo and run from inside of the directory:
```
pip install -e .
```
## Usage
```py
from mixto import Mixto
```
The main class can be instantiated in two ways:
```py
m = Mixto()
# or
m = Mixto(host="https://mixto_host", api_key="youapikey")
```
## Example
```py
from mixto import Mixto
m = Mixto()
```