wildcard-matcher

A simple wildcard string matcher


License
MIT
Install
pip install wildcard-matcher==0.0.3

Documentation

wildcard_matcher

A simple wildcard string matcher widget for python 3.x.

Installation

python -m pip install wildcard_matcher

Usage

>>> import wildcard_matcher
>>> wildcard_matcher.match("hello world", "hello*")
True
>>> wildcard_matcher.match("hello world", "he*lo*world")
True
>>> wildcard_matcher.match("hello world", "he*lo*rld")
True

Contributing

Please feel free to log an issue with examples of what you tried and didn't work. PRs are most welcome.

Changelog

  • 0.0.1 and 0.0.2 Initial release and getting packaging right.
  • 0.0.3 trying to add typing file.