Metadata-Version: 2.1
Name: tigitaalconnect
Version: 0.0.6
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 :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown
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 login

user = login(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)

```



# FORUM:



## Setup

```python

from  tigitaalconnect import forum

```

## Messages Request

```python

forum.messages(forumid)

```

## Threads Request

```python

forum.threads(forumid)

```

## Post Request

```python

forum.post(user, text, forumid)

# user is the variable you created earlier to login

```

## Edit Request

```python

forum.edit(user, text, forumid, messageid)

```

## All Request

```python

forum.all()

```

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 Login Class
- Easier setup
- Bug Fixes
- README now a Markdown File

0.0.6 (10/08/2022)
------------------
- Sixth Release
- Added Forum Class
- Bug Fixes
- README updated
