diff --git a/chardet/__main__.py b/chardet/__main__.py new file mode 100644 index 00000000..c19b0d2d --- /dev/null +++ b/chardet/__main__.py @@ -0,0 +1,6 @@ +"""Wrapper so people can run python -m chardet""" + +from .cli.chardetect import main + +if __name__ == "__main__": + main()