awesome-repositories.com
المدونة
awesome-repositories.com

اكتشف أفضل مستودعات المصادر المفتوحة باستخدام بحث مدعوم بالذكاء الاصطناعي.

استكشفعمليات بحث منسقةبدائل مفتوحة المصدربرمجيات ذاتية الاستضافةالمدونةخريطة الموقع
المشروعحولكيفية ترتيب النتائجالصحافةخادم MCP
قانونيالخصوصيةالشروط
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

4 مستودعات

Awesome GitHub RepositoriesCSV Row Indexes

Generation of metadata indices to enable fast row seeking in delimited datasets.

Distinct from CSV Processing: Candidates focus on general CSV processing or loaders; this specifically addresses row-level indexing for fast access.

Explore 4 awesome GitHub repositories matching data & databases · CSV Row Indexes. Refine with filters or upvote what's useful.

Awesome CSV Row Indexes GitHub Repositories

اعثر على أفضل المستودعات باستخدام الذكاء الاصطناعي.سنبحث عن أفضل المستودعات المطابقة باستخدام الذكاء الاصطناعي.
  • burntsushi/xsvالصورة الرمزية لـ BurntSushi

    BurntSushi/xsv

    10,750عرض على GitHub↗

    xsv is a suite of high-performance command-line utilities written in Rust for the analysis, manipulation, and statistical processing of large delimited datasets. It provides a toolkit for processing comma-separated value files through a command line interface. The project provides capabilities for statistical analysis, including the computation of column statistics, value frequencies, and descriptive metrics. It also includes data manipulation utilities for joining, slicing, sampling, and reformatting records. The toolkit covers a broad range of data operations including column selection, da

    Generates metadata indexes for CSV files to enable constant-time row access.

    Rust
    عرض على GitHub↗10,750
  • wireservice/csvkitالصورة الرمزية لـ wireservice

    wireservice/csvkit

    6,390عرض على GitHub↗

    csvkit is a composable Unix-style command-line toolkit for converting, filtering, and analyzing CSV files directly from the terminal. It provides a suite of focused single-purpose commands that can be combined via pipes to build complex data processing workflows, with a modular architecture that includes a column-type inference engine for automatically detecting data types and a streaming-pipeline design for efficient handling of tabular data. The toolkit distinguishes itself through its SQL-engine abstraction layer, which allows users to run SQL queries directly against CSV files without req

    Sorts rows in CSV files by column values from the command line.

    Python
    عرض على GitHub↗6,390
  • name5566/leafالصورة الرمزية لـ name5566

    name5566/leaf

    5,513عرض على GitHub↗

    Leaf is a game server framework written in Go designed for building multiplayer game backends. It provides a modular backend architecture that organizes server logic into independent modules and includes a concurrent task scheduler for managing ordered, delayed, or recurring functions. The framework features a TCP and WebSocket server that manages simultaneous connections through a single interface. It incorporates a message router capable of decoding Protobuf and JSON data to map incoming network packets to specific internal server modules. The system includes capabilities for multi-protoco

    Parses static CSV record files into memory-resident indexed structures for high-performance configuration lookups.

    Go
    عرض على GitHub↗5,513
  • dathere/qsvالصورة الرمزية لـ dathere

    dathere/qsv

    3,687عرض على GitHub↗

    qsv is a high-performance command line toolkit for querying, transforming, and analyzing comma-separated value files. It functions as a data wrangling interface and a tabular data profiler, featuring a query engine capable of executing SQL statements and joins directly on flat files without requiring a database. The project is distinguished by its ability to process massive datasets that exceed available system memory. This is achieved through disk-based external memory processing, including multithreaded merge sorting, on-disk hash tables for deduplication, and lightweight file indexing for

    Creates lightweight file indices to enable constant-time row counting and rapid random access slicing.

    Rustaickancsv
    عرض على GitHub↗3,687
  1. Home
  2. Data & Databases
  3. CSV Row Indexes

استكشف الوسوم الفرعية

  • CSV Row SortersReorders rows in a CSV file based on the values in one or more columns. **Distinct from CSV Row Indexes:** Distinct from CSV Row Indexes: focuses on sorting, not indexing.