Metadata-Version: 2.1
Name: tigitaalconnect
Version: 0.0.5
Summary: Tigitaal's Official Python Package to connect with TigitaalAPI
Author: Ninjagor
Author-email: ninjagor.spoon@gmail.com
Keywords: python,first package
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Education
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
License-File: LICENCE.txt

# **TigitaalConnect**
The official Python Library to connect with the TigitaalAPI! This library helps easily send requests
to the API, so you dont have to do the hard work of manually setting up requests.
Use a range of easy-to-use functions and explore the endless posibilities of the TigitaalAPI with 
TigitalConnect!


## INSTALLATION:

`pip install tigitaalconnect`


## SETUP:

### UserConnect: 
```python
from  tigitaalconnect import UserConnect
user = UserConnect(username, password)
# Enter your username and password in the parantheses
```

# REQUESTS:

## Reload Request:
```python
user.reload()
```
## ReloadAdvanced Request: 
```python
user.reloadadvanced()
```
## PFP Request:
```python
user.pfp(fileid)
```
## Nickname Request:
```python
user.nickname(new_nickname)
```
## Mail Request:
```python
user.mail(new_email)
```

Change Log
==========

0.0.1 (09/29/2022)
------------------
- First Release
- 5 easy to use Requests to manipulate the TigitaalAPI

0.0.2 (09/30/2022)
------------------
- Second Release
- Commands now return info as JSON
- README.txt Updated

0.0.3 (09/30/2022)
------------------
- Third Release (Mini release)
- Bug Fixes

0.0.4 (09/30/2022)
------------------
- Fourth Release (Mini release)
- More Bug Fixes
- Fixed Formatting Errors

0.0.5 (10/05/2022)
------------------
- Fifth Release
- Added UserConnect Class
- Easier setup
- Bug Fixes
- README now a Markdown File
