PRSAW, an acronym for `Python Random Stuff API Wrapper`, is a wrapper for the Random Stuff API.
Project description
PRSAW 0.4.0
PRSAW, an acronym for Python Random Stuff API Wrapper
, is a wrapper for the Random Stuff API.
PyPI: https://pypi.org/project/prsaw/
Installation
You can install released versions of prsaw from the Python Package Index with pip or a similar tool:
Stable Release: pip install prsaw
Working Version: pip install git+https://github.com/CodeWithSwastik/prsaw.git
Example Usage (No API KEY)
# import the module
from prsaw import RandomStuff
# initiate the object
rs = RandomStuffV2()
# get a response from an endpoint
response = rs.get_ai_response("How are you?")
print(response)
# close the object once done (recommended)
rs.close()
Example async usage (With an API key)
# import the module
from prsaw import RandomStuff
# initiate the object with async mode
api_key = "Your API Key"
rs = RandomStuff(async_mode = True, api_key = api_key)
# get a joke
joke = await rs.get_joke()
print(joke)
# close the session
await rs.aclose()
Plans
If you've purchased a premium plan you can pass that as a paramater to RandomStuffV3 or RandomStuffV4
plan = "Can be pro/biz/mega/ultra"
rs = RandomStuffV4(api_key = api_key, plan=plan)
Server (V4)
You can specify the server in RandomStuffV4 if you want
server = "Can be primary/backup/unstable"
rs = RandomStuffV4(api_key = api_key, server=server)
Misc
You can also pass dev_name
, bot_name
and ai_language
as paramaters to RandomStuffV3 or RandomStuffV4.
Functions available
The current list of asynchronous functions available are:
# endpoints
await get_joke(_type) # Refer to https://api.pgamerx.com/endpoints
await get_image(_type) # for all the endpoints
await get_ai_response(msg)
# others
await aclose() # closes the object
Important Links
- Register API key - Click Here
- Documentation/Endpoints - Click Here
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file prsaw-0.4.0.tar.gz
.
File metadata
- Download URL: prsaw-0.4.0.tar.gz
- Upload date:
- Size: 4.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.10.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9a6cf9516829d67d1d81274990cf26a51dbe0aacfb1c95e697c40cfcd0ead379 |
|
MD5 | fdc2cf3063e3da1155a5a21f1fe2f8cb |
|
BLAKE2b-256 | 3fc2bfb3ee30541a147cc05d0f206cbb33bf23165d7dbc10d5e9dbabd2f083d1 |