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
""" | |
Run this backup script daily with a cronjob. Will Store 4 backups of each at a time. | |
It could obviously be modified to support more backups. It is written in a quick and dirty fashion. | |
... It's a backup script that works. Who cares? | |
dependencies: | |
- EC2 API Tools | |
Be sure to set up environment variables for AWS_ACCESS_KEY and AWS_SECRET_KEY | |
""" |
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
#!/usr/bin/env python | |
"""Python trie implementation.""" | |
__author__ = "Chiedo John" | |
__copyright__ = "Copyright 2015, Chiedo, Inc." | |
__license__ = "GPL" | |
__version__ = "1.0.0" | |
__maintainer__ = "Chiedo John" | |
NewerOlder