file_finch 0.1.1

A file format detection library supporting various data formats including Arrow, Parquet, CSV, Excel, GeoJSON, and more
Documentation
  • Coverage
  • 0%
    0 out of 13 items documented0 out of 3 items with examples
  • Size
  • Source code size: 68.02 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.58 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 13s Average build duration of successful builds.
  • all releases: 46s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • CHRISCARLON/file-finch
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • CHRISCARLON

FileFinch

Reliable file format detection library written in Rust.

FileFinch can identify various data formats by examining file contents and magic bytes.

Features

Detects multiple file formats including:

pub enum FileType {
    Geopackage,
    Shapefile,
    Geojson,
    Excel,
    Csv,
    Parquet,
    Arrow,
    Png,
    Unknown,
}