Skip to content

A streamable version of pandas for online computation.

License

Notifications You must be signed in to change notification settings

mwbrulhardt/feed

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

feed

A streamable version of pandas for online computation.

Installation

Install canapi from PyPi using:

pip install feed-stream

Making a DataFeed

The following example shows how to make a streaming Fibonacci Sequence:

from feed import Stream, DataFeed

s = Stream.source(range(1000), dtype="float").rename("natural_numbers")
f1 = s.lag(1).rename("f(n-1)")
f2 = s.lag(1).rename("f(n-2)")

f = (f1 + f2).rename("fibonacci")

feed = DataFeed([s])

If you would like to know more about feed visit the documentation.!

About

A streamable version of pandas for online computation.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages