Skip to main content

Declarative Data Orchestration

Project description

Project generated with PyScaffold PyPI-Server

awk_plus_plus

A language designed for data orchestration.

Features

  • Fuzzy regex engine and Semantic search to retrieve information in an in-process DB.
  • End-user programming.
  • Orthogonal Persistence based on DuckDB
  • Transparent reference with Jsonnet. We plan to execute this future with Dask.
  • URL interpreter to manage data sources.

Installation from pip

Install the package with:

pip install awk_plus_plus

CLI Usage

You output your data to JSON with the cti command.

Jsonnet support

Hello world

cti i "Hello world" -p -v 4

Jsonnet support

cti i '{"keys":: ["AWK", "SED", "SHELL"], "languages": [std.asciiLower(x) for x in self.keys]}'

URL interpreter

Our step further is the URL interpreter which allows you to manage different data sources with an unique syntax across a set of plugins.

STDIN, STDOUT, STDERR

cti i '{"lines": interpret("stream://stdin?strip=true")}'

Imap

cti i '{"emails": interpret("imap://USER:PASSWORD@HOST:993/INBOX")}'

Keyring

cti i '{"email":: interpret("keyring://backend/awk_plus_plus/email"), "emails": interpret($.email)}'

Files

cti i 'interpret("**/*.csv")'

SQL

cti i 'interpret("sql:SELECT * FROM email")'

Leverage the Power of Reference with Jsonnet

Unlike other programming languages that require multiple steps to reference data, Jsonnet requires only one step, thanks to its reference mechanism. This is particularly useful for data engineers who want to connect different services in a topological order. The code below represents this scenario in Python:

import requests

def fetch_character(id):
    url = f"https://rickandmortyapi.com/api/character/{id}"
    response = requests.get(url)
    return response.json()

def process_character(character):
    # Add new 'image' field with processed URL
    character['image'] += f"?awk_download=data/{character['name'].replace(' ', '_').lower()}.jpeg"
    
    # Process 'episode' field, fetching additional data if necessary
    character['episode'] = [requests.get(episode).json() for episode in character['episode']]
    
    return character


print([process_character(fetch_character(id)) for id in [1, 2, 3, 4, 5, 6]])

Contrary to the previous Python code, Jsonnet allows you to leverage the power of referential transparency. The previous code is equivalent in Jsonnet to:

[
   i("https://rickandmortyapi.com/api/character/%s" % id) + 
    {image: i(super.image+"?awk_download=data/"+std.strReplace(std.asciiLower(super.name), " ", "_")+".jpeg")} + 
    {episode: [i(episode) for episode in super.episode]}
   for id in [1,2,3,4,5,6]
]

Note

This project has been set up using PyScaffold 4.5 and the dsproject extension 0.0.post167+g4386552.

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

awk_plus_plus-0.13.0.tar.gz (36.1 kB view details)

Uploaded Source

Built Distribution

awk_plus_plus-0.13.0-py3-none-any.whl (14.6 kB view details)

Uploaded Python 3

File details

Details for the file awk_plus_plus-0.13.0.tar.gz.

File metadata

  • Download URL: awk_plus_plus-0.13.0.tar.gz
  • Upload date:
  • Size: 36.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.9

File hashes

Hashes for awk_plus_plus-0.13.0.tar.gz
Algorithm Hash digest
SHA256 ceb2e076c4d5b1cdc28106fa8eb3cb593782a413f9855eb293171809fd55740a
MD5 5aacd83687fd348798466c1b48f57001
BLAKE2b-256 d22256c3e01a5bdd0c612b67bc19b9176ae4618686963cdebd6baf8446b397f7

See more details on using hashes here.

File details

Details for the file awk_plus_plus-0.13.0-py3-none-any.whl.

File metadata

File hashes

Hashes for awk_plus_plus-0.13.0-py3-none-any.whl
Algorithm Hash digest
SHA256 d78d40c8b2ec61edf263abeee697fb0dac448f4218165e3b8b940eb4582e1015
MD5 12a38b1870fccf4e61d3bda6e418d6c6
BLAKE2b-256 8282b6e42549257f1a62ecc7d7a867390530aa5a035a705141b19b3cd450f375

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page