Blender-Pipeline/project_manager/update_request.py

23 lines
597 B
Python
Raw Normal View History

2020-11-26 16:50:17 +01:00
# THIS FILE IS A PART OF VCStudio
# PYTHON 3
import urllib3
# This file requests a update from the GITHUB reposytory containing the update
# information.
2020-11-26 17:06:28 +01:00
filepath = "https://notabug.org/jyamihud/VCStudio/raw/master/settings/update.data"
2020-11-26 16:50:17 +01:00
# Those 3 lines basically retrieve the file from the internet and output them
# to the console. Which I'm catching in the update_reader.py using a Pipe.
try:
http = urllib3.PoolManager()
resp = http.request('GET', filepath)
print(resp.data.decode('utf-8'))
except:
data = open("settings/update.data")
print(data.read())
print("END")