Skip to content

Latest commit

 

History

History
18 lines (11 loc) · 742 Bytes

README.md

File metadata and controls

18 lines (11 loc) · 742 Bytes

Build Status codecov

TableIOInterface

Tiny package for determination of tabular file formats based on file extensions.

It is intended to be the base both for TableIO.jl and for the Pluto.jl tabular data import functionality.

Usage

get_file_type("test.csv") # gives TableIOInterface.CSVFormat()
get_file_type("test.zip") # gives TableIOInterface.ZippedFormat()

is_extension_supported("csv") # gives true
is_extension_supported("foo") # gives false

etc.