xan

The CSV magician

https://github.com/medialab/xan

Science Score: 59.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
    Found 7 DOI reference(s) in README
  • Academic publication links
    Links to: zenodo.org
  • Committers with academic emails
    1 of 53 committers (1.9%) from academic institutions
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (12.5%) to scientific vocabulary

Keywords

cli csv rust tsv

Keywords from Contributors

argument-parser command-line-parser parsed-arguments positional-arguments subcommands
Last synced: 6 months ago · JSON representation

Repository

The CSV magician

Basic Info
  • Host: GitHub
  • Owner: medialab
  • License: unlicense
  • Language: Rust
  • Default Branch: master
  • Homepage:
  • Size: 8.37 MB
Statistics
  • Stars: 3,128
  • Watchers: 20
  • Forks: 58
  • Open Issues: 97
  • Releases: 23
Topics
cli csv rust tsv
Created over 7 years ago · Last pushed 6 months ago
Metadata Files
Readme Changelog Contributing License Zenodo

README.md

Build Status DOI

xan, the CSV magician

xan is a command line tool that can be used to process CSV files directly from the shell.

It has been written in Rust to be as fast as possible, use as little memory as possible, and can easily handle very large CSV files (Gigabytes). It is also able to leverage parallelism (through multithreading) to make some tasks complete as fast as your computer can allow.

It can easily preview, filter, slice, aggregate, sort, join CSV files, and exposes a large collection of composable commands that can be chained together to perform a wide variety of typical tasks.

xan also leverages its own expression language so you can perform complex tasks that cannot be done by relying on the simplest commands. This minimalistic language has been tailored for CSV data and is way faster than evaluating typical dynamically-typed languages such as Python, Lua, JavaScript etc.

Note that this tool is originally a fork of BurntSushi's xsv, but has been nearly entirely rewritten at that point, to fit SciencesPo's médialab use-cases, rooted in web data collection and analysis geared towards social sciences (you might think CSV is outdated by now, but read our love letter to the format before judging too quickly).

xan therefore goes beyond typical data manipulation and expose utilities related to lexicometry, graph theory and even scraping.

Finally, xan can be used to display CSV files in the terminal, for easy exploration, and can even be used to draw basic data visualisations:

|view command|flatten command| |:---:|:---:| |view|flatten| |categorical histogram|scatterplot| |categ-hist|correlation| |categorical scatterplot|histograms| |scatter|hist| |parallel processing|time series| |parallel|series| |small multiples (facet grid)|grouped view| |small-multiples|view-grid| |correlation matrix heatmap|heatmap| |small-multiples|view-grid|

Summary

How to install

Cargo

xan can be installed using cargo (it usually comes with Rust):

bash cargo install xan --locked

You can also tweak the build flags to make sure the Rust compiler is able to leverage all your CPU's features:

bash CARGO_BUILD_RUSTFLAGS='-C target-cpu=native' cargo install xan --locked

You can also install the latest dev version thusly:

bash cargo install --git https://github.com/medialab/xan --locked

Scoop (Windows)

xan can be installed using Scoop on Windows:

powershell scoop bucket add extras scoop install xan

Homebrew (macOS)

xan can be installed with Homebrew on macOS thusly:

bash brew install xan

Arch Linux

You can install xan from the extra repository using pacman:

bash sudo pacman -S xan

NetBSD

A package is available from the official repositories. To install xan simply run:

pkgin install xan

Nix

xan is packaged for Nix, and is available in Nixpkgs as of 25.05 release. To install it, you may add it to your environment.systemPackages as pkgs.xan or use nix-shell to enter an ephemeral shell.

bash nix-shell -p xan

Pixi (Linux, macOS, Windows)

xan can be installed in Linux, macOS, and Windows using the Pixi package manager:

bash pixi global install xan

Pre-built binaries

Pre-built binaries can be found attached to every GitHub releases.

Currently supported targets include:

  • x86_64-apple-darwin
  • x86_64-unknown-linux-gnu
  • x86_64-unknown-linux-musl
  • x86_64-pc-windows-msvc

  • aarch64-apple-darwin

  • aarch64-unknown-linux-gnu

Feel free to open a PR to improve the CI by adding relevant targets.

Installing completions

Note that xan also exposes handy automatic completions for command and header/column names that you can install through the xan completions command.

Run the following command to understand how to install those completions:

