2018-09-10 13:01:47 +02:00
|
|
|
# Quintal Grabber
|
2018-09-10 13:16:53 +02:00
|
|
|
|
2019-01-07 11:24:20 +01:00
|
|
|
*Get Data from Quintal Private API*
|
2018-09-10 13:16:53 +02:00
|
|
|
|
2019-01-07 11:24:20 +01:00
|
|
|
## Installation
|
|
|
|
|
|
|
|
Installation is simple. It can be installed from pip using the following command:
|
|
|
|
```sh
|
|
|
|
$ pip3 install -r requirements.txt
|
|
|
|
```
|
2018-09-10 13:16:53 +02:00
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
```sh
|
2019-01-07 11:24:20 +01:00
|
|
|
from Quintal import QuintalGrabber
|
|
|
|
|
|
|
|
id = 123456
|
|
|
|
quintal = QuintalGrabber(id)
|
|
|
|
#x = quintal.get_data("email")
|
|
|
|
x = quintal.get_data()
|
|
|
|
print (x)
|
2018-09-10 13:16:53 +02:00
|
|
|
```
|
|
|
|
|
2019-01-07 11:24:20 +01:00
|
|
|
## Credit
|
2018-09-10 13:16:53 +02:00
|
|
|
|
2019-01-18 19:40:45 +01:00
|
|
|
Moe Poi ~ / [@moepoi](https://github.com/moepoi)
|