Initial commit

This commit is contained in:
Yeongdo Park 2019-07-21 12:00:14 -04:00
commit 1b9a5d5115
3 changed files with 19 additions and 0 deletions

10
Dockerfile Normal file
View file

@ -0,0 +1,10 @@
FROM python:3
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY queue-cycle.py ./
CMD [ "python", "./queue-cycle.py" ]

8
queue-cycle.py Normal file
View file

@ -0,0 +1,8 @@
from clutch.core import *
from pprint import pprint
c = Client(username='ignis', password='ignis')
for k, v in c.list().items():
pprint (v)

1
requirements.txt Normal file
View file

@ -0,0 +1 @@
transmission-clutch