```bash xan completions -h

With zsh you might also need to add this to your initialization to make

sure Bash compatibility is loaded:

autoload -Uz bashcompinit && bashcompinit ```

Quick tour

Let's learn about the most commonly used xan commands by exploring a corpus of French medias:

Downloading the corpus

bash curl -LO https://github.com/medialab/corpora/raw/master/polarisation/medias.csv

Displaying the file's headers

bash xan headers medias.csv

0 webentity_id 1 name 2 prefixes 3 home_page 4 start_pages 5 indegree 6 hyphe_creation_timestamp 7 hyphe_last_modification_timestamp 8 outreach 9 foundation_year 10 batch 11 edito 12 parody 13 origin 14 digital_native 15 mediacloud_ids 16 wheel_category 17 wheel_subcategory 18 has_paywall 19 inactive

Counting the number of rows

bash xan count medias.csv

478

Previewing the file in the terminal

bash xan view medias.csv

Displaying 5/20 cols from 10 first rows of medias.csv ┌───┬───────────────┬───────────────┬────────────┬───┬─────────────┬──────────┐ │ - │ name │ prefixes │ home_page │ … │ has_paywall │ inactive │ ├───┼───────────────┼───────────────┼────────────┼───┼─────────────┼──────────┤ │ 0 │ Acrimed.org │ http://acrim… │ http://ww… │ … │ false │ <empty> │ │ 1 │ 24matins.fr │ http://24mat… │ https://w… │ … │ false │ <empty> │ │ 2 │ Actumag.info │ http://actum… │ https://a… │ … │ false │ <empty> │ │ 3 │ 2012un-Nouve… │ http://2012u… │ http://ww… │ … │ false │ <empty> │ │ 4 │ 24heuresactu… │ http://24heu… │ http://24… │ … │ false │ <empty> │ │ 5 │ AgoraVox │ http://agora… │ http://ww… │ … │ false │ <empty> │ │ 6 │ Al-Kanz.org │ http://al-ka… │ https://w… │ … │ false │ <empty> │ │ 7 │ Alalumieredu… │ http://alalu… │ http://al… │ … │ false │ <empty> │ │ 8 │ Allodocteurs… │ http://allod… │ https://w… │ … │ false │ <empty> │ │ 9 │ Alterinfo.net │ http://alter… │ http://ww… │ … │ <empty> │ true │ │ … │ … │ … │ … │ … │ … │ … │ └───┴───────────────┴───────────────┴────────────┴───┴─────────────┴──────────┘

On unix, don't hesitate to use the -p flag to automagically forward the full output to an appropriate pager and skim through all the columns.

Reading a flattened representation of the first row

```bash

NOTE: drop -c to avoid truncating the values

xan flatten -c medias.csv ```

``` Row n°0 ─────────────────────────────────────────────────────────────────────────────── webentityid 1 name Acrimed.org prefixes http://acrimed.org|http://acrimed69.blogspot… homepage http://www.acrimed.org startpages http://acrimed.org|http://acrimed69.blogspot… indegree 61 hyphecreationtimestamp 1560347020330 hyphelastmodificationtimestamp 1560526005389 outreach nationale foundationyear 2002 batch 1 edito media parody false origin france digitalnative true mediacloudids 258269 wheelcategory Opinion Journalism wheelsubcategory Left Wing haspaywall false inactive

Row n°1 ─────────────────────────────────────────────────────────────────────────────── webentity_id 2 ... ```

Searching for rows

bash xan search -s outreach internationale medias.csv | xan view

Displaying 4/20 cols from 10 first rows of <stdin> ┌───┬──────────────┬────────────────────┬───┬─────────────┬──────────┐ │ - │ webentity_id │ name │ … │ has_paywall │ inactive │ ├───┼──────────────┼────────────────────┼───┼─────────────┼──────────┤ │ 0 │ 25 │ Businessinsider.fr │ … │ false │ <empty> │ │ 1 │ 59 │ Europe-Israel.org │ … │ false │ <empty> │ │ 2 │ 66 │ France 24 │ … │ false │ <empty> │ │ 3 │ 220 │ RFI │ … │ false │ <empty> │ │ 4 │ 231 │ fr.Sott.net │ … │ false │ <empty> │ │ 5 │ 246 │ Voltairenet.org │ … │ true │ <empty> │ │ 6 │ 254 │ Afp.com /fr │ … │ false │ <empty> │ │ 7 │ 265 │ Euronews FR │ … │ false │ <empty> │ │ 8 │ 333 │ Arte.tv │ … │ false │ <empty> │ │ 9 │ 341 │ I24News.tv │ … │ false │ <empty> │ │ … │ … │ … │ … │ … │ … │ └───┴──────────────┴────────────────────┴───┴─────────────┴──────────┘

