No project description provided
Project description
detakon
Description
A data converter than uses configuration maps (referred to as detamaps) to map fields in the source data to output data, and perform operations on the data before outputting. Detamaps may also contain configuration data for the data source and output, and defaults to use if fields are missing, or blank/empty.
[!NOTE] Detakon is in early development and may have breaking changes between versions. Detamaps, methods, and usage may change between minor versions until version 1.0 release. After version 1.0 release, any breaking changes will result in a major version bump. Recommended to use PyPI version. Version in source code is next planned release on PyPI, and is not official until pushed to PyPI.
Table of Contents
Installation
pip install detakon
Usage
[!WARNING] Status: Currently in pre-release, as minimal viable product for CSV to CSV conversions only. Not for usage in production systems, breaking changes are coming in future releases. Some planned changes can be viewed in the ROADMAP.md file.
Detakon(detamap, source, destination)
Sample:
from detakon.detakon import Detakon
converter = Detakon("invoice_detamap.json", "data_dump_2026-01-01.csv", "invoice_2026-01-01.csv")
converter.convert()
Detamap Files
A detamap configuration file is used to provide all details necessary for the data conversion.
A datamap must be a Python dictionary, or convertable to a Python dictionary. Currently this means either a dictionary or JSON file (plans to add TOML support).
A detamap MUST include the following key:value pairs:
- "Mappings" with a sub-dictionary of source data field names as keys, mapped to output field names as values.
- "Defaults" with a sub-dictionary of source field names that will supply a default value if either: (not currently implemented)
- Matching field was not found in source.
- Matching source data was empty, such as an empty string.
- "Operations" with a list of operations to perform on source data: (not currently implemented)
- Example operations may be "upper", "convertValue", "strip", etc.
- Operations entries are provided as dictionaries with sub-dictionaries for the fields the operations are to be performed on (single string value, list of strings, or "*" to indicate all fields) and an arguments key that contains a list of arguments to be passed. Arguments may be an empty list if no arguments. A dictionary may be passed as a single argument, if the operation expects a dictionary as the argument, but must be passed withing a list.
- Operations are performed in order they appear in the list.
- Operations may be listed multiple times with different argument and field values.
- "Source" with a sub-dictionary that defines the type of source being passed, and the arguments to pass to Path.open() if source is a file, or csv.DictReader if source is CSV data.
- Required keys:
- "argument" as type of argument being passed as the source argument to the Detakon initializer. Accepted values: "filepath".
- "type" key may be required depending on the argument being passed.
- "argument" as type of argument being passed as the source argument to the Detakon initializer. Accepted values: "filepath".
- Required keys:
- "Output" with a sub-dictionary that defines the type of output expected, and the arguments to pass to Path.open() if destination is a file, or csv.DictReader if output is CSV data.
- "fields" sub-key as a list of strings corresponding to the output field names in the desired order.
A detamap JSON file may look similar to:
{
"Mappings": {
"Customer Id": "External ID",
"First Name": "First Name",
"Last Name": "Last Name",
"Company": "Company",
"Country": "Country",
"Phone 1": "Phone",
"Phone 2": "Cell",
"Email": "Email",
"Website": "URL",
"Postal Code": "Zip"
},
"Defaults": {
"Postal Code": "00000"
},
"Operations": [
{"hashmap": {"fields": "Country",
"arguments": [{
"United States of America": "USA",
"Antarctica (the territory South of 60 deg S)": "Antarctica"}]
}
},
{"strip": {"fields": "*"}},
{"strip": {"arguments": ["+1-"], "fields": ["Phone 1", "Phone 2"]}},
{"upper": {"fields": ["Email", "Last Name", "First Name"]}}
],
"Source": {
"argument": "filepath",
"type": "str",
"encoding": "utf-8",
"format": "csv",
"delimiter": ","
},
"Output": {
"fields": ["External ID", "Company", "Last Name", "First Name", "Country", "Zip", "Phone", "Cell", "Email", "URL"],
"argument": "filepath",
"type": "str",
"append": false,
"omit_heading": false,
"encoding": "utf-8",
"format": "csv",
"delimiter": ","
}
}
Above sample is not all-inclusive. Detamaps, source data, and output expect full chain of custody. No security guarantees are made. Users are advised not to use untrusted, or malformed data.
License
detakon is distributed under the terms of the MIT license.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file detakon-0.2.0.tar.gz.
File metadata
- Download URL: detakon-0.2.0.tar.gz
- Upload date:
- Size: 10.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: Hatch/1.16.2 cpython/3.11.2 HTTPX/0.28.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
239e64748189cfb403a52185e267f7b4f43fb5eeb54a9c07c52de498b5706bb7
|
|
| MD5 |
9bd01fef8e5d90c5819b1f5a0cd4327b
|
|
| BLAKE2b-256 |
38289112dcb3b5f7a0ba3bce3578031eb72610c6c7289764fd0e7d4e0561e0e5
|
File details
Details for the file detakon-0.2.0-py3-none-any.whl.
File metadata
- Download URL: detakon-0.2.0-py3-none-any.whl
- Upload date:
- Size: 8.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: Hatch/1.16.2 cpython/3.11.2 HTTPX/0.28.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0202c70adbeacbc210dc170bad5ff78685c1580f8302ee1400ffc76973a36954
|
|
| MD5 |
f57a88d8d00f0b680d3c53a3e932d056
|
|
| BLAKE2b-256 |
b77e87d4b97e7624f9c4a9df46c1ce19566aad6a145e5bb07759adb0b136a85c
|