pymojis-fulldata 1.0.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Pallandir
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,51 @@
1
+ Metadata-Version: 2.4
2
+ Name: pymojis-fulldata
3
+ Version: 1.0.1
4
+ Summary: Full Unicode emoji dataset for the pymojis library.
5
+ Author-email: Pallandir <pallandir2@gmail.com>
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://github.com/pallandir/pymojis
8
+ Project-URL: Repository, https://github.com/pallandir/pymojis
9
+ Keywords: emoji,unicode,data,pymojis
10
+ Classifier: Development Status :: 5 - Production/Stable
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: Operating System :: OS Independent
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Programming Language :: Python :: 3.12
15
+ Classifier: Programming Language :: Python :: 3 :: Only
16
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
17
+ Classifier: Topic :: Text Processing
18
+ Requires-Python: >=3.12
19
+ Description-Content-Type: text/markdown
20
+ License-File: LICENSE
21
+ Dynamic: license-file
22
+
23
+ # pymojis-fulldata
24
+
25
+ Full Unicode emoji dataset shipped as a companion package to
26
+ [`pymojis`](https://pypi.org/project/pymojis/).
27
+
28
+ This package only ships data — it has no Python API. Install it together
29
+ with `pymojis` to enable the full dataset:
30
+
31
+ ```bash
32
+ pip install 'pymojis[full]'
33
+ ```
34
+
35
+ Then use it explicitly:
36
+
37
+ ```python
38
+ from pymojis import PymojisManager
39
+
40
+ manager = PymojisManager(use_full_dataset=True)
41
+ print(len(manager.get_all_emojis()))
42
+ ```
43
+
44
+ Without `use_full_dataset=True`, the lightweight bundled dataset is used.
45
+
46
+ ## License
47
+
48
+ MIT — see the LICENSE file. The underlying emoji metadata is derived from
49
+ the [emoji-test data](https://unicode.org/Public/emoji/) maintained by the
50
+ Unicode Consortium and the work of Chalda Pnuzig (ISC License, see
51
+ `third_party/`).
@@ -0,0 +1,29 @@
1
+ # pymojis-fulldata
2
+
3
+ Full Unicode emoji dataset shipped as a companion package to
4
+ [`pymojis`](https://pypi.org/project/pymojis/).
5
+
6
+ This package only ships data — it has no Python API. Install it together
7
+ with `pymojis` to enable the full dataset:
8
+
9
+ ```bash
10
+ pip install 'pymojis[full]'
11
+ ```
12
+
13
+ Then use it explicitly:
14
+
15
+ ```python
16
+ from pymojis import PymojisManager
17
+
18
+ manager = PymojisManager(use_full_dataset=True)
19
+ print(len(manager.get_all_emojis()))
20
+ ```
21
+
22
+ Without `use_full_dataset=True`, the lightweight bundled dataset is used.
23
+
24
+ ## License
25
+
26
+ MIT — see the LICENSE file. The underlying emoji metadata is derived from
27
+ the [emoji-test data](https://unicode.org/Public/emoji/) maintained by the
28
+ Unicode Consortium and the work of Chalda Pnuzig (ISC License, see
29
+ `third_party/`).
@@ -0,0 +1,38 @@
1
+ [build-system]
2
+ requires = ["setuptools>=77", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "pymojis-fulldata"
7
+ version = "1.0.1"
8
+ description = "Full Unicode emoji dataset for the pymojis library."
9
+ readme = "README.md"
10
+ requires-python = ">=3.12"
11
+ license = "MIT"
12
+ license-files = ["LICENSE"]
13
+ authors = [
14
+ {name = "Pallandir", email = "pallandir2@gmail.com"}
15
+ ]
16
+ keywords = ["emoji", "unicode", "data", "pymojis"]
17
+ classifiers = [
18
+ "Development Status :: 5 - Production/Stable",
19
+ "Intended Audience :: Developers",
20
+ "Operating System :: OS Independent",
21
+ "Programming Language :: Python :: 3",
22
+ "Programming Language :: Python :: 3.12",
23
+ "Programming Language :: Python :: 3 :: Only",
24
+ "Topic :: Software Development :: Libraries :: Python Modules",
25
+ "Topic :: Text Processing",
26
+ ]
27
+ dependencies = []
28
+
29
+ [project.urls]
30
+ Homepage = "https://github.com/pallandir/pymojis"
31
+ Repository = "https://github.com/pallandir/pymojis"
32
+
33
+ [tool.setuptools.packages.find]
34
+ where = ["src"]
35
+ include = ["pymojis_fulldata*"]
36
+
37
+ [tool.setuptools.package-data]
38
+ pymojis_fulldata = ["data/*.json"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+