mirror of
https://git.freebsd.org/ports.git
synced 2025-05-30 09:56:43 -04:00
Resolve specially formated statements to Python objects. Turn strings like "packagename.modulename:Eval().the_rest()" into whatever you would get back by performing a similar sequence of imports and calls. This is useful for config files and situations where you would like to import things in a lazy way. Later this package will probably provide a way to restrict resolution for safety. WWW: http://lukearno.com/projects/resolver/ PR: ports/181859 Submitted by: Trevor Caira <trevor bitba.se>
9 lines
434 B
Text
9 lines
434 B
Text
Resolve specially formated statements to Python objects.
|
|
|
|
Turn strings like "packagename.modulename:Eval().the_rest()" into
|
|
whatever you would get back by performing a similar sequence of
|
|
imports and calls. This is useful for config files and situations
|
|
where you would like to import things in a lazy way. Later this
|
|
package will probably provide a way to restrict resolution for safety.
|
|
|
|
WWW: http://lukearno.com/projects/resolver/
|