Selecting some columns

bash xan select foundation_year,name medias.csv | xan view

Displaying 2 cols from 10 first rows of <stdin> ┌───┬─────────────────┬───────────────────────────────────────┐ │ - │ foundation_year │ name │ ├───┼─────────────────┼───────────────────────────────────────┤ │ 0 │ 2002 │ Acrimed.org │ │ 1 │ 2006 │ 24matins.fr │ │ 2 │ 2013 │ Actumag.info │ │ 3 │ 2012 │ 2012un-Nouveau-Paradigme.com │ │ 4 │ 2010 │ 24heuresactu.com │ │ 5 │ 2005 │ AgoraVox │ │ 6 │ 2008 │ Al-Kanz.org │ │ 7 │ 2012 │ Alalumieredunouveaumonde.blogspot.com │ │ 8 │ 2005 │ Allodocteurs.fr │ │ 9 │ 2005 │ Alterinfo.net │ │ … │ … │ … │ └───┴─────────────────┴───────────────────────────────────────┘

Sorting the file

bash xan sort -s foundation_year medias.csv | xan view -s name,foundation_year

Displaying 2 cols from 10 first rows of <stdin> ┌───┬────────────────────────────────────┬─────────────────┐ │ - │ name │ foundation_year │ ├───┼────────────────────────────────────┼─────────────────┤ │ 0 │ Le Monde Numérique (Ouest France) │ <empty> │ │ 1 │ Le Figaro │ 1826 │ │ 2 │ Le journal de Saône-et-Loire │ 1826 │ │ 3 │ L'Indépendant │ 1846 │ │ 4 │ Le Progrès │ 1859 │ │ 5 │ La Dépêche du Midi │ 1870 │ │ 6 │ Le Pélerin │ 1873 │ │ 7 │ Dernières Nouvelles d'Alsace (DNA) │ 1877 │ │ 8 │ La Croix │ 1883 │ │ 9 │ Le Chasseur Francais │ 1885 │ │ … │ … │ … │ └───┴────────────────────────────────────┴─────────────────┘

Deduplicating the file on some column

```bash

Some medias of our corpus have the same ids on mediacloud.org

xan dedup -s mediacloud_ids medias.csv | xan count && xan count medias.csv ```

457 478

Deduplicating can also be done while sorting:

bash xan sort -s mediacloud_ids -u medias.csv

Computing frequency tables

bash xan frequency -s edito medias.csv | xan view

Displaying 3 cols from 5 rows of <stdin> ┌───┬───────┬────────────┬───────┐ │ - │ field │ value │ count │ ├───┼───────┼────────────┼───────┤ │ 0 │ edito │ media │ 423 │ │ 1 │ edito │ individu │ 30 │ │ 2 │ edito │ plateforme │ 14 │ │ 3 │ edito │ agrégateur │ 10 │ │ 4 │ edito │ agence │ 1 │ └───┴───────┴────────────┴───────┘

Printing a histogram

bash xan frequency -s edito medias.csv | xan hist

``` Histogram for edito (bars: 5, sum: 478, max: 423):

media |423 88.49%|━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━| individu | 30 6.28%|━━━╸ | plateforme | 14 2.93%|━╸ | agrégateur | 10 2.09%|━╸ | agence | 1 0.21%|╸ | ```

Computing descriptive statistics

bash xan stats -s indegree,edito medias.csv | xan transpose | xan view -I

Displaying 2 cols from 14 rows of <stdin> ┌─────────────┬───────────────────┬────────────┐ │ field │ indegree │ edito │ ├─────────────┼───────────────────┼────────────┤ │ count │ 463 │ 478 │ │ count_empty │ 15 │ 0 │ │ type │ int │ string │ │ types │ int|empty │ string │ │ sum │ 25987 │ <empty> │ │ mean │ 56.12742980561554 │ <empty> │ │ variance │ 4234.530197929737 │ <empty> │ │ stddev │ 65.07326792108829 │ <empty> │ │ min │ 0 │ <empty> │ │ max │ 424 │ <empty> │ │ lex_first │ 0 │ agence │ │ lex_last │ 99 │ plateforme │ │ min_length │ 0 │ 5 │ │ max_length │ 3 │ 11 │ └─────────────┴───────────────────┴────────────┘

