Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jacksalici/emoji-helper

npm package and api tools for querying emoji. 😁
https://github.com/jacksalici/emoji-helper

api emoji emoji-api emojis

Last synced: 2 days ago
JSON representation

npm package and api tools for querying emoji. 😁

Awesome Lists containing this project

README

        

### Simple yet powerful tools for managing and querying emoji list.

## 📦 [npm Package](https://github.com/jacksalici/emoji-helper/tree/main/npm-package)

```
npm i emoji-random-list
```

```javascript
var emoji = require("emoji-random-list")
console.log(emoji.random({n: 5, group: 'objects'}))
//[ '🪒', '📕', '🔋', '🔩', '💷' ]
```

#### [Go to the docs 📦🗂](https://github.com/jacksalici/emoji-helper/tree/main/npm-package)

## 🐍 [Python API](https://github.com/jacksalici/emoji-helper/tree/main/python-api)

```python
import requests
import json

data=requests.get('https://emojihelper-1-v4897410.deta.app/random?n=10&skintones=False&nogroup=Symbols,Flags')
print(json.loads(data.text))

# ["☔","🤵‍♀️","🤍","🗿","🎥","👴","🏃","🥄","🧃","✌️"]
```

#### [Go to the docs 🐍🗂](https://github.com/jacksalici/emoji-helper/tree/main/python-api)