2026-1-6
This commit is contained in:
1
venv/Lib/site-packages/emoji-2.10.0.dist-info/INSTALLER
Normal file
1
venv/Lib/site-packages/emoji-2.10.0.dist-info/INSTALLER
Normal file
@@ -0,0 +1 @@
|
||||
pip
|
||||
28
venv/Lib/site-packages/emoji-2.10.0.dist-info/LICENSE.txt
Normal file
28
venv/Lib/site-packages/emoji-2.10.0.dist-info/LICENSE.txt
Normal file
@@ -0,0 +1,28 @@
|
||||
New BSD License
|
||||
|
||||
Copyright (c) 2014-2024, Taehoon Kim, Kevin Wurster
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are met:
|
||||
|
||||
* Redistributions of source code must retain the above copyright notice, this
|
||||
list of conditions and the following disclaimer.
|
||||
|
||||
* Redistributions in binary form must reproduce the above copyright notice,
|
||||
this list of conditions and the following disclaimer in the documentation
|
||||
and/or other materials provided with the distribution.
|
||||
|
||||
* The names of its contributors may not be used to endorse or promote products
|
||||
derived from this software without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
||||
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
||||
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
||||
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
185
venv/Lib/site-packages/emoji-2.10.0.dist-info/METADATA
Normal file
185
venv/Lib/site-packages/emoji-2.10.0.dist-info/METADATA
Normal file
@@ -0,0 +1,185 @@
|
||||
Metadata-Version: 2.1
|
||||
Name: emoji
|
||||
Version: 2.10.0
|
||||
Summary: Emoji for Python
|
||||
Home-page: https://github.com/carpedm20/emoji/
|
||||
Author: Taehoon Kim, Kevin Wurster
|
||||
Author-email: carpedm20@gmail.com
|
||||
License: New BSD
|
||||
Keywords: emoji
|
||||
Classifier: Development Status :: 5 - Production/Stable
|
||||
Classifier: Intended Audience :: Developers
|
||||
Classifier: Intended Audience :: Information Technology
|
||||
Classifier: License :: OSI Approved :: BSD License
|
||||
Classifier: Operating System :: OS Independent
|
||||
Classifier: Programming Language :: Python :: 3
|
||||
Classifier: Programming Language :: Python :: 3.6
|
||||
Classifier: Programming Language :: Python :: 3.7
|
||||
Classifier: Programming Language :: Python :: 3.8
|
||||
Classifier: Programming Language :: Python :: 3.9
|
||||
Classifier: Programming Language :: Python :: 3.10
|
||||
Classifier: Programming Language :: Python :: 3.11
|
||||
Classifier: Programming Language :: Python :: Implementation :: CPython
|
||||
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
||||
Classifier: Programming Language :: Python
|
||||
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
|
||||
Classifier: Topic :: Multimedia :: Graphics :: Presentation
|
||||
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
||||
Classifier: Typing :: Typed
|
||||
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
|
||||
License-File: LICENSE.txt
|
||||
Provides-Extra: dev
|
||||
Requires-Dist: pytest ; extra == 'dev'
|
||||
Requires-Dist: coverage ; extra == 'dev'
|
||||
Requires-Dist: coveralls ; extra == 'dev'
|
||||
|
||||
Emoji
|
||||
=====
|
||||
|
||||
Emoji for Python. This project was inspired by `kyokomi <https://github.com/kyokomi/emoji>`__.
|
||||
|
||||
|
||||
Example
|
||||
-------
|
||||
|
||||
The entire set of Emoji codes as defined by the `Unicode consortium <https://unicode.org/emoji/charts/full-emoji-list.html>`__
|
||||
is supported in addition to a bunch of `aliases <https://www.webfx.com/tools/emoji-cheat-sheet/>`__. By
|
||||
default, only the official list is enabled but doing ``emoji.emojize(language='alias')`` enables
|
||||
both the full list and aliases.
|
||||
|
||||
.. code-block:: python
|
||||
|
||||
>>> import emoji
|
||||
>>> print(emoji.emojize('Python is :thumbs_up:'))
|
||||
Python is 👍
|
||||
>>> print(emoji.emojize('Python is :thumbsup:', language='alias'))
|
||||
Python is 👍
|
||||
>>> print(emoji.demojize('Python is 👍'))
|
||||
Python is :thumbs_up:
|
||||
>>> print(emoji.emojize("Python is fun :red_heart:"))
|
||||
Python is fun ❤
|
||||
>>> print(emoji.emojize("Python is fun :red_heart:", variant="emoji_type"))
|
||||
Python is fun ❤️ #red heart, not black heart
|
||||
>>> print(emoji.is_emoji("👍"))
|
||||
True
|
||||
|
||||
..
|
||||
|
||||
By default, the language is English (``language='en'``) but also supported languages are:
|
||||
|
||||
* Spanish (``'es'``)
|
||||
* Portuguese (``'pt'``)
|
||||
* Italian (``'it'``)
|
||||
* French (``'fr'``)
|
||||
* German (``'de'``)
|
||||
* Farsi/Persian (``'fa'``)
|
||||
* Indonesian (``'id'``)
|
||||
* Simplified Chinese (``'zh'``)
|
||||
* Japanese (``'ja'``)
|
||||
* Korean (``'ko'``)
|
||||
* Russian (``'ru'``)
|
||||
* Arabic (``'ar'``)
|
||||
* Turkish (``'tr'``)
|
||||
|
||||
|
||||
.. code-block:: python
|
||||
|
||||
>>> print(emoji.emojize('Python es :pulgar_hacia_arriba:', language='es'))
|
||||
Python es 👍
|
||||
>>> print(emoji.demojize('Python es 👍', language='es'))
|
||||
Python es :pulgar_hacia_arriba:
|
||||
>>> print(emoji.emojize("Python é :polegar_para_cima:", language='pt'))
|
||||
Python é 👍
|
||||
>>> print(emoji.demojize("Python é 👍", language='pt'))
|
||||
Python é :polegar_para_cima:️
|
||||
|
||||
..
|
||||
|
||||
Installation
|
||||
------------
|
||||
|
||||
Via pip:
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
$ python -m pip install emoji --upgrade
|
||||
|
||||
From master branch:
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
$ git clone https://github.com/carpedm20/emoji.git
|
||||
$ cd emoji
|
||||
$ python -m pip install .
|
||||
|
||||
|
||||
Developing
|
||||
----------
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
$ git clone https://github.com/carpedm20/emoji.git
|
||||
$ cd emoji
|
||||
$ python -m pip install -e .\[dev\]
|
||||
$ pytest
|
||||
$ coverage run -m pytest
|
||||
$ coverage report
|
||||
|
||||
The ``utils/get_codes_from_unicode_emoji_data_files.py`` is used to generate
|
||||
``unicode_codes/data_dict.py``. Generally speaking it scrapes a table on the
|
||||
`Unicode Consortium's website <https://www.unicode.org/reports/tr51/#emoji_data>`__
|
||||
with `BeautifulSoup <http://www.crummy.com/software/BeautifulSoup/>`__
|
||||
and prints the contents to ``stdout`` as a Python dictionary. For more
|
||||
information take a look in the `utils/README.md <utils/README.md>`__ file.
|
||||
|
||||
|
||||
Links
|
||||
-----
|
||||
|
||||
**Documentation**
|
||||
|
||||
`https://carpedm20.github.io/emoji/docs/ <https://carpedm20.github.io/emoji/docs/>`__
|
||||
|
||||
**Overview of all emoji:**
|
||||
|
||||
`https://carpedm20.github.io/emoji/ <https://carpedm20.github.io/emoji/>`__
|
||||
|
||||
(auto-generated list of the emoji that are supported by the current version of this package)
|
||||
|
||||
**For English:**
|
||||
|
||||
`Emoji Cheat Sheet <https://www.webfx.com/tools/emoji-cheat-sheet/>`__
|
||||
|
||||
`Official Unicode list <http://www.unicode.org/emoji/charts/full-emoji-list.html>`__
|
||||
|
||||
**For Spanish:**
|
||||
|
||||
`Unicode list <https://emojiterra.com/es/lista-es/>`__
|
||||
|
||||
**For Portuguese:**
|
||||
|
||||
`Unicode list <https://emojiterra.com/pt/lista/>`__
|
||||
|
||||
**For Italian:**
|
||||
|
||||
`Unicode list <https://emojiterra.com/it/lista-it/>`__
|
||||
|
||||
**For French:**
|
||||
|
||||
`Unicode list <https://emojiterra.com/fr/liste-fr/>`__
|
||||
|
||||
**For German:**
|
||||
|
||||
`Unicode list <https://emojiterra.com/de/liste/>`__
|
||||
|
||||
|
||||
Authors
|
||||
-------
|
||||
|
||||
Taehoon Kim / `@carpedm20 <http://carpedm20.github.io/about/>`__
|
||||
|
||||
Kevin Wurster / `@geowurster <http://twitter.com/geowurster/>`__
|
||||
|
||||
Maintainer
|
||||
----------
|
||||
Tahir Jalilov / `@TahirJalilov <https://github.com/TahirJalilov>`__
|
||||
25
venv/Lib/site-packages/emoji-2.10.0.dist-info/RECORD
Normal file
25
venv/Lib/site-packages/emoji-2.10.0.dist-info/RECORD
Normal file
@@ -0,0 +1,25 @@
|
||||
emoji-2.10.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
|
||||
emoji-2.10.0.dist-info/LICENSE.txt,sha256=iV7444UfNKOg3cX3kgmdrJzaYr56SG9GL9oXuSw2iiU,1483
|
||||
emoji-2.10.0.dist-info/METADATA,sha256=O_iTQIhveodIJmnOHhdyTpIdg205qafRfkjvTya5vsA,5342
|
||||
emoji-2.10.0.dist-info/RECORD,,
|
||||
emoji-2.10.0.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
||||
emoji-2.10.0.dist-info/WHEEL,sha256=-G_t0oGuE7UD0DrSpVZnq1hHMBV9DD2XkS5v7XpmTnk,110
|
||||
emoji-2.10.0.dist-info/top_level.txt,sha256=UxKwtYLYBTA8ldfisbxvrXDgSz3eVBOq51i2h2ewato,6
|
||||
emoji-2.10.0.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
||||
emoji/__init__.py,sha256=U-VPsmrIJy7ixu8DUVKLVXM8452TyBp_niE1GwZIL5U,2359
|
||||
emoji/__init__.pyi,sha256=1cDfESqCdRhx5WZoqibhao3maHpYXzE6hnfVV3PM4RY,929
|
||||
emoji/__pycache__/__init__.cpython-312.pyc,,
|
||||
emoji/__pycache__/core.cpython-312.pyc,,
|
||||
emoji/__pycache__/tokenizer.cpython-312.pyc,,
|
||||
emoji/core.py,sha256=NfaEVay-LyWpasFmMX-NEXeOWAAnmrGcyRqqt8-cV74,13970
|
||||
emoji/core.pyi,sha256=c_Zl07Rk9sVK_ZI3LMzPMgYfYHtGWn2JIftyCzzf9a4,1310
|
||||
emoji/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
||||
emoji/tokenizer.py,sha256=AXEgXpxdL_RYmRCl_Xl8m5jDQlN3hyXi6QN2fV6m104,11876
|
||||
emoji/tokenizer.pyi,sha256=s76ejAXHxd9lNs4h4ey7MCBHLfeJyxoJRrDSKUwb6UQ,1201
|
||||
emoji/unicode_codes/__init__.py,sha256=DOEFYlvT-18AjU4P8G9F8H1Bcjpj0mHiwjFh0JZoaiA,1291
|
||||
emoji/unicode_codes/__init__.pyi,sha256=hH9q27ed2a45IHQ1tKPdMymb6l2IWL3BTJlL8bx8rY4,243
|
||||
emoji/unicode_codes/__pycache__/__init__.cpython-312.pyc,,
|
||||
emoji/unicode_codes/__pycache__/data_dict.cpython-312.pyc,,
|
||||
emoji/unicode_codes/data_dict.py,sha256=jE5Yk0WhON_e6-v3Lg2pOnPK4qrilfVJiwZzcMdCIFA,3995551
|
||||
emoji/unicode_codes/data_dict.pyi,sha256=HiU_YbtX-SphSyD4ZZ2_veRbZ2OP9i08TAjiESdE8ng,155
|
||||
emoji/unicode_codes/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
||||
6
venv/Lib/site-packages/emoji-2.10.0.dist-info/WHEEL
Normal file
6
venv/Lib/site-packages/emoji-2.10.0.dist-info/WHEEL
Normal file
@@ -0,0 +1,6 @@
|
||||
Wheel-Version: 1.0
|
||||
Generator: bdist_wheel (0.42.0)
|
||||
Root-Is-Purelib: true
|
||||
Tag: py2-none-any
|
||||
Tag: py3-none-any
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
emoji
|
||||
1
venv/Lib/site-packages/emoji-2.10.0.dist-info/zip-safe
Normal file
1
venv/Lib/site-packages/emoji-2.10.0.dist-info/zip-safe
Normal file
@@ -0,0 +1 @@
|
||||
|
||||
Reference in New Issue
Block a user