Skip to main content

Entropic, physics data processing framework

Project description

Entropic

A simple data processing framework for a quick, no-frills setup of a data pipeline.

Usage

Absolute minimum

The simples, most minimal setup for entropic is just declaring the pipeline source path and extract method:

# pipeline.py
from entropic.sources import Sample
from entropic.process import Pipeline


class Process(Pipeline):
    source_path = "path/to/raw/results"
    extract_with = Sample.read_csv


if __name__ == "__main__":
    pipe = Process()
    pipe.run()

Run python3 pipeline.py and access your results with

# results.py
from entropic import results

for iteration in results.all:
    for sample in iteration.samples:
        print(sample.data)

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

entropic-0.0.1a0.tar.gz (9.7 kB view hashes)

Uploaded Source

Built Distribution

entropic-0.0.1a0-py3-none-any.whl (7.9 kB view hashes)

Uploaded Python 3

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