Initial commit, what is going on

This commit is contained in:
Carlos Sanchez 2023-04-30 18:13:02 -04:00
commit ebb11e59c6
3 changed files with 16 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
python34/
junk/

13
main.py Normal file
View File

@ -0,0 +1,13 @@
import json
import logging
# The entire config object with all defaults
config = {
"api" : "https://oboy.smilebasicsource.com/api"
}
def main():
print("Program start")
logging.debug("Config: " + json.dumps(config, indent = 2))
print("Program end")

1
run.bat Normal file
View File

@ -0,0 +1 @@
python34\python.exe main.py