https://github.com/pseudomanifold/pump
A generic data flow program
https://github.com/pseudomanifold/pump
c-plus-plus-11 cplusplus data-analysis data-flow small
Last synced: 2 months ago
JSON representation
A generic data flow program
- Host: GitHub
- URL: https://github.com/pseudomanifold/pump
- Owner: Pseudomanifold
- License: mit
- Created: 2017-02-08T16:15:52.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-02-09T08:14:17.000Z (about 8 years ago)
- Last Synced: 2024-12-26T11:09:09.367Z (4 months ago)
- Topics: c-plus-plus-11, cplusplus, data-analysis, data-flow, small
- Language: C++
- Size: 34.2 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
[](https://travis-ci.org/Submanifold/Pump)
# Pump — A generic data flow program
`Pump` is a generic data flow program, meant to accommodate those who
often use multiple unrelated programs for *data wrangling*. Normally,
you would have to keep track manually about which program to call and
in what order.With `Pump`, you just have to write a (simple) workflow file and
let the program run it for you. Not only does this make executing the
different scripts easier, it also gives you a better control over how
data sets are being created. You may even store the workflow file via
`git` or other version control systems, for example.That way, you will *never* forget how you created that data set!
# Requirements
`Pump` is written in C++, following the recent C++11 standard, so you
definitely need a somewhat modern C++ compiler. Other than `CMake` as
a build system, `Pump` does not require any other dependencies.# Building
* Clone the repository
* Install [`CMake`](https://cmake.org) using a package manager of your
choice
* Install a modern C++ compiler such as [`clang`](http://clang.llvm.org)
if you do not have one alreadyIn the cloned repository, issue the following commands to build `Pump`:
$ mkdir build
$ cd build
$ cmake ../
$ makeThis should be sufficient to build `pump`, some related tools, and some
examples.# Usage
Please consult [the wiki](https://github.com/Submanifold/Pump/wiki) for
usage information. You are welcome to extend the documentation, request
features, and so on…# License
Pump uses the MIT license. Please see the file [`LICENSE.md`](LICENSE.md)
in the main directory of the repository for more details.