8000 GitHub - bwhmather/dtl
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

bwhmather/dtl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DTL (Data Transformation Language)

Explainable language for cleaning tabular data.

WITH a AS IMPORT 'input_a';
WITH b AS IMPORT 'input_b';
WITH output AS
    SELECT key, a.value AS a, b.value AS b
    FROM a
    JOIN b ON a.key + 1 = b.key;
EXPORT output TO 'output';

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0