mirror of
https://github.com/silenty4ng/k5web
synced 2024-11-14 22:35:31 +00:00
11 lines
221 B
Python
11 lines
221 B
Python
|
import os
|
||
|
import json
|
||
|
|
||
|
list = []
|
||
|
for filename in os.listdir(r'.'):
|
||
|
if filename[-1] == 'n':
|
||
|
list.append(filename)
|
||
|
|
||
|
print(json.dumps(list))
|
||
|
with open("version.json","w") as file:
|
||
|
file.write(json.dumps(list))
|