Metadata-Version: 2.1
Name: Mics-API-Wrapper
Version: 0.0.2
Summary: An API wrapper for both of the APIS I have made. 
Home-page: https://github.com/micfun123/Mics-API-wrapper
Author: Michael Parker
Author-email: michaelrbparker@protonmail.com
License: UNKNOWN
Platform: UNKNOWN
Description-Content-Type: text/markdown
Requires-Dist: Pillow

# Mics-API-wrapper

This is a package to simplify the use of my APIs. The wrapper will make doing all of the most common tasks of the API simple as well as fast. This prevents you having to use requests and think about how you get the files.

# Install 
```py
pip install Mics-API-Wrapper
```

## Example Usage: 
```py
from MicsAPIwrapper import Wallpapersimagelink , filmimagelink
#Using the json forms

imageurl = Wallpapersimagelink()
print(imageurl)

imageurl = filmimagelink()
print(imageurl)

#using images 
# wallpapersimage , moviewallpaperimage
#Example on saving the photo. 
from MicsAPIwrapper import wallpapersimage ,moviewallpaperimage

from PIL import Image 
import PIL 

# creating a image object (main image) 
im1 = Image.open(wallpapersimage()) 
  
# save a image using extension
im1 = im1.save("Test.jpg")


from PIL import Image 
import PIL 

# creating a image object (main image) 
im1 = Image.open(moviewallpaperimage()) 
  
# save a image using extension
im1 = im1.save("Test.jpg")

```


# API List

https://hotbeverage.herokuapp.com/docs   = Has photos and soon info on hot drinks (not started) <br>
https://michaelstextapi.herokuapp.com/docs  =  Will turn text in the a image with the sytle of a games title font (working on adding to wrapper)<br>
https://micswallpaperapi.herokuapp.com/docs  =  A large collection of wall papers (Added)

