🧐FileType

Dosyaların MIME tiplerini belirleyerek hangi dosyanın ne olduğunu python ile anlamanızı sağlar

👀 Hızlı Kullanım

import filetype

def main():
    kind = filetype.guess('tests/fixtures/sample.jpg')
    if kind is None:
        print('Cannot guess file type!')
        return

    print('File extension: %s' % kind.extension)
    print('File MIME type: %s' % kind.mime)

if __name__ == '__main__':
    main()

Last updated

© 2024 ~ Yunus Emre Ak ~ yEmreAk