wareki-teller 0.0.1__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.
File without changes
@@ -0,0 +1,20 @@
1
+ import datetime
2
+
3
+ def wareki_date() -> str:
4
+ """ This function returns wareki calender date
5
+ Args:
6
+ none
7
+ Returns:
8
+ str: current date based on wareki calender
9
+ Raises:
10
+ nothing
11
+ Examples:
12
+ >>> wareki_date()
13
+ Reiwa 8 Nen 2 Gatsu 6 Nichi
14
+ """
15
+ y = datetime.datetime.now().year - 2019 + 1
16
+ m = datetime.datetime.now().month
17
+ d = datetime.datetime.now().day
18
+ s = "Reiwa " + str(y) + " Nen " + str(m) + " Gatsu " + str(d) + " Nichi"
19
+ return s
20
+
@@ -0,0 +1,19 @@
1
+ Metadata-Version: 2.4
2
+ Name: wareki_teller
3
+ Version: 0.0.1
4
+ Summary: wareki teller
5
+ Author-email: Author <author@example.com>
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://github.com/pypa/sampleproject
8
+ Project-URL: Issues, https://github.com/pypa/sampleproject/issues
9
+ Classifier: Programming Language :: Python :: 3
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.9
12
+ Description-Content-Type: text/markdown
13
+ License-File: LICENSE
14
+ Dynamic: license-file
15
+
16
+ # Wareki teller
17
+
18
+ This is a datetime teller based on the current Japanese imperial year.
19
+ It believes that no change will be occured for imperial era.
@@ -0,0 +1,7 @@
1
+ wareki_teller/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ wareki_teller/wareki_teller.py,sha256=rUAvH9oPmKjeExdOXZDYsWfgJ-siX08LPZ3VHYDBqsQ,523
3
+ wareki_teller-0.0.1.dist-info/licenses/LICENSE,sha256=Mafj6O7OHVpxhI3xyyeiU_vMEefHiQJT_XkF0KiUXEw,1093
4
+ wareki_teller-0.0.1.dist-info/METADATA,sha256=vYHpB2c3NN6I1NIaw5peZt3h9o0zAAuSyKYLanZlf1c,644
5
+ wareki_teller-0.0.1.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
6
+ wareki_teller-0.0.1.dist-info/top_level.txt,sha256=-Xo7l_7ZCnWRk3TOoCPZCcGe0FuVsLBTshQrv5phnNQ,14
7
+ wareki_teller-0.0.1.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.10.2)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,19 @@
1
+ Copyright (c) 2026 The Python Packaging Authority
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy
4
+ of this software and associated documentation files (the "Software"), to deal
5
+ in the Software without restriction, including without limitation the rights
6
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
+ copies of the Software, and to permit persons to whom the Software is
8
+ furnished to do so, subject to the following conditions:
9
+
10
+ The above copyright notice and this permission notice shall be included in all
11
+ copies or substantial portions of the Software.
12
+
13
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19
+ SOFTWARE.
@@ -0,0 +1 @@
1
+ wareki_teller