Skip to main content

Easy to use API Wrapper for somerandomapi.ml.

Project description

Overview

somerandomapi is an API Wrapper for some-random-api.ml

Examples

Asynchronous

from somerandomapi import Animal
import asyncio


async def main():
    async with Animal.dog as resp:
        print(
            f"Fact: {resp.fact}",
            f"Image: {resp.image}",
            sep="\n"
        )
asyncio.run(main())

Synchronous

from somerandomapi import Animal


with Animal.dog as resp:
    print(
        f"Fact: {resp.fact}",
        f"Image: {resp.image}",
        sep="\n"
    )

Easy, isn't it?

Documentation

I am not completely happy with the docs and its still being fixed but its pretty usable, click here to check it.

Note

  • Not all endpoints has been added yet. However those will be added soon. (95% Completed.)
  • I will not add it to Pypi until I add support for all the endpoints. Follow the steps listed below to use it. It has been added.

How to install

  • Manual
    • First clone the repository.
    • Install the packages listed in requirements.txt
      • py -m pip install -r requirements.txt
    • Copy the folder somerandomapi to where you want to use it.
    • You may then use the wrapper by importing somerandomapi.
  • Pypi
    • py -m pip install somerandomapiml
    • That's it.

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

somerandomapiml-1.0.2.tar.gz (7.4 kB view hashes)

Uploaded Source

Supported by

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