Browse Source

changes to allow for live deployment vs on-plane POC w/ local files

tarfeef101 4 years ago
parent
commit
d792fecdc7
5 changed files with 24 additions and 11 deletions
  1. 11 0
      README.md
  2. 6 6
      docker-compose.yaml
  3. 1 1
      live/Dockerfile
  4. 6 4
      live/live.py
  5. 0 0
      live/live_dump.json

+ 11 - 0
README.md

@@ -0,0 +1,11 @@
+# Description
+Simple http(s) API to get Mobi Bikeshare station information live
+
+# Usage
+To get the available bikes+slots at Tareef's Home Station, hit https://api.tareef.tech/api/home.
+
+To get the available bikes+slots at Tareef's Workplace Station, hit https://api.tareef.tech/api/work.
+
+To get the same information about any stations, hit https://api.tareef.tech/api/station_id or https://api.tareef.tech/api/station_name, where `station_id` is the station ID shown in the mobi website, and `station_name` is the station name (i.e. `Pender & Burrard`). Please note that the spaces/special characters should be encoded in the latter case, but most tools will handle that for you.
+
+To get only a given metric about a given station, hit hit https://api.tareef.tech/api/station/metric, where the `station` is defined like above, and the metric is one of: `[spots, bikes, capacity, location]`.

+ 6 - 6
docker-compose.yaml

@@ -6,9 +6,9 @@ services:
     container_name: mobi_live
     ports:
       - 5000:5000
-  web:
-    build: ./web
-    image: mobi_proxy
-    container_name: mobi_proxy
-    ports:
-      - 8000:80
+#  web:
+#    build: ./web
+#    image: mobi_proxy
+#    container_name: mobi_proxy
+#    ports:
+#      - 8000:80

+ 1 - 1
live/Dockerfile

@@ -2,7 +2,7 @@ FROM python:3.8-alpine
 
 WORKDIR /opt
 RUN pip install flask requests
-COPY live.py live_dump.json /opt/
+COPY live.py /opt/
 ENV FLASK_APP=live.py
 
 CMD python -m flask run --host=0.0.0.0

+ 6 - 4
live/live.py

@@ -15,19 +15,21 @@ url = "https://vancouver-ca.smoove.pro/api-public/stations"
 #    old_data = json.load(f)
 #    data = old_data
 
+# init globals
+data = None
+app = Flask(__name__)
+
 def refresh_data():
+    global data
     # try to get new data
     try:
         new = requests.get(url)
     except requests.exceptions.RequestException:
-        print("failed to get data")
+        app.logger.error("failed to get data")
         data = None
     else:
         data = new.json()["result"]
 
-# init libs
-app = Flask(__name__)
-
 # main function to get data from api
 def get_bikes(station, metric):
     refresh_data()

File diff suppressed because it is too large
+ 0 - 0
live/live_dump.json


Some files were not shown because too many files changed in this diff