a build tool for data
Project description
make for your data.
An automation tool for data manipulation.
Inspired by Open Refine.
Installation
Install databuild:
$ pip install databuild
Quickstart
For more details, see the Extended Documentation.
$ data-build.py buildfile.json
buildfile.json contains a list of operations to be performed on data. Think of it as a script for a spreadsheet.
An example of build file could be:
[
{
"function": "sheets.import_data",
"description": "Importing data from csv file",
"params": {
"sheet": "dataset1",
"format": "csv",
"filename": "dataset1.csv",
"skip_last_lines": 1
}
},
{
"function": "columns.add_column",
"description": "Calculate the gender ratio",
"params": {
"sheet": "dataset1",
"name": "Gender Ratio",
"expression": {
"language": "python",
"content": "return float(row['Male Total']) / float(row['Female Total'])"
}
}
},
{
"function": "sheets.export_data",
"description": "",
"params": {
"sheet": "dataset1",
"format": "csv",
"filename": "dataset2.csv"
}
}
]
YAML buildfiles are also supported. databuild will guess the type based on the extension.
License
Licensed under BSD 3-clauses.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
databuild-0.0.3.tar.gz
(15.3 kB
view details)
File details
Details for the file databuild-0.0.3.tar.gz.
File metadata
- Download URL: databuild-0.0.3.tar.gz
- Upload date:
- Size: 15.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1d255141c48c8106a2c08002122ac1da70e2fa5436137fae7f7fc998de2b1f3b
|
|
| MD5 |
db8636a9feb7d97de4a1b5cf416970c0
|
|
| BLAKE2b-256 |
572b97bbcb0c4e5a857c6343dbac2208bc15ff2ff40073e05ef271199ec53868
|