Move code into grzegorz_clients folder in preperation of making this into a pytohn module
This commit is contained in:
parent
029fe7884f
commit
be484767c5
|
@ -0,0 +1,2 @@
|
|||
from . import api
|
||||
from . import gui
|
|
@ -1,7 +1,7 @@
|
|||
import requests, json
|
||||
from urllib.parse import urlencode
|
||||
from functools import wraps
|
||||
import api
|
||||
from . import api
|
||||
|
||||
# This must be set to be able to use it on remote hosts
|
||||
BASE_URL = "http://localhost:8080/api"
|
|
@ -2,9 +2,8 @@ import random, os, time, shutil, sys
|
|||
from threading import Timer
|
||||
import remi.gui as gui
|
||||
from remi import App
|
||||
from utils import Namespace, call_as_thread, get_youtube_metadata
|
||||
|
||||
import api
|
||||
from .utils import Namespace, call_as_thread, get_youtube_metadata
|
||||
from . import api
|
||||
|
||||
#globals:
|
||||
COLOR_BLUE = "rgb(33, 150, 243)"
|
Loading…
Reference in New Issue