An easy to use & feature-rich python API wrapper for Random Stuff API.
Project description
randomstuff.py
An easy to use, feature rich, highly customisable and async pythonic API wrapper for the Random Stuff API.
Features
- Easy-to-use & Organized
- Designed to be as optimized as possible
- Implements the entire API including all supported versions
- Supports both async and sync
- Supports all type of API plans
- All classes are well documented
- Actively maintained, Remains up-to-date with all updates.
Installation
Installation can be done easily using the python package manager pip
pip install randomstuff.py
Quickstart
Firstly make sure to get the API key from here
Here are few examples to get you started.
Getting AI response
import randomstuff
with randomstuff.Client(api_key='api-key-here') as client:
response = client.get_ai_response("Hi there")
print(response.message)
Getting random joke
import randomstuff
with randomstuff.Client(api_key='api-key-here') as client:
joke = client.get_joke(type="any")
print(response.joke)
Getting random image
import randomstuff
with randomstuff.Client(api_key='api-key-here') as client:
image = client.get_image(type="any")
print(response)
Getting weather
import randomstuff
with randomstuff.Client(api_key='api-key-here') as client:
weather = client.get_weather("new york")
# print(weather) # Uncomment to see full object.
print("Current weather in {} is {} degree centigrade".format(weather.location.name, weather.current.temperature))
Async Support
This library also supports async usage.
import randomstuff
import asyncio
async def coro():
async with randomstuff.AsyncClient(api_key="api-key-here") as client:
response = await client.get_ai_response("Hello world")
print(response.message)
loop = asyncio.get_event_loop()
loop.run_until_complete(coro())
Contribution
This library is powered by community contributions. Feel free to open a pull request to contribute.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file randomstuff.py-2.0.0-py3-none-any.whl.
File metadata
- Download URL: randomstuff.py-2.0.0-py3-none-any.whl
- Upload date:
- Size: 15.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3e2f64322072eaf6f9afd2efeef53aa726b14ae6e750b1d897f96080658e3298
|
|
| MD5 |
d27836e48435142a655fff990910456a
|
|
| BLAKE2b-256 |
56f803131ea7e984bd8a735b0e3bf175346dde635337eca86c5d8b55db4086b7
|