Csvw
CSV on the web
Install / Use
/learn @cldf/CsvwREADME
csvw
This package provides
- a Python API to read and write relational, tabular data according to the CSV on the Web specification and
- commandline tools for reading and validating CSVW data.
[!IMPORTANT]
The Python API provided bycsvw4.x is not fully backwards compatible withcsvw< 4. See CHANGES for more information.
Links
- GitHub: https://github.com/cldf/csvw
- PyPI: https://pypi.org/project/csvw
- Issue Tracker: https://github.com/cldf/csvw/issues
Installation
This package runs under Python >=3.9, use pip to install:
$ pip install csvw
CLI
csvw2json
Converting CSVW data to JSON
$ csvw2json tests/fixtures/zipped-metadata.json
{
"tables": [
{
"url": "tests/fixtures/zipped.csv",
"row": [
{
"url": "tests/fixtures/zipped.csv#row=2",
"rownum": 1,
"describes": [
{
"ID": "abc",
"Value": "the value"
}
]
},
{
"url": "tests/fixtures/zipped.csv#row=3",
"rownum": 2,
"describes": [
{
"ID": "cde",
"Value": "another one"
}
]
}
]
}
]
}
csvwvalidate
Validating CSVW data
$ csvwvalidate tests/fixtures/zipped-metadata.json
OK
csvwdescribe
Describing tabular-data files with CSVW metadata
$ csvwdescribe --delimiter "|" tests/fixtures/frictionless-data.csv
{
"@context": "http://www.w3.org/ns/csvw",
"dc:conformsTo": "data-package",
"tables": [
{
"dialect": {
"delimiter": "|"
},
"tableSchema": {
"columns": [
{
"datatype": "string",
"name": "FK"
},
{
"datatype": "integer",
"name": "Year"
},
{
"datatype": "string",
"name": "Location name"
},
{
"datatype": "string",
"name": "Value"
},
{
"datatype": "string",
"name": "binary"
},
{
"datatype": "string",
"name": "anyURI"
},
{
"datatype": "string",
"name": "email"
},
{
"datatype": "string",
"name": "boolean"
},
{
"datatype": {
"dc:format": "application/json",
"base": "json"
},
"name": "array"
},
{
"datatype": {
"dc:format": "application/json",
"base": "json"
},
"name": "geojson"
}
]
},
"url": "tests/fixtures/frictionless-data.csv"
}
]
}
Python API
Find the Python API documentation at csvw.readthedocs.io.
A quick example for using csvw from Python code:
import json
from csvw import CSVW
data = CSVW('https://raw.githubusercontent.com/cldf/csvw/master/tests/fixtures/test.tsv')
print(json.dumps(data.to_json(minimal=True), indent=4))
[
{
"province": "Hello",
"territory": "world",
"precinct": "1"
}
]
Known limitations
- We read all data which is specified as UTF-8 encoded using the
utf-8-sigcodecs. Thus, if such data starts withU+FEFFthis will be interpreted as BOM and skipped. - Low level CSV parsing is delegated to the
csvmodule in Python's standard library. Thus, if acommentPrefixis specified in aDialectinstance, this will lead to skipping rows where the first value starts withcommentPrefix, even if the value was quoted. - Also, cell content containing
escapecharmay not be round-tripped as expected (when specifyingescapecharor acsvw.DialectwithquoteCharbutdoubleQuote==False), when minimal quoting is specified. This is due to inconsistentcsvbehaviour across Python versions (see https://bugs.python.org/issue44861).
CSVW conformance
While we use the CSVW specification as guideline, this package does not (and probably never will) implement the full extent of this spec.
- When CSV files with a header are read, columns are not matched in order with
column descriptions in the
tableSchema, but instead are matched based on the CSV column header and the column descriptions'nameandtitlesatributes. This allows for more flexibility, because columns in the CSV file may be re-ordered without invalidating the metadata. A stricter matching can be forced by specifying"header": falseand"skipRows": 1in the table's dialect description.
However, csvw.CSVW works correctly for
- 269 out of 270 JSON tests,
- 280 out of 282 validation tests,
- 10 out of 18 non-normative tests
from the CSVW Test suites.
Compatibility with Frictionless Data Specs
A CSVW-described dataset is basically equivalent to a Frictionless DataPackage where all
Data Resources are Tabular Data.
Thus, the csvw package provides some conversion functionality. To
"read CSVW data from a Data Package", there's the csvw.TableGroup.from_frictionless_datapackage method:
from csvw import TableGroup
tg = TableGroup.from_frictionless_datapackage('PATH/TO/datapackage.json')
To convert the metadata, the TableGroup can then be serialzed:
tg.to_file('csvw-metadata.json')
Note that the CSVW metadata file must be written to the Data Package's directory to make sure relative paths to data resources work.
This functionality - together with the schema inference capabilities
of frictionless describe - provides
a convenient way to bootstrap CSVW metadata for a set of "raw" CSV
files, implemented in the csvwdescribe command described above.
See also
- https://www.w3.org/2013/csvw/wiki/Main_Page
- https://csvw.org
- https://github.com/CLARIAH/COW
- https://github.com/CLARIAH/ruminator
- https://github.com/bloomberg/pycsvw
- https://specs.frictionlessdata.io/table-schema/
- https://github.com/theodi/csvlint.rb
- https://github.com/ruby-rdf/rdf-tabular
- https://github.com/rdf-ext/rdf-parser-csvw
- https://github.com/Robsteranium/csvwr
License
This package is distributed under the Apache 2.0 license.
Related Skills
node-connect
349.2kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
claude-opus-4-5-migration
109.5kMigrate prompts and code from Claude Sonnet 4.0, Sonnet 4.5, or Opus 4.1 to Opus 4.5
frontend-design
109.5kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
model-usage
349.2kUse CodexBar CLI local cost usage to summarize per-model usage for Codex or Claude, including the current (most recent) model or a full model breakdown. Trigger when asked for model-level usage/cost data from codexbar, or when you need a scriptable per-model summary from codexbar cost JSON.
