Metadata-Version: 2.1
Name: emojidb-python
Version: 1.0.0
Summary: Simple python wrapper for emojidb.com
Home-page: https://github.com/yedhrab/emojidb-python
Author: Yunus Emre Ak
Author-email: yemreak.com@gmail.com
License: Apache Software License 2.0
Project-URL: Source, https://github.com/yedhrab/emojidb-python/
Project-URL: Changelog, https://github.com/yedhrab/emojidb-python/releases
Project-URL: Issue Tracker, https://github.com/yedhrab/emojidb-python/issues
Keywords: emoji,emojidb,emojidb.com,emojidb-client,emojidb-client-python
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Utilities
Requires-Python: >=3.9.6
Description-Content-Type: text/markdown
Provides-Extra: dev
License-File: LICENSE

# 📦 EmojiDB

- Simple python wrapper for emojidb.com

## ⭐️ Usage

```bash
pip install emojidb-python
```

```python
from asyncio import run
from emojidb import EmojiDBClient


async def main():
    query = "love"
    async with EmojiDBClient() as client:
        for emoji, info in await client.search_for_emojis(query):
            print(emoji, info)


if __name__ == "__main__":
    run(main)
```

## 🪪 License

```
Copyright 2023 Yunus Emre Ak ~ YEmreAk.com

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
```
