man. some major restructuring, and envsetup.py is a kinda neat hack.

This commit is contained in:
brent s
2019-09-30 22:08:37 -04:00
parent 7a2e66f1a2
commit 3ca56d7b5c
17 changed files with 1184 additions and 2429 deletions

17
aif/config.py Normal file
View File

@@ -0,0 +1,17 @@
import os
##
from lxml import etree
class Config(object):
def __init__(self):
self.xml = None
def parseLocalFile(self, fpath):
fpath = os.path.abspath(os.path.expanduser(fpath))
pass
def parseRemoteFile(self, url):
pass
def parseRawContent(self, content):
pass