Initial commit.

This commit is contained in:
Ian Adam Naval 2013-06-25 00:41:43 -04:00
commit c3a94efd4a
6 changed files with 76 additions and 0 deletions

35
.gitignore vendored Normal file
View File

@ -0,0 +1,35 @@
*.py[cod]
# C extensions
*.so
# Packages
*.egg
*.egg-info
dist
build
eggs
parts
bin
var
sdist
develop-eggs
.installed.cfg
lib
lib64
# Installer logs
pip-log.txt
# Unit test / coverage reports
.coverage
.tox
nosetests.xml
# Translations
*.mo
# Mr Developer
.mr.developer.cfg
.project
.pydevproject

0
LICENSE.txt Normal file
View File

4
README.md Normal file
View File

@ -0,0 +1,4 @@
MBTA Alert
==========
Simple tool to send me e-mail alerts while to let me know that I should leave for the bus.

1
requirements.txt Normal file
View File

@ -0,0 +1 @@
requests==1.2.3

18
src/main.py Normal file
View File

@ -0,0 +1,18 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
:mod:`main` -- Main
===================
:platform: Unix
:synopsis: Main module for MBTA Alert.
:author: Ian Adam Naval <ianonavy@gmail.com>
Third party dependencies: none
"""
from mbta_alert import MBTAAlerter
if __name__ == '__main__':
MBTAAlerter()

View File

@ -0,0 +1,18 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
:mod:`mbta_alert` -- MBTA Alerter
=================================
:platform: Unix
:synopsis: Simple tool to alert me when it is time to leave.
:author: Ian Adam Naval <ianonavy@gmail.com>
Third party dependencies: requests
"""
import requests
class MBTAAlerter(object):
pass