Open
Description
I personally dislike the current behavior of:
from verbalexpressions import VerEx
foo = VerEx().find(...).anything_but(...)
As opposed to an arguably more Pythonic way:
import verbalexpressions as verex
foo = verex.find(...).anything_but(...)
I would like to contribute and implement the functionality in question, but I need to know first that it would be a welcome change -- else I'd be just wasting everyone's time.
What do you guys think, would it be cleaner to implement it to support module scope function calls? Obviously each call to these module scope functions would still create a new VerEx
object internally.
Metadata
Metadata
Assignees
Labels
No labels