Added requirements.txt. Started adding logic to pull latest version from git.

This commit is contained in:
dan
2021-06-10 23:50:24 -04:00
parent 8e09abb4d8
commit 086cd1edf9
2 changed files with 8 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
import reprlib
import os
import requests
# payload = {'isbn': '9780062113788'}
@@ -37,7 +37,8 @@ while True:
elif command == 'CARD':
Card = 1
elif command == 'UPDATE':
pass
os.system('cd ~/libraryClient')
os.system('git pull')
elif command == '':
pass
else:

5
requirements.txt Normal file
View File

@@ -0,0 +1,5 @@
certifi==2021.5.30
chardet==4.0.0
idna==2.10
requests==2.25.1
urllib3==1.26.5