Initial commit.
This commit is contained in:
commit
c3a94efd4a
35
.gitignore
vendored
Normal file
35
.gitignore
vendored
Normal 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
0
LICENSE.txt
Normal file
4
README.md
Normal file
4
README.md
Normal 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
1
requirements.txt
Normal file
@ -0,0 +1 @@
|
|||||||
|
requests==1.2.3
|
||||||
18
src/main.py
Normal file
18
src/main.py
Normal 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()
|
||||||
18
src/mbta_alert/__init__.py
Normal file
18
src/mbta_alert/__init__.py
Normal 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
|
||||||
Loading…
x
Reference in New Issue
Block a user