Python bindings to libmagic
Project description
# python-libmagic

# Usage
```python
import magic
import magic.flags
magic = magic.Magic(mimetype=True)
mimetype = magic.from_buffer("\x89\x50\x4E\x47\x0D\x0A\x1A\x0A")
print mimetype # => "image/png"
mimetype = magic.from_filepath("/etc/passwd")
print mimetype # => "text/plain"
updated = magic.set_flags(magic.flags.MAGIC_NONE)
print updated # => True
mimetype = magic.from_filepath("demo.docx")
print mimetype # => "Microsoft Word 2007+"
```
# Installation
```bash
$ apt-get install libmagic-dev
$ pip install python-libmagic
```
# License
Licensed under MIT license.

# Usage
```python
import magic
import magic.flags
magic = magic.Magic(mimetype=True)
mimetype = magic.from_buffer("\x89\x50\x4E\x47\x0D\x0A\x1A\x0A")
print mimetype # => "image/png"
mimetype = magic.from_filepath("/etc/passwd")
print mimetype # => "text/plain"
updated = magic.set_flags(magic.flags.MAGIC_NONE)
print updated # => True
mimetype = magic.from_filepath("demo.docx")
print mimetype # => "Microsoft Word 2007+"
```
# Installation
```bash
$ apt-get install libmagic-dev
$ pip install python-libmagic
```
# License
Licensed under MIT license.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
python-libmagic-0.3.0.tar.gz
(3.2 kB
view details)
File details
Details for the file python-libmagic-0.3.0.tar.gz
.
File metadata
- Download URL: python-libmagic-0.3.0.tar.gz
- Upload date:
- Size: 3.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
905343923b4febfa1ca239f4613eb50a86901b3a473ae3ce7982165274145177
|
|
MD5 |
d14527859952cd7951caf393566b03fd
|
|
BLAKE2b-256 |
48ed7dc6c90e7ea0cbeb44ce9ef7e069368e56ac2c478ddb3a265b5e4ccc750b
|