Skip to content

Commit

Permalink
sync with dev repo
Browse files Browse the repository at this point in the history
  • Loading branch information
igabriel85 committed Nov 11, 2016
1 parent 554c36c commit 6681464
Show file tree
Hide file tree
Showing 18 changed files with 2,126 additions and 361 deletions.
18 changes: 18 additions & 0 deletions adpconfig.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
from ConfigParser import SafeConfigParser


def readConf(file):
'''
:param file: location of config file
:return: conf file as dict
'''
parser = SafeConfigParser()
parser.read(file)
conf = {}
for selection in parser.sections():
inter = {}
for name, value in parser.items(selection):
inter[name] = value
conf[selection] = inter
return conf

1 change: 1 addition & 0 deletions adpengine/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from dmonadpengine import *
209 changes: 0 additions & 209 deletions adpengine/adppoint.py

This file was deleted.

Loading

0 comments on commit 6681464

Please sign in to comment.