Преглед изворни кода

Added django project

  This commit adds the needed stuff for the django project

  It also includes a TODO.md file for listing what needs to be done
Apollo пре 3 година
родитељ
комит
fe6dfe771c
3 измењених фајлова са 34 додато и 1 уклоњено
  1. 6 1
      README.md
  2. 24 0
      TODO.md
  3. 4 0
      requirements.txt

+ 6 - 1
README.md

@@ -1,3 +1,8 @@
 # pyRoku
 
-The python version of goRoku with Django
+The python version of goRoku with Django
+
+## Features
+
+* Same Web based remote control
+* Good example of Django in Python

+ 24 - 0
TODO.md

@@ -0,0 +1,24 @@
+
+* Begin translating the Go code from goRoku on sending commands to a Roku device
+
+> This should allow me to perform basic calls to 'do' something, and allow me to process return data (If I remember it's JSON responses)
+
+
+# Important
+
+* Build the basic internals for Python to send HTTP packets to control a Roku device
+
+> This should simply be translating the Go code from goRoku into Python with requests
+
+* Look into sending and recieving packets of UDP on our port 1900 for locating Roku devices
+
+> This feature became too complex in Go thus in goRoku it's in a incomplete state, hopefully
+in Python it's a little easier
+
+# Back burner
+
+* Build a Django template to handle practically the same concept of pushing a button makes AJAX call
+to issue a Roku device command
+
+> Since I've already got the AJAX call taken care of I just need to build it so Django's routing supports redirecting once we've send the command,
+I'd also like to support the 'where are we at' feature (Which uses AJAX to change the text from the response)

+ 4 - 0
requirements.txt

@@ -0,0 +1,4 @@
+asgiref==3.5.0
+Django==3.2.12
+pytz==2021.3
+sqlparse==0.4.2