Skip to content
This repository has been archived by the owner on Nov 4, 2018. It is now read-only.

Commit

Permalink
Moved modules to their own package
Browse files Browse the repository at this point in the history
git-svn-id: https://s3tools.svn.sourceforge.net/svnroot/s3tools/s3py/trunk@43 830e0280-6d2a-0410-9c65-932aecc39d9d
  • Loading branch information
mludvig committed Jan 13, 2007
1 parent d6689c6 commit ad8eaa6
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 4 deletions.
4 changes: 4 additions & 0 deletions .svnignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## Run 'svn propset svn:ignore -F .svnignore .' after you change this list
*.pyc
tst.*
MANIFEST
dist
build
.*.swp
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Empty file added S3/__init__.py
Empty file.
13 changes: 9 additions & 4 deletions s3.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
#!/usr/bin/env python

## Amazon S3 manager
## Author: Michal Ludvig <michal@logix.cz>
## http://www.logix.cz/michal
## License: GPL Version 2

import httplib2
import sys
import os, os.path
Expand All @@ -16,10 +21,10 @@
import elementtree.ElementTree as ET

## Our modules
from utils import *
from SortedDict import SortedDict
from BidirMap import BidirMap
from ConfigParser import ConfigParser
from S3.utils import *
from S3.SortedDict import SortedDict
from S3.BidirMap import BidirMap
from S3.ConfigParser import ConfigParser

class AwsConfig:
parsed_files = []
Expand Down

0 comments on commit ad8eaa6

Please sign in to comment.