mirror of https://github.com/zulip/zulip.git
zephyr_mirror: Read in API keys from a file in your MIT homedir.
(imported from commit eb0fcf032b26388da1785d41bd182218559bfd06)
This commit is contained in:
parent
2c9cc7d393
commit
be8404e101
|
@ -53,10 +53,14 @@ parser.add_option('--site',
|
||||||
action='store')
|
action='store')
|
||||||
parser.add_option('--api-key',
|
parser.add_option('--api-key',
|
||||||
dest='api_key',
|
dest='api_key',
|
||||||
default="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
|
default=None,
|
||||||
action='store')
|
action='store')
|
||||||
(options, args) = parser.parse_args()
|
(options, args) = parser.parse_args()
|
||||||
|
|
||||||
|
if options.api_key is None:
|
||||||
|
api_key_file = os.path.join(os.environ["HOME"], "Private", ".humbug-api-key")
|
||||||
|
options.api_key = file(api_key_file).read().strip()
|
||||||
|
|
||||||
sys.path.append(".")
|
sys.path.append(".")
|
||||||
sys.path.append(os.path.dirname(os.path.dirname(__file__)))
|
sys.path.append(os.path.dirname(os.path.dirname(__file__)))
|
||||||
import api.common
|
import api.common
|
||||||
|
|
Loading…
Reference in New Issue