Created
September 18, 2014 02:31
-
-
Save sathlan/0aee652c8905795beb74 to your computer and use it in GitHub Desktop.
simple swift debug client.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import swiftclient | |
c = swiftclient.client.Connection( | |
authurl='http://localhost:8080/auth/v1.0', | |
user='test:tester', | |
key='testing', | |
auth_version='1') | |
con_path = c.get_container(container='docker', | |
path='lvl_1/') | |
con_prefix = c.get_container(container='docker', | |
prefix='lvl_1/', | |
delimiter='/') | |
import epdb | |
epdb.set_trace() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment