Skip to content

Commit

Permalink
Initial structure
Browse files Browse the repository at this point in the history
  • Loading branch information
Marek Zdonek committed Mar 23, 2018
1 parent e0ee244 commit 4683a8b
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
db.yaml
*.swp*
11 changes: 11 additions & 0 deletions app.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/usr/bin/python

import yaml

with open("config.yaml", 'r') as config_file:
conf = yaml.load(config_file)
print(conf)

for entry in conf['tv_series']:
print('Entry: ')
print(entry['name'])
Empty file added app/src/db.py
Empty file.
Empty file added app/src/eztv_parser.py
Empty file.

0 comments on commit 4683a8b

Please sign in to comment.