Closed aluttik closed 7 years ago
we shouldn't have to make the user do something stupid like
from crossplane.parse import parse_file parse_file(filename)
Instead, make it simpler so they can just do something like
import crossplane crossplane.parse(filename)
or obviously
from crossplane import parse parse(filename)
we shouldn't have to make the user do something stupid like
Instead, make it simpler so they can just do something like
or obviously