Project Overview: Examples
Project Overview: Examples
Installation
Installing the easy way, using pip:
$ pip install pyflo
Examples
There are many ways to utilize the PyFlo library. A few examples and tutorials can be
viewed on the EXAMPLES page.
Contributing
For developers, it's important to use common best practices when contributing to the
project. PEP 8 should always be adhered. Code should be documented with Google style
docstrings. Pull requests and filing issues are encouraged.
To start contributing with the PyFlo repository:
1. Fork it!
2. Create a local clone of your fork.
$ git clone https://github.com/YOUR-USERNAME/pyflo
Cloning into `pyflo`...
remote: Counting objects: 10, done.
remote: Compressing objects: 100% (8/8), done.
remove: Total 10 (delta 1), reused 10 (delta 1)
Unpacking objects: 100% (10/10), done.
Page 1|2
4. Add the original as a remote repository named upstream.
$ git remote add upstream https://github.com/benjiyamin/pyflo.git
$ git remote -v
origin https://github.com/YOUR-USERNAME/pyflo.git (fetch)
origin https://github.com/YOUR-USERNAME/pyflo.git (push)
upstream https://github.com/benjiyamin/pyflo.git (fetch)
upstream https://github.com/benjiyamin/pyflo.git (push)
6. Checkout your local master branch and sync upstream/master to it, without losing
local changes.
$ git checkout master
Switched to branch 'master'
Testing
Unit Testing is currently done using the built-in unittest module:
$ python tests.py
License
This project is licensed under GPL 3.0 - see LICENSE for details.
Page 2|2