Compare commits

..

No commits in common. "156ef04b612cf4544de92c5a31aec16f8e857e21" and "7a7f3591d25c205da3bf252ed4a7b595e34b9656" have entirely different histories.

4 changed files with 0 additions and 21 deletions

View File

@ -1,18 +0,0 @@
#!/usr/bin/env python
import time
import requests
import config
from plugins import plugins
def main():
data = requests.get(config.CAR_API_URL)
for plugin in plugins:
plugin.check(data)
if __name__ == "__main__":
while True:
main()
time.sleep(config.DELAY)

View File

@ -1 +0,0 @@
plugins = []

View File

@ -1 +0,0 @@
requests>=2.0

View File

@ -1,3 +1,2 @@
OSD_URL = "http://localhost:5050/send/"
CAR_API_URL = "http://localhost:5000/all/"
DELAY = 0