Skip to main content

simple Rx pipeline implementation

Project description

=========
RexPython
=========

This is Reactive Extensions (Rx) for Python implementation mimicing RxJava2 API as far as it can.
It is LINQ free btw. The goal to make it hackable on the go.

https://github.com/chexov/rexpython


Installation
============
pip install rexpython

=====
Usage
=====
import rexpython as rx

def on_subscribe(emitter):
emitter.setDisposable(ActionDisposable(lambda: sys.stdout.write("disposed")))

print ("subscribed")
for i in xrange(1, 3):
emitter.onNext(i)
time.sleep(1)

# emitter.onError(Exception("foo"))
emitter.onComplete()

frames = rx.Observable.create(lambda emitter: on_subscribe(emitter, video_url, 2))
mat_img = frames.map(featureextractor.FeatureExtractor.preprocess_image)
vect = mat_img.map(lambda img: fe.get_activations([img]))
words = vect.map(lambda vec: d.getWordsForBatch(vec, 40)) \
.flatMap(lambda wlist: rx.Observable.from_(wlist))
words = words.doOnNext(lambda w: log.info("words=%s" % w)).doOnError(lambda err: log.error("ERRRORRR %s" % err))
value = words.toList().blockingGet()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

rexpython-0.1.6.tar.gz (7.0 kB view details)

Uploaded Source

File details

Details for the file rexpython-0.1.6.tar.gz.

File metadata

  • Download URL: rexpython-0.1.6.tar.gz
  • Upload date:
  • Size: 7.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for rexpython-0.1.6.tar.gz
Algorithm Hash digest
SHA256 3a491073b21bb2e6b7235bfa945d0c58e6b3a5b2fcdfffbb6ff94bb61f4ac3a3
MD5 5ab4dbc5f908a1849333cc1af6b9e05d
BLAKE2b-256 b7323ca313146541659ce144f2a5d796cf5d54d9f2395f25a68dafd77b2fbf45

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page