summaryrefslogtreecommitdiff
path: root/unidecode/__main__.py
Commit message (Collapse)AuthorAgeFilesLines
* Add __main__.py file so the CLI can be executed as a moduleJon Dufresne2018-12-311-0/+3
Allows running the following command to execute the CLI $ python -m unidecode ... https://docs.python.org/3/library/__main__.html > For a package, the same effect can be achieved by including a > __main__.py module, the contents of which will be executed when the > module is run with -m.