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
|
import requests, json
|
||||||
from urllib.parse import urlencode
|
from urllib.parse import urlencode
|
||||||
from functools import wraps
|
from functools import wraps
|
||||||
import api
|
from . import api
|
||||||
|
|
||||||
# This must be set to be able to use it on remote hosts
|
# This must be set to be able to use it on remote hosts
|
||||||
BASE_URL = "http://localhost:8080/api"
|
BASE_URL = "http://localhost:8080/api"
|
|
@ -2,9 +2,8 @@ import random, os, time, shutil, sys
|
||||||
from threading import Timer
|
from threading import Timer
|
||||||
import remi.gui as gui
|
import remi.gui as gui
|
||||||
from remi import App
|
from remi import App
|
||||||
from utils import Namespace, call_as_thread, get_youtube_metadata
|
from .utils import Namespace, call_as_thread, get_youtube_metadata
|
||||||
|
from . import api
|
||||||
import api
|
|
||||||
|
|
||||||
#globals:
|
#globals:
|
||||||
COLOR_BLUE = "rgb(33, 150, 243)"
|
COLOR_BLUE = "rgb(33, 150, 243)"
|
6
main.py
6
main.py
|
@ -1,8 +1,8 @@
|
||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
from remi import start
|
|
||||||
import os
|
import os
|
||||||
import api
|
from remi import start
|
||||||
import gui
|
from grzegorz_clients import api, gui
|
||||||
|
|
||||||
|
|
||||||
# config must be a object with the attributes seen in default_config.py:
|
# config must be a object with the attributes seen in default_config.py:
|
||||||
def main(config):
|
def main(config):
|
||||||
|
|
Loading…
Reference in New Issue