Commit ee607237 authored by iregon's avatar iregon
Browse files

First commit

parent 3748be7e
import sys
from mdf_reader import read
if __name__ == '__main__':
kwargs = dict(arg.split('=') for arg in sys.argv[2:])
if 'sections' in kwargs.keys():
kwargs.update({ 'sections': [ x.strip() for x in kwargs.get('sections').split(",")] })
read(sys.argv[1], **kwargs) # kwargs
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment