All Projects → yihui → Mime

yihui / Mime

Map filenames to MIME types

Programming Languages

r
7636 projects

Projects that are alternatives of or similar to Mime

Fileio.jl
Main Package for IO, loading all different kind of files
Stars: ✭ 133 (+533.33%)
Mutual labels:  mime-types
transmat
Share data beyond the browser boundaries. Enable users to transfer data to external apps, and open your webapp to receive external data.
Stars: ✭ 453 (+2057.14%)
Mutual labels:  mime-types
Mimetype
A fast golang library for MIME type and file extension detection, based on magic numbers
Stars: ✭ 452 (+2052.38%)
Mutual labels:  mime-types
mimesniff
MIME Sniffing Standard
Stars: ✭ 89 (+323.81%)
Mutual labels:  mime-types
CommonCrawlDocumentDownload
A small tool which uses the CommonCrawl URL Index to download documents with certain file types or mime-types. This is used for mass-testing of frameworks like Apache POI and Apache Tika
Stars: ✭ 43 (+104.76%)
Mutual labels:  mime-types
Mime
.NET wrapper for libmagic
Stars: ✭ 51 (+142.86%)
Mutual labels:  mime-types
Swime
🗂 Swift MIME type checking based on magic bytes
Stars: ✭ 119 (+466.67%)
Mutual labels:  mime-types
Mime Types
The ultimate javascript content-type utility.
Stars: ✭ 865 (+4019.05%)
Mutual labels:  mime-types
MimeTypesMap
Simple dictionary provides a few methods to lookup mime type/extension, generated From Apache's mime.types.
Stars: ✭ 25 (+19.05%)
Mutual labels:  mime-types
Ruby Mime Types
Ruby MIME type registry library
Stars: ✭ 288 (+1271.43%)
Mutual labels:  mime-types
php-mimetyper
PHP mime type and extension mapping library: built with jshttp/mime-db, compatible with Symfony and Laravel
Stars: ✭ 21 (+0%)
Mutual labels:  mime-types
khudro
Khudro is a very light weight web-server built with C.
Stars: ✭ 19 (-9.52%)
Mutual labels:  mime-types
ruby-magic
Simple interface to libmagic for Ruby Programming Language
Stars: ✭ 23 (+9.52%)
Mutual labels:  mime-types
Yagmail
Send email in Python conveniently for gmail using yagmail
Stars: ✭ 2,169 (+10228.57%)
Mutual labels:  mime-types
Mime Db
Media Type Database
Stars: ✭ 612 (+2814.29%)
Mutual labels:  mime-types
Apaxy
a simple, customisable theme for your apache directory listing
Stars: ✭ 1,672 (+7861.9%)
Mutual labels:  mime-types
mimetypes
Erlang MIME types library
Stars: ✭ 77 (+266.67%)
Mutual labels:  mime-types
Sixarm ruby magic number type
SixArm.com » Ruby » MagicNumberType infers a data type from the data's leading bytes
Stars: ✭ 13 (-38.1%)
Mutual labels:  mime-types
Mime
Shared MIME-info database in D programming language
Stars: ✭ 7 (-66.67%)
Mutual labels:  mime-types
Filepicker
🔥🔥🔥Android文件、图片选择器,可按文件夹查找,文件类型查找,支持自定义相机
Stars: ✭ 265 (+1161.9%)
Mutual labels:  mime-types

mime

Build Status Downloads from the RStudio CRAN mirror

This is an R package for mapping filename extensions to MIME types, based on the data derived from /etc/mime.types.

# installation
install.packages('mime')

library(mime)
guess_type(c('a/b/c.html', 'd.pdf', 'e.odt', 'foo.docx', 'tex'))
# [1] "text/html"                                                              
# [2] "application/pdf"                                                        
# [3] "application/vnd.oasis.opendocument.text"                                
# [4] "application/vnd.openxmlformats-officedocument.wordprocessingml.document"
# [5] "text/x-tex"
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].