Metadata-Version: 2.1
Name: simple-torn-wrapper
Version: 0.0.3
Summary: A simple wrapper for the Torn API
Home-page: https://github.com/SolitudalDeveloper/SimpleTorn
Author: Solitudal Developer
Author-email: innominatusofficial@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/SolitudalDeveloper/SimpleTorn/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: requests

## Simple Torn Wrapper

A simple basis wrapper for the torn API. Handles sending and converting the response into a Python dictionary.

An example of the usage:
```python
from simple_torn_wrapper import TornWrapper
wrapper = TornWrapper(api_key='API_KEY')  # Find your API key in Torn
selections = ['selection1','selection2']  # Examples of selections are listed in the Torn API.
section = 'user'  # Other sections can be found in Torn API
data = wrapper.request(section, id, selections)
```

These can be chosen from the API as referenced on: https://www.torn.com/api.html#.
Section is one of the 6 main categories and selections should be a list of strings. 

Any issues or help required:

Discord @ https://discord.gg/myTajWNU6q

or by issue @ https://github.com/SolitudalDeveloper/SimpleTorn/issues

or by email @ innominatusofficial@gmail.com


