Skip to main content

A big api wrapper which wrappers most of the funny apis :)

Project description

memeapiwrappers

What is this wrapper for?

Its a api wrapper, which has meme images, chuck norris jokes and much more coming in future

Ok great How do I use it

In memeapiwrappers we have two types of functions async and sync. We recommand you using async so it doesnt block your code because its an api request.

YOU NEED aiohttp for this package, make sure you install it

Ok ok, where are the examples*

Lets get started with async first

import asyncio
from meme.main import async_get_meme
async def main():
    very_funny_meme = await async_get_meme() # Two optional args
    print(very_funny_meme)

loop = asyncio.get_event_loop()
loop.run_until_complete(main())

Chuck Norris Example

import asyncio
from chucknorris.main import async_get_chuck_norris_joke
async def main():
    very_funny_meme = await async_get_chuck_norris_joke() # Two optional args
    print(very_funny_meme)

loop = asyncio.get_event_loop()
loop.run_until_complete(main())

Now the sync functions

from meme.main import get_meme
print(get_meme()) # Optional args
from chucknorris.main import get_chuck_norris_joke
print(get_chuck_norris_joke()) # Optional args

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

memeapiwrappers-0.0.2.tar.gz (3.5 kB view hashes)

Uploaded Source

Built Distribution

memeapiwrappers-0.0.2-py3-none-any.whl (4.2 kB view hashes)

Uploaded Python 3

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