meow
e4034813a2
README.md updated to show cli usage. Account Creation message made more appropriate for consumption. Bug Fixed in scripts/get-admin.py
8 lines
No EOL
218 B
Python
8 lines
No EOL
218 B
Python
import decouple
|
|
|
|
from os.path import join as join_path
|
|
from etcd3_wrapper import Etcd3Wrapper
|
|
|
|
client = Etcd3Wrapper()
|
|
admin_uotp = client.get(join_path(decouple.config('BASE_PREFIX'), 'admin'))
|
|
print(admin_uotp.value) |