Evaluating an expression to filter a file

bash xan filter 'batch > 1' medias.csv | xan count

130

To access the expression language's cheatsheet, run xan help cheatsheet. To display the full list of available functions, run xan help functions.

Evaluating an expression to create a new column based on other ones

bash xan map 'fmt("{} ({})", name, foundation_year) as key' medias.csv | xan select key | xan slice -l 10

key Acrimed.org (2002) 24matins.fr (2006) Actumag.info (2013) 2012un-Nouveau-Paradigme.com (2012) 24heuresactu.com (2010) AgoraVox (2005) Al-Kanz.org (2008) Alalumieredunouveaumonde.blogspot.com (2012) Allodocteurs.fr (2005) Alterinfo.net (2005)

To access the expression language's cheatsheet, run xan help cheatsheet. To display the full list of available functions, run xan help functions.

Transform a column by evaluating an expression

bash xan transform name 'split(name, ".") | first | upper' medias.csv | xan select name | xan slice -l 10

name ACRIMED 24MATINS ACTUMAG 2012UN-NOUVEAU-PARADIGME 24HEURESACTU AGORAVOX AL-KANZ ALALUMIEREDUNOUVEAUMONDE ALLODOCTEURS ALTERINFO

To access the expression language's cheatsheet, run xan help cheatsheet. To display the full list of available functions, run xan help functions.

Performing custom aggregation

bash xan agg 'sum(indegree) as total_indegree, mean(indegree) as mean_indegree' medias.csv | xan view -I

Displaying 1 col from 1 rows of <stdin> ┌────────────────┬───────────────────┐ │ total_indegree │ mean_indegree │ ├────────────────┼───────────────────┤ │ 25987 │ 56.12742980561554 │ └────────────────┴───────────────────┘

To access the expression language's cheatsheet, run xan help cheatsheet. To display the full list of available functions, run xan help functions. Finally, to display the list of available aggregation functions, run xan help aggs.

Grouping rows and performing per-group aggregation

bash xan groupby edito 'sum(indegree) as indegree' medias.csv | xan view -I

Displaying 1 col from 5 rows of <stdin> ┌────────────┬──────────┐ │ edito │ indegree │ ├────────────┼──────────┤ │ agence │ 50 │ │ agrégateur │ 459 │ │ plateforme │ 658 │ │ media │ 24161 │ │ individu │ 659 │ └────────────┴──────────┘

To access the expression language's cheatsheet, run xan help cheatsheet. To display the full list of available functions, run xan help functions. Finally, to display the list of available aggregation functions, run xan help aggs.

Available commands

  • help: Get help regarding the expression language

Explore & visualize

  • count (c): Count rows in file
  • headers (h): Show header names
  • view (v): Preview a CSV file in a human-friendly way
  • flatten: Display a flattened version of each row of a file
  • hist: Print a histogram with rows of CSV file as bars
  • plot: Draw a scatter plot or line chart
  • heatmap: Draw a heatmap of a CSV matrix
  • progress: Display a progress bar while reading CSV data

Search & filter

  • search: Search for (or replace) patterns in CSV data
  • filter: Only keep some CSV rows based on an evaluated expression
  • head: First rows of CSV file
  • tail: Last rows of CSV file
  • slice: Slice rows of CSV file
  • top: Find top rows of a CSV file according to some column
  • sample: Randomly sample CSV data

Sort & deduplicate

Aggregate

  • frequency (freq): Show frequency tables
  • groupby: Aggregate data by groups of a CSV file
  • stats: Compute basic statistics
  • agg: Aggregate data from CSV file
  • bins: Dispatch numeric columns into bins
  • window: Compute window aggregations (cumsum, rolling mean, lag etc.)

Combine multiple CSV files

  • cat: Concatenate by row or column
  • join: Join CSV files
  • fuzzy-join: Join a CSV file with another containing patterns (e.g. regexes)
  • merge: Merge multiple similar already sorted CSV files

