filetype.py 1.2.0-1build1 source package in Ubuntu

Changelog

filetype.py (1.2.0-1build1) resolute; urgency=medium

  * No-change mass rebuild for Ubuntu 26.04 (LP: #2132257)

 -- Graham Inggs <email address hidden>  Thu, 11 Dec 2025 20:31:35 +0000

Upload details

Uploaded by:
Graham Inggs
Uploaded to:
Resolute
Original maintainer:
Debian Python Team
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Resolute release universe misc

Builds

Resolute: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
filetype.py_1.2.0.orig.tar.gz 975.4 KiB 99509dd057a8f9619093b2a0e08cc3f302a682e0fecbfe6ca31f8142dcaf1da7
filetype.py_1.2.0-1build1.debian.tar.xz 4.0 KiB a8c4710dc236a87eeea8828057b4936c2a2940882bf29f8bc54b073867aa97f5
filetype.py_1.2.0-1build1.dsc 2.0 KiB 4d2f77a35660bb4f5f2f7f36e9874f87dbd8e2464f1512ae6f081eb6f77235fd

View changes file

Binary packages built by this source

python3-filetype: Infer file type and MIME type of any file/buffer

 Small and dependency free Python module to infer file type and MIME type
 checking the magic numbers signature of a file or buffer (aka file pattern).
 .
 This is a Python port from filetype Go package.
 .
 Features:
   - Simple and friendly API.
   - Supports a wide range of file types.
   - Provides file extension and MIME type inference.
   - File discovery by extension or MIME type.
   - File discovery by kind (image, video, audio...).
   - Pluggable: add new custom type matchers.
   - Fast, even processing large files.
   - Only first 261 bytes representing the max file header is required, so you
     can just pass a list of bytes.
   - Dependency free (just Python code, no C extensions, no libmagic bindings).
   - Cross-platform file recognition.
 .
 Currently, the following patterns are recognised:
   - Image: bmp, cr2, dwg, gif, heic, ico, jpg, jpx, jxr, png, psd, tif, xcf,
            webp.
   - Video: avi, flv, m4v, mkv, mov, mp4, mpg, webm, wmv, 3gpp.
   - Audio: aac, aiff, amr, flac, m4a, mid, mp3, ogg, wav.
   - Archive: ar, br, bz2, cab, crx, dcm, deb, eot, epub, exe, gz, lz, lzo, lz4,
              nes, pdf, ps, rar, rpm, rtf, sqlite, swf, tar, xz, zip, Z, 7z.
   - Font: otf, ttf, woff, woff2.
   - Application: wasm.
 .
 This package contains the filetype module for Python 3 and an executable.