Metadata-Version: 2.1
Name: urbandic
Version: 1.0.0
Summary: Urban Dictionary API client
Home-page: https://github.com/thexxiv/urbandictionary-py
Author: XXIV
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/thexxiv/urbandictionary-py/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# Urbandic

[![](https://img.shields.io/github/v/tag/thexxiv/urbandictionary-py?label=version)](https://github.com/thexxiv/urbandictionary-py/releases/latest) [![](https://img.shields.io/github/license/thexxiv/urbandictionary-py)](https://github.com/thexxiv/urbandictionary-py/blob/main/LICENSE)

Urban Dictionary API client for **Python**.

### Download
[PyPI](https://pypi.org/project/urbandic/)

```
pip install urbandic
```

### Example

```py
from urbandic import search

for i in search("Python"):
    print(i.definition)
```

### License

Urbandic is released under the [MIT License](https://github.com/thexxiv/urbandictionary-py/blob/main/LICENSE).

