mirror of
https://github.com/MCV-Software/TWBlue.git
synced 2025-04-05 03:12:29 -04:00
Read keys from environment
This commit is contained in:
parent
a3e5eec6de
commit
d11fc44772
@ -1,6 +1,7 @@
|
|||||||
#! /usr/bin/env python# -*- coding: iso-8859-1 -*-
|
#! /usr/bin/env python# -*- coding: iso-8859-1 -*-
|
||||||
""" Write version info (taken from the last commit) to application.py. This method has been implemented this way for running updates.
|
""" Write version info (taken from the last commit) to application.py. This method has been implemented this way for running updates.
|
||||||
This file is not intended to be called by the user. It will be used only by the Gitlab CI runner."""
|
This file is not intended to be called by the user. It will be used only by the Gitlab CI runner."""
|
||||||
|
import os
|
||||||
import requests
|
import requests
|
||||||
from codecs import open
|
from codecs import open
|
||||||
|
|
||||||
@ -28,8 +29,8 @@ file2.write(contents)
|
|||||||
file2.close()
|
file2.close()
|
||||||
print("done")
|
print("done")
|
||||||
file3 = open("appkeys.py", "w")
|
file3 = open("appkeys.py", "w")
|
||||||
keys = """twitter_api_key = "daMHlXsFlalEWtaqTL7xd6TqZ"
|
keys = """twitter_api_key = {}
|
||||||
twitter_api_secret = "lOcpsIlhr1lBpA53oNWwmKh9yM6Gqk3IRFOzq9TvAO8B5gisFD"
|
twitter_api_secret = {}
|
||||||
"""
|
""".format(os.environ.get("TWITTER_API_KEY"), os.environ.get("TWITTER_API_SECRET"))
|
||||||
file3.write(keys)
|
file3.write(keys)
|
||||||
file3.close()
|
file3.close()
|
Loading…
x
Reference in New Issue
Block a user