{ "info": { "author": "K.C.Saff", "author_email": "kc@saff.net", "bugtrack_url": null, "classifiers": [ "Intended Audience :: Other Audience", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3" ], "description": "# emojitations\n\nA library for using Unicode emoji annotations. Emoji annotations can provide your scripts with a simple way to\ninterpret emoji, or select a random one satisfying certain criteria. Annotations can be seen listed here on\nthe Unicode website: http://unicode.org/emoji/charts/full-emoji-list.html\n\n## Requirements\n\n1. Python 3.+\n\nThis library is pure python 3 and has no other requirements.\n\n## Installation\n\n`python3 setup.py install`\n\n## Usage\n\nEmoji are available under their names at `emoji.whatever`. These objects include an `annotations` set and you can\nuse the `emoji` attribute or `str()` to get their emoji strings. To get all emoji in an annotation, use\n`emoji.annotation.whatever`. This returns frozen sets which then can be combined using set operations.\n\nThe library also provides (preliminary) support for foreign languages, available as `emoji.de.kreditkarte` for example.\n\nSee the examples below for details.\n\n```python\n>>> from emojitations import emoji\n>>> emoji.grinning_face.annotations\nfrozenset({'grin', 'face'})\n>>> print(''.join(str(grin) for grin in emoji.annotation.grin))\n\ud83d\ude38\ud83d\ude01\ud83d\ude00\n>>> print(''.join(str(grin) for grin in emoji.annotation.grin & emoji.annotation.cat))\n\ud83d\ude38\n>>> print(str(emoji.de.kreditkarte))\n\ud83d\udcb3\n```\n\n0.1.0 (2016-03-17)\n------------------\n\n- Initial development version.", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/kcsaff/emojitations", "keywords": null, "license": "MIT", "maintainer": null, "maintainer_email": null, "name": "emojitations", "package_url": "https://pypi.org/project/emojitations/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/emojitations/", "project_urls": { "Download": "UNKNOWN", "Homepage": "https://github.com/kcsaff/emojitations" }, "release_url": "https://pypi.org/project/emojitations/0.1.0/", "requires_dist": null, "requires_python": null, "summary": "Makes available emoji annotation data", "version": "0.1.0" }, "last_serial": 2040698, "releases": { "0.1.0": [] }, "urls": [] }