Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 692 Bytes

README.md

File metadata and controls

14 lines (12 loc) · 692 Bytes

How do I set up?

  • Make sure that you use python3.6 or above
  • Inside a virtualenv : pip3 install streamAPI -U
  • If you want to install globally: sudo -H pip3 install streamAPI -U
  • To install via git: pip3 install git+https://github.com/ShivKJ/Basics.git@master
  • current version: 2.0.4
  • To run test: python -m unittest discover -s streamAPI/test/ -p '*_test.py'

Philosophy

We, in day to day data handling, have to usually setup pipeline to process data, that can be transforming data, filtering it, processing it sequentially or concurrently, reducing it and so on. StreamAPI attempts to provide solution to such problem in clean and easy way and enforces readability.