gitextract_kqyng2c7/ ├── .editorconfig ├── .github/ │ ├── labels.yml │ ├── release-drafter.yml │ ├── renovate.json │ └── workflows/ │ ├── deploy.yml │ ├── labels.yml │ ├── lint.yml │ ├── release-drafter.yml │ ├── require-pr-label.yml │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .yamlfmt.yaml ├── LICENSE ├── NOTICE ├── README.md ├── RELEASING.md ├── pyproject.toml ├── requirements-mypy.txt ├── scripts/ │ ├── despacify.py │ ├── run_command.py │ └── update-emojilib.sh ├── src/ │ └── em/ │ ├── LICENSE │ ├── __init__.py │ ├── __main__.py │ ├── cli.py │ ├── emoji-en-US.json │ └── emojis.json ├── tests/ │ ├── __init__.py │ └── test_em.py └── tox.ini