update dist/
This commit is contained in:
parent
c7c41e7468
commit
edfd3640e6
2
core.py
2
core.py
|
@ -3,6 +3,7 @@ import youtube_dl
|
||||||
from feedgen.feed import FeedGenerator
|
from feedgen.feed import FeedGenerator
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
|
import __main__
|
||||||
import argparse
|
import argparse
|
||||||
import ydl
|
import ydl
|
||||||
import interface
|
import interface
|
||||||
|
@ -28,7 +29,6 @@ args = parser.parse_args()
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
print(args.interface)
|
|
||||||
if not args.interface:
|
if not args.interface:
|
||||||
ydlo = ydl.ydl_object(args)
|
ydlo = ydl.ydl_object(args)
|
||||||
ydlo.print_infos()
|
ydlo.print_infos()
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
import tkinter as tk
|
import tkinter as tk
|
||||||
from tkinter import filedialog
|
from tkinter import filedialog
|
||||||
import os
|
import os
|
||||||
|
import sys
|
||||||
|
|
||||||
class Interface(tk.Frame):
|
class Interface(tk.Frame):
|
||||||
def __init__(self, master=None):
|
def __init__(self, master=None):
|
||||||
|
@ -9,7 +10,11 @@ class Interface(tk.Frame):
|
||||||
self.create_widgets()
|
self.create_widgets()
|
||||||
|
|
||||||
def create_command(self):
|
def create_command(self):
|
||||||
command = 'python core.py'
|
if os.path.split(sys.argv[0])[1] == 'core.py':
|
||||||
|
command = 'python {}'.format(os.path.abspath(sys.argv[0]))
|
||||||
|
else:
|
||||||
|
command = '{}'.format(os.path.abspath(sys.argv[0]))
|
||||||
|
|
||||||
for key in self.args:
|
for key in self.args:
|
||||||
if bool(self.args[key].get()):
|
if bool(self.args[key].get()):
|
||||||
print('{}: Option non vide'.format(key))
|
print('{}: Option non vide'.format(key))
|
||||||
|
|
Loading…
Reference in New Issue