StoryMaker-karjakak 1.0.6__py3-none-any.whl → 1.0.7__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.
- pictures/devotion.png +0 -0
- pictures/devotion_complete.png +0 -0
- pictures/starter.png +0 -0
- pictures/story_maker.png +0 -0
- stories/BlessingPro/BlessingPro1.zip +0 -0
- stories/BlessingPro/BlessingPro2.zip +0 -0
- stories/BlessingPro/BlessingPro3.zip +0 -0
- stories/BlessingPro/BlessingPro4.zip +0 -0
- story_maker/blessing_pro.py +20 -0
- storymaker_karjakak-1.0.7.dist-info/METADATA +83 -0
- {storymaker_karjakak-1.0.6.dist-info → storymaker_karjakak-1.0.7.dist-info}/RECORD +15 -7
- storymaker_karjakak-1.0.7.dist-info/top_level.txt +3 -0
- storymaker_karjakak-1.0.6.dist-info/METADATA +0 -54
- storymaker_karjakak-1.0.6.dist-info/top_level.txt +0 -1
- {storymaker_karjakak-1.0.6.dist-info → storymaker_karjakak-1.0.7.dist-info}/WHEEL +0 -0
- {storymaker_karjakak-1.0.6.dist-info → storymaker_karjakak-1.0.7.dist-info}/entry_points.txt +0 -0
- {storymaker_karjakak-1.0.6.dist-info → storymaker_karjakak-1.0.7.dist-info}/licenses/LICENSE +0 -0
pictures/devotion.png
ADDED
Binary file
|
Binary file
|
pictures/starter.png
ADDED
Binary file
|
pictures/story_maker.png
ADDED
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
story_maker/blessing_pro.py
CHANGED
@@ -282,10 +282,30 @@ class Bless:
|
|
282
282
|
def trans(self, event = None):
|
283
283
|
pass
|
284
284
|
|
285
|
+
|
286
|
+
def transfer_stories(path: Path):
|
287
|
+
stories_path = Path(__file__).parent.parent.joinpath("stories")
|
288
|
+
if not path.exists():
|
289
|
+
path.mkdir()
|
290
|
+
if stories_path.joinpath("BlessingPro").exists():
|
291
|
+
with chdir(stories_path):
|
292
|
+
stories_path.joinpath("BlessingPro").rename(path.joinpath("BlessingPro"))
|
293
|
+
|
285
294
|
def main():
|
286
295
|
pth = Path.home().joinpath("StoryMaker")
|
287
296
|
begin = Tk()
|
288
297
|
begin.withdraw()
|
298
|
+
try:
|
299
|
+
transfer_stories(pth)
|
300
|
+
except:
|
301
|
+
mes.showinfo(
|
302
|
+
"Stories",
|
303
|
+
(
|
304
|
+
f"Could not transfer folder of stories, please do it manually from {
|
305
|
+
Path(__file__).parent.parent.joinpath("stories")
|
306
|
+
} to {pth}!"
|
307
|
+
)
|
308
|
+
)
|
289
309
|
ans = mes.askyesnocancel("Blessing Project", "Load story or Create story? (yes to load)")
|
290
310
|
files = bool(list(pth.iterdir())) if pth.exists() else False
|
291
311
|
if pth.exists() and files and ans:
|
@@ -0,0 +1,83 @@
|
|
1
|
+
Metadata-Version: 2.4
|
2
|
+
Name: StoryMaker-karjakak
|
3
|
+
Version: 1.0.7
|
4
|
+
Summary: Story Maker for devotion and blessing for others.
|
5
|
+
Author: karjakak
|
6
|
+
Author-email: kakkarja.github@gmail.com
|
7
|
+
License: BSD 3-Clause License
|
8
|
+
|
9
|
+
Copyright (c) 2025, KarjaKAK
|
10
|
+
|
11
|
+
Redistribution and use in source and binary forms, with or without
|
12
|
+
modification, are permitted provided that the following conditions are met:
|
13
|
+
|
14
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
15
|
+
list of conditions and the following disclaimer.
|
16
|
+
|
17
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
18
|
+
this list of conditions and the following disclaimer in the documentation
|
19
|
+
and/or other materials provided with the distribution.
|
20
|
+
|
21
|
+
3. Neither the name of the copyright holder nor the names of its
|
22
|
+
contributors may be used to endorse or promote products derived from
|
23
|
+
this software without specific prior written permission.
|
24
|
+
|
25
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
26
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
27
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
28
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
29
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
30
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
31
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
32
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
33
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
34
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
35
|
+
|
36
|
+
Project-URL: Homepage, https://github.com/kakkarja/Story_Maker
|
37
|
+
Keywords: Story Maker,Interactive Story,Devotion,Story Reader,Stories
|
38
|
+
Classifier: Environment :: Win32 (MS Windows)
|
39
|
+
Classifier: Environment :: MacOS X
|
40
|
+
Classifier: Intended Audience :: End Users/Desktop
|
41
|
+
Classifier: Programming Language :: Python :: 3.10
|
42
|
+
Requires-Python: >=3.10
|
43
|
+
Description-Content-Type: text/markdown
|
44
|
+
License-File: LICENSE
|
45
|
+
Dynamic: license-file
|
46
|
+
|
47
|
+
# Create your devotion story and share to others as blessing ❤️
|
48
|
+
|
49
|
+
**Story Maker**
|
50
|
+
|
51
|
+
* Need to create a folder first by pressing the **save** button.
|
52
|
+
* Than click the folder.
|
53
|
+
* Inside the empty folder than start to make a story and **save**.
|
54
|
+
* The **'<'** button is going back to folders area.
|
55
|
+
* The **'>'** button is going back to files area.
|
56
|
+
* The **delete** button:
|
57
|
+
* Delete a file.
|
58
|
+
* Folder empty, wil delete the folder.
|
59
|
+
* Pressing ```Ctrl + D``` buttons will delete all contents of all fields.
|
60
|
+
> **WARNING!**
|
61
|
+
_Be careful not to delete everything before save it._
|
62
|
+
* You can edit existing story by click it, and it will loads to the story fields.
|
63
|
+
|
64
|
+
**NOTE:**
|
65
|
+
In the folders area, if press **save** button, will create another folder.
|
66
|
+
|
67
|
+
**To start Story Maker:**
|
68
|
+
|
69
|
+
```Terminal
|
70
|
+
# Mac-OS
|
71
|
+
% SMD
|
72
|
+
|
73
|
+
# Windows
|
74
|
+
> SMD
|
75
|
+
```
|
76
|
+
|
77
|
+

