Mister Spy Say ="Hello Kids ... :D" ___ ____ _ _____ | \/ (_) | | / ___| | . . |_ ___| |_ ___ _ __ \ `--. _ __ _ _ | |\/| | / __| __/ _ \ '__| `--. \ '_ \| | | | | | | | \__ \ || __/ | /\__/ / |_) | |_| | \_| |_/_|___/\__\___|_| \____/| .__/ \__, | | | __/ | |_| |___/ Bot Mister Spy V3
Current Path : /usr/share/doc/python3-file-magic/ |
Current File : //usr/share/doc/python3-file-magic/README.md |
# `file-magic`: Python Bindings This library is a Python ctypes interface to `libmagic`. ## Installing You can install `file-magic` either with: python setup.py install # or easy_install . # or pip install file-magic ## Using import magic detected = magic.detect_from_filename('magic.py') print 'Detected MIME type: {}'.format(detected.mime_type) print 'Detected encoding: {}'.format(detected.encoding) print 'Detected file type name: {}'.format(detected.name) ## Developing/Contributing To run the tests: python setup.py test