threesaveslot 0.1.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
+ from .moduleName import *
@@ -0,0 +1,26 @@
1
+ """
2
+ moduleName.py
3
+
4
+ This is where all the functions, classes, variables, etc lie in your custom module.
5
+ """
6
+ import json
7
+
8
+
9
+ savelist = []
10
+
11
+
12
+ def createsavefile(name = "savefile"):
13
+ open(name, "x")
14
+
15
+
16
+ def basicsave(listtosave = savelist, filename = "savefile"):
17
+ filename = str(filename)
18
+ with open(str(filename + ".json"), "w") as f:
19
+ json.dump(listtosave, f)
20
+
21
+
22
+ def basicload(filename = "savefile"):
23
+ filename = str(filename)
24
+ open(filename + ".json") as f:
25
+ return json.load(f)
26
+
@@ -0,0 +1,67 @@
1
+ Metadata-Version: 2.4
2
+ Name: threesaveslot
3
+ Version: 0.1.0
4
+ Summary: description here. each time you want to update your module, make sure the version above doesnt already exist!
5
+ Home-page: https://github.com/Knights-of-Dev/threesaveslot
6
+ Author: Pitchfork
7
+ Author-email: example@example.com
8
+ License: MIT
9
+ Classifier: Development Status :: 4 - Beta
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: License :: Freeware
12
+ Classifier: Operating System :: OS Independent
13
+ Classifier: Programming Language :: Python :: 3.10
14
+ Classifier: Programming Language :: Python :: 3.11
15
+ Classifier: Programming Language :: Python :: 3.12
16
+ Classifier: Programming Language :: Python :: 3.13
17
+ Classifier: Programming Language :: Python :: 3.14
18
+ Classifier: Programming Language :: Python :: 3.15
19
+ Description-Content-Type: text/markdown
20
+ Dynamic: author
21
+ Dynamic: author-email
22
+ Dynamic: classifier
23
+ Dynamic: description
24
+ Dynamic: description-content-type
25
+ Dynamic: home-page
26
+ Dynamic: license
27
+ Dynamic: summary
28
+
29
+ # Minimal Python Module Template
30
+ Add your documentation here!
31
+
32
+ **Quick note: DO NOT CHANGE THE GITHUB WORKFLOWS FOLDER AT ALL, OR .GITIGNORE!!**
33
+
34
+ #### Pitchfork7 here!
35
+ ##### adding a tutorial to how to use this :3
36
+
37
+ 1. make copy this repo using the template button!
38
+ 2. Add your code and rename the folder your project is in!
39
+ 3. change PKG and Setup.py to include your information and project name!
40
+ 4. Go to pypi and make an account if you dont already have one!
41
+ 5. under publishers make a new pending publisher and fill that out!
42
+ 6. finally make a new release of this repo!
43
+
44
+ Your now good to Go! :p
45
+
46
+
47
+
48
+
49
+ Formatting refs:
50
+
51
+ ---
52
+
53
+ That was a line
54
+
55
+ # H1
56
+ ## H2
57
+ ### H3
58
+
59
+ ```
60
+ This is code.
61
+ ```
62
+
63
+ ```Python
64
+ print("This is Python code!")
65
+ ```
66
+
67
+ And yeah that's about it.
@@ -0,0 +1,6 @@
1
+ threesaveslot/__init__.py,sha256=f2g29hNioBV1NbV3NrYJEGWjW8OfWG1paBNI5p74g1I,26
2
+ threesaveslot/threesaveslot.py,sha256=wrIroNe_j-_qhGa5KUxR_EQ6PwBp5Gi4yUQyf9fNidE,488
3
+ threesaveslot-0.1.0.dist-info/METADATA,sha256=9AC2C02I0-EHGRyxT33A45UzVWl5yMw6nU3IT7xDvbw,1734
4
+ threesaveslot-0.1.0.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
5
+ threesaveslot-0.1.0.dist-info/top_level.txt,sha256=gIOVHrcLR4pAcG4I8bNtCww1Fz_7z86J_O4W_1x5ZbI,14
6
+ threesaveslot-0.1.0.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 @@
1
+ threesaveslot