Skip to main content

A package for mime-sniffing

Project description

Sniffpy

Sniffpy is a python implementation of MIME Sniffing Standard MIME sniffing describes algorithms that attempt to discern the correct MIME type of some given data. The MIME type of a file or byte stream describes its format. For example, the MIME type of an image could be image/jpeg or image/png depending on its exact format. MIME types consist of:

  • the type which describesthe broad category of the data
  • the subtype which describes the exact kind of data
  • an optional parameter which gives further information about the data

The exact specification of MIME types can be found here

Example

The following is an example on how to use sniffpy to guess the MIME type of an HTTP response using requests

import requests

r = requests.get("https://httpbin.org/image/jpeg")
mime_type = sniffpy.sniff(r.content) #returns a MIMEType object

print(mime_type.type) #prints "image"
print(mime_type.subtype) #prints "jpeg"

print(mime_type) #prints "image/jpeg"

Documentation on how to use the package and how to contribute can be found on here

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

sniffpy-1.0.0.tar.gz (13.2 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page