diff --git a/README.md b/README.md index 3158c01..c682bdd 100644 --- a/README.md +++ b/README.md @@ -1,19 +1,12 @@ -# OSC-TO_SCRIPT +# OSC-2-BAT ## GETTING STARTED -- Create directory for project to live in -- Drop Batch Files to execute into the project directory -- Navigate to this folder in terminal/command prompt -- Run the following commands -> \/python.exe -m venv venv -> -> \/venv/Scripts/activate.bat -> -> pip install python-osc - -To run the server: - -> "\/venv/Scripts/python.exe" "\/server.py" - -OR - -> "\/venv/Scripts/pythonw.exe" "\/server.py" +- Clone Git Repository +- Create Python Virtual Environment in Folder +- Install requirements.txt via pip +- Run osc-2-bat.py in virtual environment +## FLAGS +- -i [IP ADDRESS] --ip [IP ADDRESS] IP Address to listen on +- -p [PORT] --port [PORT] Port to listen on +- -s [FOLDER] --scripts [SCRIPTS] Folder containing batch script files +- -l [LEVEL] --log-level [LEVEL] Log Level [CRITICAL, ERROR, WARNING, INFO, DEBUG, NOTSET] +- -nl --no-logging Disable logging \ No newline at end of file diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..76823c1 --- /dev/null +++ b/requirements.txt @@ -0,0 +1 @@ +python-osc==1.8.3