This commit is contained in:
Willy-JL
2023-02-02 21:38:45 +00:00
parent 651548913e
commit e33023463a
50 changed files with 336 additions and 256 deletions
+6 -3
View File
@@ -1,12 +1,14 @@
# Flipper Zero SUB-GHZ Playlist Generator
import os
import pip
try:
from easygui import diropenbox
except ImportError:
pip.main(['Install'], "easygui")
pip.main(["Install"], "easygui")
from easygui import diropenbox
def main():
folder_path = diropenbox("Select the folder with Subghz files", "Subghz selector")
output_path = diropenbox("Select your output location", "Output location")
@@ -23,5 +25,6 @@ def main():
playlist_file.close()
print("Done!")
if __name__ == '__main__':
main()
if __name__ == "__main__":
main()