threesaveslot 0.1.0__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.
- threesaveslot-0.1.0/PKG-INFO +67 -0
- threesaveslot-0.1.0/README.md +39 -0
- threesaveslot-0.1.0/setup.cfg +4 -0
- threesaveslot-0.1.0/setup.py +31 -0
- threesaveslot-0.1.0/threesaveslot/__init__.py +1 -0
- threesaveslot-0.1.0/threesaveslot/threesaveslot.py +26 -0
- threesaveslot-0.1.0/threesaveslot.egg-info/PKG-INFO +67 -0
- threesaveslot-0.1.0/threesaveslot.egg-info/SOURCES.txt +8 -0
- threesaveslot-0.1.0/threesaveslot.egg-info/dependency_links.txt +1 -0
- threesaveslot-0.1.0/threesaveslot.egg-info/top_level.txt +1 -0
|
@@ -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,39 @@
|
|
|
1
|
+
# Minimal Python Module Template
|
|
2
|
+
Add your documentation here!
|
|
3
|
+
|
|
4
|
+
**Quick note: DO NOT CHANGE THE GITHUB WORKFLOWS FOLDER AT ALL, OR .GITIGNORE!!**
|
|
5
|
+
|
|
6
|
+
#### Pitchfork7 here!
|
|
7
|
+
##### adding a tutorial to how to use this :3
|
|
8
|
+
|
|
9
|
+
1. make copy this repo using the template button!
|
|
10
|
+
2. Add your code and rename the folder your project is in!
|
|
11
|
+
3. change PKG and Setup.py to include your information and project name!
|
|
12
|
+
4. Go to pypi and make an account if you dont already have one!
|
|
13
|
+
5. under publishers make a new pending publisher and fill that out!
|
|
14
|
+
6. finally make a new release of this repo!
|
|
15
|
+
|
|
16
|
+
Your now good to Go! :p
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
Formatting refs:
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
That was a line
|
|
26
|
+
|
|
27
|
+
# H1
|
|
28
|
+
## H2
|
|
29
|
+
### H3
|
|
30
|
+
|
|
31
|
+
```
|
|
32
|
+
This is code.
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
```Python
|
|
36
|
+
print("This is Python code!")
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
And yeah that's about it.
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
from setuptools import setup
|
|
2
|
+
from pathlib import Path
|
|
3
|
+
this_directory = Path(__file__).parent
|
|
4
|
+
long_description = (this_directory / "README.md").read_text()
|
|
5
|
+
|
|
6
|
+
setup(
|
|
7
|
+
name='threesaveslot',
|
|
8
|
+
version='0.1.0',
|
|
9
|
+
description='description here. each time you want to update your module, make sure the version above doesnt already exist!',
|
|
10
|
+
url='https://github.com/Knights-of-Dev/threesaveslot',
|
|
11
|
+
author='Pitchfork',
|
|
12
|
+
author_email='example@example.com',
|
|
13
|
+
license='MIT',
|
|
14
|
+
packages=['threesaveslot'],
|
|
15
|
+
install_requires=[],
|
|
16
|
+
long_description=long_description,
|
|
17
|
+
long_description_content_type='text/markdown',
|
|
18
|
+
|
|
19
|
+
classifiers=[
|
|
20
|
+
'Development Status :: 4 - Beta',
|
|
21
|
+
'Intended Audience :: Developers',
|
|
22
|
+
'License :: Freeware',
|
|
23
|
+
'Operating System :: OS Independent',
|
|
24
|
+
'Programming Language :: Python :: 3.10',
|
|
25
|
+
'Programming Language :: Python :: 3.11',
|
|
26
|
+
'Programming Language :: Python :: 3.12',
|
|
27
|
+
'Programming Language :: Python :: 3.13',
|
|
28
|
+
'Programming Language :: Python :: 3.14',
|
|
29
|
+
'Programming Language :: Python :: 3.15'
|
|
30
|
+
],
|
|
31
|
+
)
|
|
@@ -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 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
threesaveslot
|