https://github.com/portfoliome/foil
Utilities for data cleaning and ETL processing
https://github.com/portfoliome/foil
data-acquisition etl finance python-3 utilities
Last synced: 6 months ago
JSON representation
Utilities for data cleaning and ETL processing
- Host: GitHub
- URL: https://github.com/portfoliome/foil
- Owner: portfoliome
- License: mit
- Created: 2016-10-02T22:06:53.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-12-14T18:25:56.000Z (almost 8 years ago)
- Last Synced: 2025-04-15T14:44:38.913Z (6 months ago)
- Topics: data-acquisition, etl, finance, python-3, utilities
- Language: Python
- Size: 66.4 KB
- Stars: 23
- Watchers: 12
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://travis-ci.com/portfoliome/foil)
[](http://codecov.io/github/portfoliome/foil?branch=master)
[](https://codeclimate.com/github/portfoliome/foil)
[](https://landscape.io/github/portfoliome/foil/master)
[](https://scrutinizer-ci.com/g/portfoliome/foil/?branch=master)# foil
foil contains for data cleaning and ETL processing.
## Design Conventions
* Use iterators and generators to build data processing pipelines.
* eliminate **IF** statements
* descriptive variable names
* reliance on the standard library
* priority for test driven developmentContributions are welcome.
### Getting Started
These instructions assume Python 3.5. It is recommended that you use conda or a virtualenv. foil is fairly lightweight, but has some dependencies.
#### For conda install follow:
Download the [conda installer](http://conda.pydata.org/miniconda.html).
And follow setup [instructions](http://conda.pydata.org/docs/install/quick.html#id1).#### Conda Environment
```sh
conda create --name python=3.5
activate
conda install --file requirements.txtpython setup.py install bdist_wheel
```#### debian installation
[Instruction](https://linuxconfig.org/how-to-change-from-default-to-alternative-python-version-on-debian-linux)Follow the instructions in the link provided. **DO NOT SUDO PIP INSTALL**. Alias the preferred Python installation by adding, for example:
```sh
alias python='/usr/bin/python3.5'
```#### When using Pip
```sh
pip install --upgrade pip
pip install wheel
pip install -r requirements.txtpython setup.py install bdist_wheel
```#### Running the Tests
```sh
py.test
```
#### Running Coverage Report
```sh
py.test --cov
```