known-countries 0.0.0__py3-none-any.whl

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 @@
1
+ # This is free and unencumbered software released into the public domain.
@@ -0,0 +1,56 @@
1
+ Metadata-Version: 2.4
2
+ Name: known-countries
3
+ Version: 0.0.0
4
+ Summary: Well-known countries.
5
+ Keywords:
6
+ Author: Arto Bendiken
7
+ Author-email: Arto Bendiken <arto@bendiken.net>
8
+ License-Expression: Unlicense
9
+ License-File: UNLICENSE
10
+ Classifier: Development Status :: 2 - Pre-Alpha
11
+ Classifier: Environment :: Console
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: Intended Audience :: Information Technology
14
+ Classifier: License :: Public Domain
15
+ Classifier: Natural Language :: English
16
+ Classifier: Operating System :: OS Independent
17
+ Classifier: Programming Language :: Python :: 3 :: Only
18
+ Classifier: Topic :: Software Development :: Libraries
19
+ Requires-Python: >=3.10
20
+ Project-URL: Homepage, https://github.com/it-is-known
21
+ Project-URL: Repository, https://github.com/it-is-known/known-countries
22
+ Project-URL: Changelog, https://github.com/it-is-known/known-countries/blob/master/python/CHANGES.md
23
+ Project-URL: Releases, https://github.com/it-is-known/known-countries/releases
24
+ Project-URL: Issues, https://github.com/it-is-known/known-countries/issues
25
+ Project-URL: Documentation, https://github.com/it-is-known/known-countries/blob/master/python/README.md
26
+ Description-Content-Type: text/markdown
27
+
28
+ # Known Countries for Python
29
+
30
+ [![License](https://img.shields.io/badge/license-Public%20Domain-blue.svg)](https://unlicense.org)
31
+ [![Compatibility](https://img.shields.io/badge/python-3.10%2B-blue)](https://endoflife.date/python)
32
+ [![Package](https://img.shields.io/pypi/v/known-countries)](https://pypi.org/project/known-countries/)
33
+
34
+ Well-known countries for Python.
35
+
36
+ ## 👉 Examples
37
+
38
+ ### Importing well-known countries
39
+
40
+ ```python
41
+ from known_countries import *
42
+ ```
43
+
44
+ ## 👨‍💻 Development
45
+
46
+ ```bash
47
+ git clone https://github.com/it-is-known/known-countries.git
48
+ ```
49
+
50
+ ---
51
+
52
+ [![Share on X](https://img.shields.io/badge/share%20on-x-03A9F4?logo=x)](https://x.com/intent/post?url=https://github.com/it-is-known/known-countries&text=Known%20Countries)
53
+ [![Share on Reddit](https://img.shields.io/badge/share%20on-reddit-red?logo=reddit)](https://reddit.com/submit?url=https://github.com/it-is-known/known-countries&title=Known%20Countries)
54
+ [![Share on Hacker News](https://img.shields.io/badge/share%20on-hn-orange?logo=ycombinator)](https://news.ycombinator.com/submitlink?u=https://github.com/it-is-known/known-countries&t=Known%20Countries)
55
+ [![Share on Facebook](https://img.shields.io/badge/share%20on-fb-1976D2?logo=facebook)](https://www.facebook.com/sharer/sharer.php?u=https://github.com/it-is-known/known-countries)
56
+ [![Share on LinkedIn](https://img.shields.io/badge/share%20on-linkedin-3949AB?logo=linkedin)](https://www.linkedin.com/sharing/share-offsite/?url=https://github.com/it-is-known/known-countries)
@@ -0,0 +1,5 @@
1
+ known_countries/__init__.py,sha256=HNo12SN3s2UpenK7tK8xb4bSf4LpPpN0ZJGO34YM6cY,74
2
+ known_countries-0.0.0.dist-info/licenses/UNLICENSE,sha256=tQZYOMusRS38hVum5uAxSBrSxoQG9w0h6tkyE3RlPmw,1212
3
+ known_countries-0.0.0.dist-info/WHEEL,sha256=01-mvBXsCWcapci73Y4TRTWrxqv9JijDtCFiicuPHXE,80
4
+ known_countries-0.0.0.dist-info/METADATA,sha256=JWX8ZFWOSsxILuKKdmimnn-gzQhtNtJVaw-yoN0tmMU,2706
5
+ known_countries-0.0.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: uv 0.10.8
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,24 @@
1
+ This is free and unencumbered software released into the public domain.
2
+
3
+ Anyone is free to copy, modify, publish, use, compile, sell, or
4
+ distribute this software, either in source code form or as a compiled
5
+ binary, for any purpose, commercial or non-commercial, and by any
6
+ means.
7
+
8
+ In jurisdictions that recognize copyright laws, the author or authors
9
+ of this software dedicate any and all copyright interest in the
10
+ software to the public domain. We make this dedication for the benefit
11
+ of the public at large and to the detriment of our heirs and
12
+ successors. We intend this dedication to be an overt act of
13
+ relinquishment in perpetuity of all present and future rights to this
14
+ software under copyright law.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19
+ IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
20
+ OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21
+ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22
+ OTHER DEALINGS IN THE SOFTWARE.
23
+
24
+ For more information, please refer to <https://unlicense.org/>