Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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. 😁
- Host: GitHub
- URL: https://github.com/jacksalici/emoji-helper
- Owner: jacksalici
- License: mit
- Created: 2022-08-03T22:37:45.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-04-16T15:51:28.000Z (over 1 year ago)
- Last Synced: 2024-08-11T09:23:14.256Z (3 months ago)
- Topics: api, emoji, emoji-api, emojis
- Language: Python
- Homepage: https://emojiapi.jacksalici.com/docs
- Size: 150 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
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 jsondata=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)