Add, transform, drop and move columns

  • select: Select columns from a CSV file
  • drop: Drop columns from a CSV file
  • map: Create a new column by evaluating an expression on each CSV row
  • transform: Transform a column by evaluating an expression on each CSV row
  • enum: Enumerate CSV file by preprending an index column
  • flatmap: Emit one row per value yielded by an expression evaluated for each CSV row
  • fill: Fill empty cells
  • blank: Blank down contiguous identical cell values

Format, convert & recombobulate

  • behead: Drop header from CSV file
  • rename: Rename columns of a CSV file
  • input: Read unusually formatted CSV data
  • fixlengths: Makes all rows have same length
  • fmt: Format CSV output (change field delimiter)
  • explode: Explode rows based on some column separator
  • implode: Collapse consecutive identical rows based on a diverging column
  • from: Convert a variety of formats to CSV
  • to: Convert a CSV file to a variety of data formats
  • scrape: Scrape HTML into CSV data
  • reverse: Reverse rows of CSV data
  • transpose (t): Transpose CSV file
  • pivot: Stack multiple columns into fewer columns
  • unpivot: Split distinct values of a column into their own columns

Split a CSV file into multiple

  • split: Split CSV data into chunks
  • partition: Partition CSV data based on a column value

Parallelization

Generate CSV files

  • range: Create a CSV file from a numerical range

Lexicometry & fuzzy matching

  • tokenize: Tokenize a text column
  • vocab: Build a vocabulary over tokenized documents
  • cluster: Cluster CSV data to find near-duplicates

Matrix & network-related commands

  • matrix: Convert CSV data to matrix data
  • network: Convert CSV data to network data

Debug

  • eval: Evaluate/debug a single expression

General flags and IO model

Getting help

If you ever feel lost, each command has a -h/--help flag that will print the related documentation.

If you need help about the expression language, check out the help command itself:

```bash

Help about help ;)

xan help --help ```

Regarding input & output formats

All xan commands expect a "standard" CSV file, e.g. comma-delimited, with proper double-quote escaping. This said, xan is also perfectly able to infer the delimiter from typical file extensions such as .tsv, .tab, .psv, .ssv or .scsv.

If you need to process a file with a custom delimiter, you can either use the xan input command or use the -d/--delimiter flag available with all commands.

If you need to output a custom CSV dialect (e.g. using ; delimiters), feel free to use the xan fmt command.

Finally, even if most xan commands won't even need to decode the file's bytes, some might still need to. In this case, xan will expect correctly formatted UTF-8 text. Please use iconv or other utils if you need to process other encodings such as latin1 ahead of xan.

Working with headless CSV file

Even if this is good practice to name your columns, some CSV file simply don't have headers. Most commands are able to deal with those file if you give the -n/--no-headers flag.

Note that this flag always relates to the input, not the output. If for some reason you want to drop a CSV output's header row, use the xan behead command.

Regarding stdin

By default, all commands will try to read from stdin when the file path is not specified. This makes piping easy and comfortable as it respects typical unix standards. Some commands may have multiple inputs (xan join, for instance), in which case stdin is usually specifiable using the - character:

```bash

First file given to join will be read from stdin

cat file1.csv | xan join col1 - col2 file2.csv ```

Note that the command will also warn you when stdin cannot be read, in case you forgot to indicate the file's path.

Regarding stdout

By default, all commands will print their output to stdout (note that this output is usually buffered for performance reasons).

In addition, all commands expose a -o/--output flag that can be use to specify where to write the output. This can be useful if you do not want to or cannot use > (typically in some Windows shells). In which case, - as a output path will mean forwarding to stdout also. This can be useful when scripting sometimes.

Gzipped files

xan is able to read gzipped files (having a .gz extension) out of the box.

Expression language reference

Cookbook

News

For news about the tool's evolutions feel free to read:

  1. the changelog
  2. the xan zines

How to cite?

xan is published on Zenodo as 10.5281/zenodo.15310200.

You can cite it thusly:

Guillaume Plique, Béatrice Mazoyer, Laura Miguel, César Pichon, Anna Charles, & Julien Pontoire. (2025). xan, the CSV magician. (0.50.0). Zenodo. https://doi.org/10.5281/zenodo.15310200

Frequently Asked Questions

How to display a vertical bar chart?

Rotate your screen ;)

Owner

  • Name: médialab Sciences Po
  • Login: medialab
  • Kind: organization
  • Location: Paris, France

