s3tk 229 B

1234567891011
  1. #!/usr/bin/env python
  2. import sys
  3. import s3tk
  4. import botocore
  5. try:
  6. s3tk.cli()
  7. except (botocore.exceptions.BotoCoreError, botocore.exceptions.ClientError) as e:
  8. s3tk.abort(str(e))
  9. except KeyboardInterrupt:
  10. sys.exit(1)