1 """
2 s3: a set of classes for interacting with amazon's s3.
3
4 The aim of this library is to try to export all of the s3
5 functionality while staying true to python's feel.
6
7 Hopefully, usage should be pretty straight forward. I'd suggest
8 looking over the test code in test.py, and then look at the doc
9 strings in the methods of the classes of S3Service and S3Bucket.
10 """
11
12 VERSION = '2006-03-01'
13 DEFAULT_HOST = "s3.amazonaws.com"
14
15
16
17
18
19
20
21
22 from connection import S3Connection
23 from service import S3Service
24 from objects import S3Bucket, S3Object
25 from generator import S3Generator
26 from errors import S3Error
27
28 Service = S3Service
29 Generator = S3Generator
30