Metadata-Version: 2.4
Name: pymojis-fulldata
Version: 1.1.0
Summary: Full Unicode emoji dataset for the pymojis library.
Author-email: Pallandir <pallandir2@gmail.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/pallandir/pymojis
Project-URL: Repository, https://github.com/pallandir/pymojis
Keywords: emoji,unicode,data,pymojis
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Text Processing
Requires-Python: >=3.12
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# pymojis-fulldata

Full Unicode emoji dataset shipped as a companion package to
[`pymojis`](https://pypi.org/project/pymojis/).

This package only ships data — it has no Python API. Install it together
with `pymojis` to enable the full dataset:

```bash
pip install 'pymojis[full]'
```

Then use it explicitly:

```python
from pymojis import PymojisManager

manager = PymojisManager(use_full_dataset=True)
print(len(manager.get_all_emojis()))
```

Without `use_full_dataset=True`, the lightweight bundled dataset is used.

## License

MIT — see the LICENSE file. The underlying emoji metadata is generated
from the [Unicode CLDR](https://cldr.unicode.org/) sources
([`emoji-test.txt`](https://unicode.org/Public/emoji/) and the English
annotations), licensed under the Unicode License V3.