|
78
|
+
|
79
|
+

|
80
|
+
|
81
|
+

|
82
|
+
|
83
|
+

|
@@ -1,5 +1,13 @@
|
|
1
|
+
pictures/devotion.png,sha256=vHSDJZzK12BCwqwqPNa2JBpzTMuAlgoWQaKFkDGayjU,576127
|
2
|
+
pictures/devotion_complete.png,sha256=QRHCuWSz78GepxZvaSQM0DM9ARPEL6u3s10dE000y6g,966535
|
3
|
+
pictures/starter.png,sha256=k-96TgwxJIucM4FArvmlMwLqgSMG-zmo6St0SGbirvc,40284
|
4
|
+
pictures/story_maker.png,sha256=SYPnPWvCMJAJMiSfs8j2unENMiA-7Rz_K5HeZ8GmYo8,1138180
|
5
|
+
stories/BlessingPro/BlessingPro1.zip,sha256=FfL7SwdvBcjvfhgwIcke88pu9ZL4zXsFdcRQIUtuw-Y,5042
|
6
|
+
stories/BlessingPro/BlessingPro2.zip,sha256=YyC6XvyjqWyBYiaq-uPrDPK5qKL5NmYlbDs_6AyM3IU,4262
|
7
|
+
stories/BlessingPro/BlessingPro3.zip,sha256=tJh7XKeIDIURD5Oglp25G9Sfn6GVkokn2A33HWel6v8,4906
|
8
|
+
stories/BlessingPro/BlessingPro4.zip,sha256=x6bu5wj9xazTp7yknagtmupvo63RHsX30LiWkw5czFQ,5325
|
1
9
|
story_maker/__init__.py,sha256=4avG-PmZlHHRmaGC9t24J6_168oxQV1OVUZ_brCwmJY,66
|
2
|
-
story_maker/blessing_pro.py,sha256=
|
10
|
+
story_maker/blessing_pro.py,sha256=jRuATWezZIOfwAzs6sgW25MpUb3aMf-abs_hoHnxdX8,12009
|
3
11
|
story_maker/main_frame.py,sha256=crtQFQFYw1ZLmXms6yraw1tNtj6NRdnEcaTJPqa5ofc,7675
|
4
12
|
story_maker/story_archive/__init__.py,sha256=0min7viIAejeqImuZkXoRnOiW_GyADI0eMD05wJAWe0,152
|
5
13
|
story_maker/story_archive/choices.py,sha256=Se0Na-atlLtM1Kdwp2AiraM0G4C32XzjbzM_G6NtQVc,210
|
@@ -12,9 +20,9 @@ story_maker/story_structure/story_multiple_choices.py,sha256=wl7Cs5UBZk3lQOc-wmO
|
|
12
20
|
story_maker/story_structure/story_multiple_stories.py,sha256=yI2uKeuHk-AiUq2yEqqVWHlMFAuOGvETX-_PA8H-eUY,2954
|
13
21
|
story_maker/story_structure/story_save_delete_button.py,sha256=3zicQ99sH9L1fV0yfqxaRj0lFuHwNf9uRmuZFGgttDQ,989
|
14
22
|
story_maker/story_structure/story_selection.py,sha256=0Dh8tG1ewIkMZqN_UDZ7NWfl9QLHMh9mc2cp4Xvv1e4,3482
|
15
|
-
storymaker_karjakak-1.0.
|
16
|
-
storymaker_karjakak-1.0.
|
17
|
-
storymaker_karjakak-1.0.
|
18
|
-
storymaker_karjakak-1.0.
|
19
|
-
storymaker_karjakak-1.0.
|
20
|
-
storymaker_karjakak-1.0.
|
23
|
+
storymaker_karjakak-1.0.7.dist-info/licenses/LICENSE,sha256=gRQhGpfGCte8hnqWfQ9X2uX0eDN7vcJQGQTpcir1CDE,1495
|
24
|
+
storymaker_karjakak-1.0.7.dist-info/METADATA,sha256=-3_EnwkEhSZqnBsiQ5kYnRXyUsfBlfydB4vEyR07OM4,3343
|
25
|
+
storymaker_karjakak-1.0.7.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
26
|
+
storymaker_karjakak-1.0.7.dist-info/entry_points.txt,sha256=6RyZj0Dzcj0c6n0suj0f4v6n60dnA05EliC0FboTNnM,37
|
27
|
+
storymaker_karjakak-1.0.7.dist-info/top_level.txt,sha256=R7RenVFtPTvdogqSmuJ_JvU9Lpk5MpviwZ5LZY-C_sA,29
|
28
|
+
storymaker_karjakak-1.0.7.dist-info/RECORD,,
|
@@ -1,54 +0,0 @@
|
|
1
|
-
Metadata-Version: 2.4
|
2
|
-
Name: StoryMaker-karjakak
|
3
|
-
Version: 1.0.6
|
4
|
-
Summary: Story Maker for devotion and blessing for others.
|
5
|
-
Author: karjakak
|
6
|
-
Author-email: kakkarja.github@gmail.com
|
7
|
-
License-Expression: BSD-3-Clause
|
8
|
-
Project-URL: Homepage, https://github.com/kakkarja/Story_Maker
|
9
|
-
Classifier: Environment :: Win32 (MS Windows)
|
10
|
-
Classifier: Environment :: MacOS X
|
11
|
-
Classifier: Intended Audience :: End Users/Desktop
|
12
|
-
Classifier: Programming Language :: Python :: 3.10
|
13
|
-
Requires-Python: >=3.10
|
14
|
-
Description-Content-Type: text/markdown
|
15
|
-
License-File: LICENSE
|
16
|
-
Dynamic: license-file
|
17
|
-
|
18
|
-
# Create your devotion story and share to others as blessing ❤️
|
19
|
-
|
20
|
-
**Story Maker**
|
21
|
-
|
22
|
-
* Need to create a folder first by pressing the **save** button.
|
23
|
-
* Than click the folder.
|
24
|
-
* Inside the empty folder than start to make a story and **save**.
|
25
|
-
* The **'<'** button is going back to folders area.
|
26
|
-
* The **'>'** button is going back to files area.
|
27
|
-
* The **delete** button:
|
28
|
-
* Delete a file.
|
29
|
-
* Folder empty, wil delete the folder.
|
30
|
-
* Pressing ```Ctrl + D``` buttons will delete all contents of all fields.
|
31
|
-
> **WARNING!**
|
32
|
-
_Be careful not to delete everything before save it._
|
33
|
-
* You can edit existing story by click it, and it will loads to the story fields.
|
34
|
-
|
35
|
-
**NOTE:**
|
36
|
-
In the folders area, if press **save** button, will create another folder.
|
37
|
-
|
38
|
-
**To start Story Maker:**
|
39
|
-
|
40
|
-
```Terminal
|
41
|
-
# Mac-OS
|
42
|
-
% SMD
|
43
|
-
|
44
|
-
# Windows
|
45
|
-
> SMD
|
46
|
-
```
|
47
|
-
|
48
|
-

|
49
|
-
|
50
|
-

|
51
|
-
|
52
|
-

|
53
|
-
|
54
|
-

|
@@ -1 +0,0 @@
|
|
1
|
-
story_maker
|
File without changes
|
{storymaker_karjakak-1.0.6.dist-info → storymaker_karjakak-1.0.7.dist-info}/entry_points.txt
RENAMED
File without changes
|
{storymaker_karjakak-1.0.6.dist-info → storymaker_karjakak-1.0.7.dist-info}/licenses/LICENSE
RENAMED
File without changes
|