Metadata-Version: 2.1
Name: cocktail-wrapper
Version: 1.0.2
Summary: An unofficial asynchronous API wrapper for thecocktaildb.com.
Home-page: https://github.com/clvrk/cocktail-wrapper
Author: clvrk
Author-email: herufromstatefarm@gmail.com
License: UNKNOWN
Project-URL: Funding, https://ko-fi.com/foodbot
Project-URL: Support, https://discord.gg/csUnYsr
Project-URL: Source, https://github.com/clvrk/cocktail-wrapper
Keywords: api wrapper food cocktails asynchronous library free
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Natural Language :: English
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Requires-Python: >= 3.6
Description-Content-Type: text/markdown
Requires-Dist: aiohttp

Usage of search function:
```python
import cocktaildb 

async def tequila_info():
  return await cocktaildb.search(query='tequila')
```
Parameters include query, id, key, category, dict: bool, first_letter_only: bool, ingredient: bool, random: bool. 
All of which default to either None or False.

Lists of categories, ingredients etc. that may appear:
```python
import cocktaildb

# This is in literally a list, not in the form of a dict or string
async def list_of_categories():
  return await cocktaildb.categories()
```
There are more functions such as glasses() and ingredients().

This is a simple api wrapper that only supports free endpoints (for now atleast).