SciencesPo's médialab is an interdisciplinary research laboratory gathering engineers, designers & social science researchers.

Committers

Last synced: 9 months ago

All Time
  • Total Commits: 2,183
  • Total Committers: 53
  • Avg Commits per committer: 41.189
  • Development Distribution Score (DDS): 0.221
Past Year
  • Commits: 1,026
  • Committers: 19
  • Avg Commits per committer: 54.0
  • Development Distribution Score (DDS): 0.055
Top Committers
Name Email Commits
Yomguithereal g****e@g****m 1,701
Andrew Gallant j****m@g****m 362
bmaz b****r@g****m 39
AnnaCharles 1****s 8
Laura Miguel 1****a 7
Dmitry Kakurin D****K@D****3 6
julienp 1****e 6
Johann Tuffe t****3@g****m 4
Kevin Per k****r@g****m 3
Eric Kidd g****t@r****t 2
Dimagog d****n@h****m 2
Antoine Machut 6****t 2
Craig Hills c****s@g****m 1
Christian G. Warden c****n@x****g 1
Chris Buesser c****r@g****m 1
Bruce Adams b****s@a****g 1
Brandon Hamilton b****n@r****e 1
Benjamin Ooghe-Tabanou b****e@s****r 1
Astro a****o@s****t 1
Amila Welihinda a****k@g****m 1
Alexandre Bury 3****i 1
Alex Crichton a****x@a****m 1
Adam Perkowski a****r@p****m 1
Aaron DeVore a****e@p****u 1
raf r****f@n****v 1
ngirard g****s@g****m 1
mintyplanet m****t@g****m 1
llogiq b****e@g****m 1
kmoser k****r 1
jimenarsss j****a@m****t 1
and 23 more...

Issues and Pull Requests

Last synced: 6 months ago

All Time
  • Total issues: 641
  • Total pull requests: 65
  • Average time to close issues: 26 days
  • Average time to close pull requests: 24 days
  • Total issue authors: 35
  • Total pull request authors: 27
  • Average comments per issue: 0.36
  • Average comments per pull request: 1.09
  • Merged pull requests: 48
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 456
  • Pull requests: 46
  • Average time to close issues: 9 days
  • Average time to close pull requests: 10 days
  • Issue authors: 33
  • Pull request authors: 23
  • Average comments per issue: 0.4
  • Average comments per pull request: 1.39
  • Merged pull requests: 34
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
  • Yomguithereal (560)
  • ggrothendieck (36)
  • paulgirard (2)
  • peterdemin (2)
  • MikeBeller (2)
  • trrk (2)
  • MiguelLaura (2)
  • fredrik-hammar (2)
  • paul-d-ray (2)
  • diegantobass (2)
  • gennaro-tedesco (2)
  • eeweegh (2)
  • jayvdb (2)
  • jpontoire (1)
  • Yeti-or (1)
Pull Request Authors
  • MiguelLaura (9)
  • bmaz (6)
  • Yomguithereal (6)
  • jpontoire (5)
  • gennaro-tedesco (4)
  • NotAShelf (2)
  • bovine (2)
  • orhun (2)
  • adamperkowski (2)
  • ghuls (2)
  • frabera (2)
  • octvs (2)
  • fredrik-hammar (2)
  • gnpaone (2)
  • paulgirard (2)
Top Labels
Issue Labels
enhancement (333) bug (110) refactor (82) moonblade (78) optimization (52) documentation (33) question (18) discussion (15)
Pull Request Labels
enhancement (6) refactor (1) optimization (1) documentation (1)

Dependencies

Cargo.lock cargo
  • 242 dependencies
Cargo.toml cargo
  • log 0.4 development
  • quickcheck 0.7 development
  • byteorder 1
  • chrono 0.4.23
  • chrono-tz 0.6
  • crossbeam-channel 0.2.4
  • csv 1
  • csv-index 0.1.5
  • dateparser 0.1.7
  • docopt 1
  • filetime 0.1
  • hlua 0.4.1
  • lingua 1.4.0
  • num_cpus 1.4
  • pyo3 0.13.2
  • rand 0.5
  • regex 1
  • serde 1
  • serde_derive 1
  • serde_json 1.0
  • streaming-stats 0.2
  • tabwriter 1
  • textwrap 0.14.0
  • threadpool 1.3
  • uuid 0.8.1