Вот код, с которым я пытаюсь получить доступ к быстрому серверу:Как подключиться к быстрому серверу с помощью трапецеидального искажения или без него?
import swiftclient
user = 'swift'
key = 'password'
conn = swiftclient.client.Connection(
authurl='http://0.0.0.0:5000/v2.0',
user=user,
key=key,
tenant_name = 'service',
auth_version = '2.0',
#os_options={'tenant_id':}
)
container_name = 'my-new-container'
conn.put_container(container_name)
with open('hello.txt', 'r') as hello_file:
conn.put_object(container_name, 'hello.txt',
contents= hello_file.read(),
content_type='text/plain')
В настоящее время я пытаюсь создать тест состояние происходит немного доделать. Я следовал указанным учебникам дословно и оставил все по умолчанию.
Извините за мое полное невежество, но я одновременно линукс и питон нуб.
Я следующие инструкции: [1] (https://www.swiftstack.com/docs/integration/keystone.html) [2] (https://github.com/swiftstack/keystone_install) [3] (http://docs.openstack.org/developer/swift/development_saio.html) – Vrankela