Skip to content

Commit

Permalink
Update docs, example and bump version to 0.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
hharnisc committed Apr 4, 2015
1 parent ecb034e commit 6151381
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,12 @@ $ pip install python-meteor

## History

**Latest Version** 0.1.4
**Latest Version** 0.1.5

- BUGFIX - unsubscribe was not unsubcribing (missing sub ID) (thanks [@tdamsma](https://github.com/tdamsma))
- examples and docs support python 3

**Latest** 0.1.4

- BUGFIX - update connected status when reconnecting (thanks [@ppettit](https://github.com/ppettit))
- BUGFIX - make sure `logged_in` callback get's fired (thanks [@pmgration](https://github.com/pmgration))
Expand Down Expand Up @@ -536,4 +541,5 @@ $ python example.py
##Collaborators

- [@ppettit](https://github.com/ppettit)
- [@pmgration](https://github.com/pmgration)
- [@pmgration](https://github.com/pmgration)
- [@tdamsma](https://github.com/tdamsma)
4 changes: 3 additions & 1 deletion example.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def subscription_callback(error):
client.on('connected', connected)

client.connect()
client.subscribe('lists')
client.subscribe('publicLists')


# (sort of) hacky way to keep the client alive
Expand All @@ -55,3 +55,5 @@ def subscription_callback(error):
time.sleep(1)
except KeyboardInterrupt:
break

client.unsubscribe('publicLists')
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
readme = f.read()

setup(name='python-meteor',
version='0.1.4',
version='0.1.5',
description='An event driven meteor client',
long_description=readme,
license='MIT',
author='Harrison Harnisch',
author_email='[email protected]',
url='https://github.com/hharnisc/python-meteor',
keywords = ["meteor", "ddp", "events", "emitter", "node.js", "node", "eventemitter", "event_emitter"],
keywords = ["meteor", "ddp", "events", "emitter", "node.js", "node", "eventemitter", "event_emitter", "ejson"],
classifiers = [
"Programming Language :: Python",
"Development Status :: 2 - Pre-Alpha",
Expand Down

0 comments on commit 6151381

Please sign in to comment.