Tool to convert CSV files based on JSON config.
Project description
A simple tool that uses a JSON config file (or a config dict) to convert one CSV to another.
Simplest use case is to just list the new headers and link them to the old headers, like so:
{
"New Column Header One": "Old Column Header One",
"New Column Header Two": "Old Column Header Two"
}
A slightly more useful version specifies a default to use (implemented using the "or" operator value_from_old_column or default
):
{
"New Header One": {
"old_column": "Old Header One",
"default": "DEFAULT VALUE FOR ONE"
},
"New Header Two": {
"old_column": "Old Header Two",
"default": "DEFAULT VALUE FOR TWO"
}
}
The third and final currently implemented option is to use a lambda function (use of full functions is planned):
{
"New Header One": {
"old_column": "Old Header One",
"default": "DEFAULT FOR ONE",
"lambda": "lambda a, b: str(a.get(b.get('old_column'))).lower()"
},
"New Header Two": {
"old_column": "Old Header Two",
"default": "DEFAULT FOR TWO",
"lambda": "lambda a, b: str(a.get(b.get('old_column'))).lower()"
}
}
It will run the lambda as:
item['lambda'] = "lambda a, b: str(a.get(b.get('old_column'))).lower()"
exec(f"c = {item.get('lambda')}", globals())
return c(line, item)
Where line
is the current line of the source CSV, and item
is the current element from the JSON file (the current column).
Usage:
from csv_converter import CSVConverter
converter = CSVConverter(config_file_name='path-to-config.json')
output = converter.convert(input_file_name='path-to-source.csv')
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
csv_converter-0.0.3.tar.gz
(3.1 kB
view hashes)
Built Distribution
Close
Hashes for csv_converter-0.0.3-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7c48c72f19a0b606582db1418b2a038adf4a12a9049b431f3592e4a7231e19b8 |
|
MD5 | 31ae48302c08d53031971938491ec21c |
|
BLAKE2b-256 | 082b246f471535a8521827a8d01f1ddb4b17c5e38d249430b44ccffddc00b9ce |