fnschool 20241126.81759.821__py3-none-any.whl → 20250109.80500.803__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.
Potentially problematic release.
This version of fnschool might be problematic. Click here for more details.
- fnschool/__init__.py +2 -2
- fnschool/canteen/bill.py +11 -2
- fnschool/canteen/currency.py +1 -1
- fnschool/canteen/entry.py +7 -1
- fnschool/canteen/spreadsheet/base.py +23 -2
- fnschool/canteen/spreadsheet/consumingsum.py +13 -7
- fnschool/canteen/spreadsheet/ctspreadsheet.py +1 -1
- fnschool/canteen/spreadsheet/food.py +59 -3
- fnschool/canteen/spreadsheet/merging.py +4 -7
- fnschool/canteen/spreadsheet/preconsuming.py +10 -6
- fnschool/canteen/spreadsheet/purchasing.py +8 -8
- fnschool/canteen/spreadsheet/purchasingsum.py +28 -14
- fnschool/canteen/spreadsheet/spreadsheet.py +1 -1
- fnschool/canteen/spreadsheet/translating.py +12 -0
- fnschool/entry.py +15 -9
- fnschool/exam/email.py +3 -3
- fnschool/exam/entry.py +4 -4
- fnschool/exam/score.py +8 -8
- fnschool/external.py +1 -1
- fnschool/{show.py → inoutput.py} +1 -1
- fnschool/locales/en_US/LC_MESSAGES/fnschool.mo +0 -0
- fnschool/locales/zh_CN/LC_MESSAGES/fnschool.mo +0 -0
- fnschool/locales/zh_HK/LC_MESSAGES/fnschool.mo +0 -0
- fnschool/locales/zh_SG/LC_MESSAGES/fnschool.mo +0 -0
- fnschool/locales/zh_TW/LC_MESSAGES/fnschool.mo +0 -0
- fnschool/path.py +1 -1
- fnschool/user.py +5 -5
- {fnschool-20241126.81759.821.dist-info → fnschool-20250109.80500.803.dist-info}/METADATA +2 -2
- {fnschool-20241126.81759.821.dist-info → fnschool-20250109.80500.803.dist-info}/RECORD +33 -33
- {fnschool-20241126.81759.821.dist-info → fnschool-20250109.80500.803.dist-info}/WHEEL +1 -1
- fnschool/canteen/workbook.py +0 -2661
- {fnschool-20241126.81759.821.dist-info → fnschool-20250109.80500.803.dist-info}/LICENSE +0 -0
- {fnschool-20241126.81759.821.dist-info → fnschool-20250109.80500.803.dist-info}/entry_points.txt +0 -0
- {fnschool-20241126.81759.821.dist-info → fnschool-20250109.80500.803.dist-info}/top_level.txt +0 -0
fnschool/exam/score.py
CHANGED
|
@@ -122,7 +122,7 @@ class Score:
|
|
|
122
122
|
)
|
|
123
123
|
)
|
|
124
124
|
)
|
|
125
|
-
p_input =
|
|
125
|
+
p_input = get_input()
|
|
126
126
|
if p_input and p_input in "Yy":
|
|
127
127
|
if len(self.scores.columns) > 1:
|
|
128
128
|
self.plot_scores()
|
|
@@ -573,7 +573,7 @@ class Score:
|
|
|
573
573
|
+ "Default: No)"
|
|
574
574
|
).format(fpath_m1)
|
|
575
575
|
)
|
|
576
|
-
edit_yn =
|
|
576
|
+
edit_yn = get_input()
|
|
577
577
|
if edit_yn and edit_yn in "Yy":
|
|
578
578
|
open_path(fpath_m1)
|
|
579
579
|
print_info(
|
|
@@ -582,7 +582,7 @@ class Score:
|
|
|
582
582
|
+ "to continue)"
|
|
583
583
|
)
|
|
584
584
|
)
|
|
585
|
-
|
|
585
|
+
get_input()
|
|
586
586
|
pass
|
|
587
587
|
pass
|
|
588
588
|
|
|
@@ -992,7 +992,7 @@ class Score:
|
|
|
992
992
|
+ "key to open file])"
|
|
993
993
|
).format(fpath)
|
|
994
994
|
)
|
|
995
|
-
|
|
995
|
+
get_input()
|
|
996
996
|
|
|
997
997
|
y_input_n = 64
|
|
998
998
|
for i in range(y_input_n):
|
|
@@ -1004,7 +1004,7 @@ class Score:
|
|
|
1004
1004
|
+ " (Press any key to continue)"
|
|
1005
1005
|
)
|
|
1006
1006
|
)
|
|
1007
|
-
|
|
1007
|
+
get_input()
|
|
1008
1008
|
wb = load_workbook(fpath)
|
|
1009
1009
|
sheet = wb[wb.sheetnames[0]]
|
|
1010
1010
|
|
|
@@ -1026,7 +1026,7 @@ class Score:
|
|
|
1026
1026
|
).format(self.total_points)
|
|
1027
1027
|
+ _(' (Yes: "Y","y")')
|
|
1028
1028
|
)
|
|
1029
|
-
y_input =
|
|
1029
|
+
y_input = get_input()
|
|
1030
1030
|
if y_input and y_input in "Yy":
|
|
1031
1031
|
del self.scores
|
|
1032
1032
|
break
|
|
@@ -1103,7 +1103,7 @@ class Score:
|
|
|
1103
1103
|
)
|
|
1104
1104
|
name_i = None
|
|
1105
1105
|
for i in range(0, 3):
|
|
1106
|
-
n_input =
|
|
1106
|
+
n_input = get_input().replace(" ", "")
|
|
1107
1107
|
if len(n_input) > 0:
|
|
1108
1108
|
if n_input.isnumeric():
|
|
1109
1109
|
n_input = int(n_input) - 1
|
|
@@ -1144,7 +1144,7 @@ class Score:
|
|
|
1144
1144
|
).format(app_name)
|
|
1145
1145
|
)
|
|
1146
1146
|
for i in range(0, 3):
|
|
1147
|
-
name0 =
|
|
1147
|
+
name0 = get_input().replace(" ", "")
|
|
1148
1148
|
if len(name0) > 0:
|
|
1149
1149
|
with open(self.names_fpath, "w", encoding="utf-8") as f:
|
|
1150
1150
|
f.write(">" + name0)
|
fnschool/external.py
CHANGED
fnschool/{show.py → inoutput.py}
RENAMED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
fnschool/path.py
CHANGED
fnschool/user.py
CHANGED
|
@@ -50,7 +50,7 @@ class User:
|
|
|
50
50
|
)
|
|
51
51
|
i_value = None
|
|
52
52
|
for i in range(0, 3):
|
|
53
|
-
i_value =
|
|
53
|
+
i_value = get_input().replace(" ", "")
|
|
54
54
|
if len(i_value) > 0:
|
|
55
55
|
break
|
|
56
56
|
if allow_blank:
|
|
@@ -69,7 +69,7 @@ class User:
|
|
|
69
69
|
+ "[Press any key to continue])"
|
|
70
70
|
).format(key, self.profile_fpath)
|
|
71
71
|
)
|
|
72
|
-
|
|
72
|
+
get_input()
|
|
73
73
|
|
|
74
74
|
return self.profile[key]
|
|
75
75
|
|
|
@@ -142,7 +142,7 @@ class User:
|
|
|
142
142
|
).format(name0)
|
|
143
143
|
)
|
|
144
144
|
|
|
145
|
-
n_input =
|
|
145
|
+
n_input = get_input()
|
|
146
146
|
|
|
147
147
|
if n_input.isnumeric():
|
|
148
148
|
n_input = int(n_input) - 1
|
|
@@ -203,7 +203,7 @@ class User:
|
|
|
203
203
|
|
|
204
204
|
print_warning(self.ask_name_s)
|
|
205
205
|
for i in range(0, 3):
|
|
206
|
-
n_input =
|
|
206
|
+
n_input = get_input().replace(" ", "")
|
|
207
207
|
n_input_len = len(n_input)
|
|
208
208
|
if n_input_len > 0:
|
|
209
209
|
self._name = n_input
|
|
@@ -236,7 +236,7 @@ class User:
|
|
|
236
236
|
+ "(Yes: 'Y','y')"
|
|
237
237
|
).format(self.name, self._dpath)
|
|
238
238
|
)
|
|
239
|
-
o_input =
|
|
239
|
+
o_input = get_input().replace(" ", "")
|
|
240
240
|
if len(o_input) > 0 and o_input in "Yy":
|
|
241
241
|
open_path(self._dpath)
|
|
242
242
|
self.dpath_showed = True
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
2
|
Name: fnschool
|
|
3
|
-
Version:
|
|
3
|
+
Version: 20250109.80500.803
|
|
4
4
|
Summary: Just some school related scripts, without any ambition.
|
|
5
5
|
Author-email: larryw3i <larryw3i@163.com>, Larry Wei <larryw3i@126.com>, Larry W3i <larryw3i@yeah.net>
|
|
6
6
|
Maintainer-email: larryw3i <larryw3i@163.com>, Larry Wei <larryw3i@126.com>
|
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
fnschool/__init__.py,sha256=
|
|
1
|
+
fnschool/__init__.py,sha256=dS4x0WPUWYx2GLXYk9LjY8J6A977MILm0YkWei3E1eQ,702
|
|
2
2
|
fnschool/__main__.py,sha256=oGh9O_iIErV4v8AggpUwrakCVfCfcm1HDOysOr9L6ro,235
|
|
3
3
|
fnschool/app.py,sha256=DxfVStj4s-v-56WjJcTpObc7zruw00GK_hJWSePDsIE,5301
|
|
4
4
|
fnschool/config.py,sha256=ut6QTRska_PvU1REJt3KmLkVxS8Vjj-uuq0B6MFU70U,1175
|
|
5
|
-
fnschool/entry.py,sha256=
|
|
6
|
-
fnschool/external.py,sha256=
|
|
5
|
+
fnschool/entry.py,sha256=r7Hvix0e5eC12QzJnCgWZqDE0vYed6kr7N-SjF3DFjA,1490
|
|
6
|
+
fnschool/external.py,sha256=RCE-1xL0ZHRdj72pHTcPOVKAww4TtUBB22Lz1Fb5jOQ,1894
|
|
7
|
+
fnschool/inoutput.py,sha256=NkT2rTtD9lQs0SrmlIF2TeanElhEiIEE4slMRbHzsJo,2091
|
|
7
8
|
fnschool/language.py,sha256=2XCG5tvp_Z66hG05qInHPqcOHE5qjZ0tdmFDjj82ewU,824
|
|
8
|
-
fnschool/path.py,sha256=
|
|
9
|
-
fnschool/show.py,sha256=74158pUeg795p9RXg39yGqOc2qUzUTnCRqXNMjR_0RU,2088
|
|
9
|
+
fnschool/path.py,sha256=9leJqYOM9FAR5mr_bS8gmEop4ZFPfvvMJGw46pWVpW0,836
|
|
10
10
|
fnschool/test.py,sha256=sF7xZJf1BwOnpMZ5H6iCoTMgo5gg7agnjXJIQKPM72U,517
|
|
11
|
-
fnschool/user.py,sha256=
|
|
11
|
+
fnschool/user.py,sha256=GPq_t41nQtyFmqTj1OTo7t0_taA5COuFaJloR-piONo,8330
|
|
12
12
|
fnschool/canteen/__init__.py,sha256=9GXq4YeAtst6KPJ8VkhXNrqqaLCNOHLYAldO2JszQNg,35
|
|
13
13
|
fnschool/canteen/__main__.py,sha256=cW2R2M5O71x8Byq1OyYI3zIYnCFq0wgAUDkyWAjoPe8,44
|
|
14
|
-
fnschool/canteen/bill.py,sha256=
|
|
14
|
+
fnschool/canteen/bill.py,sha256=a0osWxFZLVDvJw-elY3R_USbMzNxDKSh-QTo-VyXXIw,7040
|
|
15
15
|
fnschool/canteen/canteen.py,sha256=C6R6hOHaFmLJJa-CHHv-H0zNGV68Q6ii7uZyJ23pIWg,11
|
|
16
16
|
fnschool/canteen/canteen.toml,sha256=-h_dmpK9Qj59jNpMyHOCxGsY4xUKx0tg8bvzO67SIPw,898
|
|
17
17
|
fnschool/canteen/config.py,sha256=yqrvqFbP179J7qmYuflWLYa_en_EUaF7NNGwAQACrbE,184
|
|
18
18
|
fnschool/canteen/consume.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
19
19
|
fnschool/canteen/consuming.py,sha256=_2IpMgS_fzhnlWw1XzyzqBOSfHIwD7UBPeNYqJIXPH8,1468
|
|
20
|
-
fnschool/canteen/currency.py,sha256=
|
|
21
|
-
fnschool/canteen/entry.py,sha256=
|
|
20
|
+
fnschool/canteen/currency.py,sha256=sAMWeAvgp34JGgGsDWZPS0Nw7L3WOjLLQghy8ZMaP9Q,299
|
|
21
|
+
fnschool/canteen/entry.py,sha256=ZHXAH_5mSBannmdcE6RSLJDJxOEuGGudIeNNPfny3ZE,838
|
|
22
22
|
fnschool/canteen/food.py,sha256=xtcofwNcNNCX-YwCkhBbQI-ZuYxi1LBvPAwqsqt4V6I,6398
|
|
23
23
|
fnschool/canteen/food_classes.py,sha256=BbN4bO-6BFiFS5spfLQuDBzgseBg-1REonq1atqKZwM,666
|
|
24
24
|
fnschool/canteen/food_classes.toml,sha256=lhz5PEOP8qIV_osKqiGFc5U8v4y-swVea1AdNwXzzus,966
|
|
@@ -28,36 +28,36 @@ fnschool/canteen/operator.py,sha256=aV9BsTlarMEDv6NWD4u-sK5BgPM2FtLvzSTqrkDfsy4,
|
|
|
28
28
|
fnschool/canteen/path.py,sha256=SzzrQvjDvWntGCcnnXh8NNqvE65d7yhQ-Msr7NdRc7k,742
|
|
29
29
|
fnschool/canteen/test.py,sha256=b5JRVxvs6Z6vyx8zo8MAHY8kOJlGprPGVHRHJ3EoFuU,3126
|
|
30
30
|
fnschool/canteen/warehouse.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
31
|
-
fnschool/canteen/workbook.py,sha256=_Ni16lOF-UtRMga-68Gwf3sKOgt6Jjj2BDlqEVpYY4Y,98362
|
|
32
31
|
fnschool/canteen/workbook.toml,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
33
32
|
fnschool/canteen/data/bill.i18n.xlsx,sha256=wBDC_UiJMoTScuIDD9Y-qGf-h0UY-z5LsI9HxtzSVXs,250941
|
|
34
33
|
fnschool/canteen/data/bill.xlsx,sha256=6PaeLAc0mn8gvie4oeqwonm1o0HA3nTMKmz80I0NbJ4,250932
|
|
35
34
|
fnschool/canteen/data/consuming.xlsx,sha256=gfshtLXWZGOlUWSkuIuI3kpcIdtBb67hADqeOtI5LOg,47446
|
|
36
35
|
fnschool/canteen/data/purchase_list.xlsx,sha256=U14BZWTsN4b-J0qwCBVbBKm3t-Hyv5GcbztLyez2Iuk,16095
|
|
37
36
|
fnschool/canteen/spreadsheet/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
38
|
-
fnschool/canteen/spreadsheet/base.py,sha256
|
|
37
|
+
fnschool/canteen/spreadsheet/base.py,sha256=ikeYR17wajSTAoneXVQrYBX-BiRdd0VFuGup2cFUZE8,6334
|
|
39
38
|
fnschool/canteen/spreadsheet/consuming.py,sha256=olEWj7nkvUIpd_vo4VKKVLsAjJ08dzjBBeNkXkxEDsU,11019
|
|
40
|
-
fnschool/canteen/spreadsheet/consumingsum.py,sha256=
|
|
39
|
+
fnschool/canteen/spreadsheet/consumingsum.py,sha256=TaSWS9bY1p4LnwlXRDxKZSKAxZ90U6wOo--p7Y-6FUE,2303
|
|
41
40
|
fnschool/canteen/spreadsheet/cover.py,sha256=R71ChxnBVYXM5PB2eCPbNglMXv3cHMtTC-zVrw-wz_c,1878
|
|
42
|
-
fnschool/canteen/spreadsheet/ctspreadsheet.py,sha256=
|
|
43
|
-
fnschool/canteen/spreadsheet/food.py,sha256=
|
|
41
|
+
fnschool/canteen/spreadsheet/ctspreadsheet.py,sha256=yRz-cYMfHl97Udsm1m7juJjF1NduEri7u9GtTjDGrag,10424
|
|
42
|
+
fnschool/canteen/spreadsheet/food.py,sha256=ndPkDds5iFXFWQuDpAysPoXxDZtRllXGuzeD0Qsx8Ug,25231
|
|
44
43
|
fnschool/canteen/spreadsheet/inventory.py,sha256=4YQeV5r31GEoqESLbEUddLwdEoiDxJOrltDMQeeOw64,12992
|
|
45
|
-
fnschool/canteen/spreadsheet/merging.py,sha256=
|
|
46
|
-
fnschool/canteen/spreadsheet/preconsuming.py,sha256=
|
|
47
|
-
fnschool/canteen/spreadsheet/purchasing.py,sha256=
|
|
48
|
-
fnschool/canteen/spreadsheet/purchasingsum.py,sha256=
|
|
49
|
-
fnschool/canteen/spreadsheet/spreadsheet.py,sha256=
|
|
44
|
+
fnschool/canteen/spreadsheet/merging.py,sha256=smKVK1Go6m4kNWc8a1BFin_yP9ccjiT0xXpSD0r_dLk,10955
|
|
45
|
+
fnschool/canteen/spreadsheet/preconsuming.py,sha256=AYeXay3Rq3k-HIaTOSY5XqxXpDYggM6PrreNThGOP5Q,11414
|
|
46
|
+
fnschool/canteen/spreadsheet/purchasing.py,sha256=8pnY7Rhw31NT7Nabo1WBAnTpsRxQ-e-F3abUjwvp5SA,28873
|
|
47
|
+
fnschool/canteen/spreadsheet/purchasingsum.py,sha256=kalTqpQVMcIqQG9nERaRRUwZTozATN0jh3FR__XSeRg,3192
|
|
48
|
+
fnschool/canteen/spreadsheet/spreadsheet.py,sha256=cY0bk24EuAd0SRPPxNJ6h51oJE4ZJGM9Zm0z-d44ASg,10722
|
|
49
|
+
fnschool/canteen/spreadsheet/translating.py,sha256=_k4DHyYVcWlhruX93aGJMBMn60HRYuK_yvDVNuPHCNA,619
|
|
50
50
|
fnschool/canteen/spreadsheet/unwarehousing.py,sha256=PcD4K9CDVSYy3cUVbu4J0YIZpe_AmwZOkMQRlaoa3i8,6298
|
|
51
51
|
fnschool/canteen/spreadsheet/unwarehousingsum.py,sha256=8AcS2ALpbG3T2VVS1SNIq6J8HA2GSFs_dmDtZHuxn8k,199
|
|
52
52
|
fnschool/canteen/spreadsheet/warehousing.py,sha256=eGCl-PYqbkh2dej-5TvDIK8IQ15Uus31hwtlVCmmtmw,13085
|
|
53
53
|
fnschool/canteen/spreadsheet/workbook.py,sha256=CtbH-ipydrZqxRvoCDboJx-70bMHaDpHpkmVDQ2RWMU,367
|
|
54
54
|
fnschool/exam/__init__.py,sha256=HZx6UIBzPjOUMPUxaA812qM_jBwb5nrGGRkHuPNOAnA,148
|
|
55
55
|
fnschool/exam/__main__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
56
|
-
fnschool/exam/email.py,sha256=
|
|
57
|
-
fnschool/exam/entry.py,sha256=
|
|
56
|
+
fnschool/exam/email.py,sha256=c-q_RMAixPdZiafFSahc6Gkym0dgvQJ9qt18l05YtUo,11924
|
|
57
|
+
fnschool/exam/entry.py,sha256=TatI7TnTHG2IKj4Il1RDfNF160b818ogtokrhppfwkI,752
|
|
58
58
|
fnschool/exam/language.py,sha256=3-3oGWnXr_7TjZ9FH7lKaQ_6Hf9WqIA0d2cSpUQHZN4,484
|
|
59
59
|
fnschool/exam/path.py,sha256=2qoy2f9dxel84KAzonw34JT7oeqMMyVkVkJupfIBg-w,692
|
|
60
|
-
fnschool/exam/score.py,sha256=
|
|
60
|
+
fnschool/exam/score.py,sha256=40eimLJ-FUXCLGv0oCgII6kdflUE_eio5pHS-OeDNeA,39171
|
|
61
61
|
fnschool/exam/subject.py,sha256=jAYVx88sApQJHCFiPRr6nS22o-E488zW506Y_B1wfbw,339
|
|
62
62
|
fnschool/exam/teacher.py,sha256=OmgV91Y1SpiZ4_GZ3r-pIk-BX9XndfzBAtZwt7Bnqjw,1783
|
|
63
63
|
fnschool/exam/data/parental_emails.xlsx,sha256=Bbzd_etRPq5WvYF975xpKMIqWbLzqjFq3w6bfvOtWUw,7321
|
|
@@ -65,14 +65,14 @@ fnschool/exam/data/score.xlsx,sha256=NKczQgz0SPaGAr-7w4oCt5Vk49ZxQrjuKYkUZlIrefU
|
|
|
65
65
|
fnschool/games/__init__.py,sha256=C6R6hOHaFmLJJa-CHHv-H0zNGV68Q6ii7uZyJ23pIWg,11
|
|
66
66
|
fnschool/games/__main__.py,sha256=C6R6hOHaFmLJJa-CHHv-H0zNGV68Q6ii7uZyJ23pIWg,11
|
|
67
67
|
fnschool/games/games.py,sha256=C6R6hOHaFmLJJa-CHHv-H0zNGV68Q6ii7uZyJ23pIWg,11
|
|
68
|
-
fnschool/locales/en_US/LC_MESSAGES/fnschool.mo,sha256=
|
|
69
|
-
fnschool/locales/zh_CN/LC_MESSAGES/fnschool.mo,sha256=
|
|
70
|
-
fnschool/locales/zh_HK/LC_MESSAGES/fnschool.mo,sha256
|
|
71
|
-
fnschool/locales/zh_SG/LC_MESSAGES/fnschool.mo,sha256=
|
|
72
|
-
fnschool/locales/zh_TW/LC_MESSAGES/fnschool.mo,sha256=
|
|
73
|
-
fnschool-
|
|
74
|
-
fnschool-
|
|
75
|
-
fnschool-
|
|
76
|
-
fnschool-
|
|
77
|
-
fnschool-
|
|
78
|
-
fnschool-
|
|
68
|
+
fnschool/locales/en_US/LC_MESSAGES/fnschool.mo,sha256=GspVeXLUpKKr245oJaXhew-S6ynJxcjkGaSGzy8A_4U,451
|
|
69
|
+
fnschool/locales/zh_CN/LC_MESSAGES/fnschool.mo,sha256=kiWFce9J90sDES-LVtnV528PkPepzG_d7LwY51BBtow,26252
|
|
70
|
+
fnschool/locales/zh_HK/LC_MESSAGES/fnschool.mo,sha256=LIkwykEwzZo3FOcbPfNhiCp3Eb0Io7LNrWcYNcT_bVU,454
|
|
71
|
+
fnschool/locales/zh_SG/LC_MESSAGES/fnschool.mo,sha256=m9eWOXQFgvCkJQviab0O3fMFzHcTfSLhY9-VPpnfVAI,454
|
|
72
|
+
fnschool/locales/zh_TW/LC_MESSAGES/fnschool.mo,sha256=mH6DlWIQVbR18YrbMUNI951vj8eLa3ZE_DHBOpWvFu8,454
|
|
73
|
+
fnschool-20250109.80500.803.dist-info/LICENSE,sha256=2n6rt7r999OuXp8iOqW9we7ORaxWncIbOwN1ILRGR2g,7651
|
|
74
|
+
fnschool-20250109.80500.803.dist-info/METADATA,sha256=qNfGDK9nPkxHfcpeBil39b3xLtcU10lf_YXcGMIIfIA,13640
|
|
75
|
+
fnschool-20250109.80500.803.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
76
|
+
fnschool-20250109.80500.803.dist-info/entry_points.txt,sha256=XKudeSpooEfGtZrthDxc7wwIaKDA_SPz_dciI3YMsnI,99
|
|
77
|
+
fnschool-20250109.80500.803.dist-info/top_level.txt,sha256=1mt3yGbyMzI2A8F9tn4FtkU1eMSYnigdp9BwVWmvtng,9
|
|
78
|
+
fnschool-20250109.80500.803.dist-info/RECORD,,
|