Skip to main content

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
  • Customisable
  • Designed to be as optimized as possible
  • Wraps the entire API including both versions, 3 and 4.
  • 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 requests and improve this library. Please consider following points:

  • Briefly explain what you did.
  • Use this template after your PR description and mark certain checkboxes with x as per your PR.
- [ ] This is a code change (Improvement, bug fix, new feature)
  - [ ] Bug fix
  - [ ] Improvement
  - [ ] Feature added

- [ ] The change is not a code change (ReadMe change, examples add, examples update etc.)
  - [ ] README change
  - [ ] Example Change
    - [ ] Added Example
    - [ ] Removed Example
    - [ ] Updated Example

- [ ] The change are tested
- [ ] Change is breaking change

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

randomstuff.py-1.6.3-py3-none-any.whl (15.6 kB view details)

Uploaded Python 3

File details

Details for the file randomstuff.py-1.6.3-py3-none-any.whl.

File metadata

  • Download URL: randomstuff.py-1.6.3-py3-none-any.whl
  • Upload date:
  • Size: 15.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.7

File hashes

Hashes for randomstuff.py-1.6.3-py3-none-any.whl
Algorithm Hash digest
SHA256 9e56c20a9051dacbe7fa3e05c27915531530243ce49c87c814656c8d097929c7
MD5 b6bfb4b011a61cc5f6e777185814ed34
BLAKE2b-256 4c2aa2551e539e2be79b6111794b7586effb938386fb77e5cb154015370877ff

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page