PRSAW, an acronym for Python Random Stuff API Wrapper
, is a wrapper for the Random Stuff API.
PyPI: https://pypi.org/project/prsaw/
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
# import the module
from prsaw import RandomStuffV2
# 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()
# 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()
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)
You can specify the server in RandomStuffV4 if you want
server = "Can be primary/backup/unstable"
rs = RandomStuffV4(api_key = api_key, server=server)
You can also pass dev_name
, bot_name
and ai_language
as paramaters to RandomStuffV3 or RandomStuffV4.
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
- Register API key - Click Here
- Documentation/Endpoints - Click Here