summaryrefslogtreecommitdiff
path: root/README.md
Commit message (Collapse)AuthorAgeFilesLines
* Move to .rst and use it in setup.py for long descriptionJohn Anderson2015-02-101-40/+0
|
* This links to the main page not the mobile siteJohn Anderson2015-02-101-1/+1
|
* 2014 -> 2015David Arthur2015-02-031-1/+1
|
* Adding ReadTheDocs badgeDavid Arthur2015-02-031-1/+2
| | | Because you can never have enough badges
* Update README and CHANGES for 0.9.3 releaseDana Powers2015-02-031-6/+9
|
* Add Sphinx API docsWill Daly2015-01-151-230/+2
|
* update low levelsunisdown2014-12-111-3/+4
| | | | change KafkaProdocol.encode_message to create_message and change import ProduceRequest from kafka.common
* Update python version support in READMEDana Powers2014-09-101-4/+5
|
* Add a little more detail to test instructions in READMEDana Powers2014-09-041-3/+16
|
* Add simple PyPI install instructions and link to releases in READMEDana Powers2014-09-041-0/+9
|
* Update README code examples to import from kafka not kafka.client, ↵Dana Powers2014-09-041-12/+9
| | | | kafka.consumer, etc
* Version to 0.9.2 and Changelog (with some backstory)v0.9.2Dana Powers2014-08-271-1/+1
|
* Merge pull request #213 from dpkp/improve_failover_testsDana Powers2014-08-271-1/+3
|\ | | | | | | | | Warn users about async producer Refactor producer failover tests (5x speedup) Skip async producer failover test for now, because it is broken
| * Add warnings to README, docstring, and logging that async producer does not ↵Dana Powers2014-08-261-1/+3
| | | | | | | | retry failed messages
* | Add link to kafka-clients google-group on READMEDana Powers2014-08-261-1/+4
|/
* Raise TypeError in kafka.producer.send_messages if any msg is not a str (or ↵Dana Powers2014-08-261-0/+7
| | | | subclass); document
* Change TravisCI badge to reflect master branchDavid Arthur2014-08-211-1/+1
|
* Adding IRC to READMEDavid Arthur2014-08-211-1/+3
|
* Add apt-get install libsnappy-dev instructions to READMEDana Powers2014-08-141-6/+13
|
* Support integration testing against kafka source builds (see README)vagrant2014-08-131-0/+9
|
* Update tox.ini to use {posargs} to configure nosetests.Dana Powers2014-08-131-0/+5
| | | | | | | | To override defaults, use `tox -- --your --nosetest --options --here` Update default nosetest settings to use verbose logging and show test ids add .coverage and .noseids to .gitignore Add example for running single unit test to README
* Add kafka 0.8.1.1 to integration tests.Dana Powers2014-08-131-0/+1
| | | | | | - previous 0.8.1 src appears to have actually been 0.8.1.1 based on git submodule commit. So technically this adds back 0.8.1 to the test suite.
* Remove kafka src submodulesDana Powers2014-08-131-15/+1
|
* Various fixesMark Roberts2014-04-251-6/+13
| | | | | | | | Bump version number to 0.9.1 Update readme to show supported Kafka/Python versions Validate arguments in consumer.py, add initial consumer unit test Make service kill() child processes when startup fails Add tests for util.py, fix Python 2.6 specific bug.
* Update READMEMark Roberts2014-04-231-23/+25
|
* Merge branch 'master' into multihostsmrtheb2014-01-311-16/+15
|\ | | | | | | | | | | | | | | | | Conflicts: kafka/client.py kafka/conn.py setup.py test/test_integration.py test/test_unit.py
| * Make producers take a topic argument at send rather than init timeOmar Ghishan2014-01-231-13/+13
| | | | | | | | This allows a single producer to be used to send to multiple topics. See https://github.com/mumrah/kafka-python/issues/110
| * 0.9.0Thomas Dimson2014-01-151-3/+2
| |
| * Update README.md tooThomas Dimson2014-01-151-1/+1
| |
| * fix typo in README acks_timeout -> ack_timeoutZack Dever2013-12-121-1/+1
| |
* | Allow KafkaClient to take in a list of brokers for bootstrappingMarc Labbe2013-11-141-4/+4
|/
* Revert "Disable unit tests for 2.6, close #57"David Arthur2013-10-031-1/+1
| | | | This reverts commit e39e05f8a50b7528a22fed99dc67d561cbd79c41.
* Disable unit tests for 2.6, close #57David Arthur2013-10-031-1/+1
|
* Cherry-pick mrtheb/kafka-python 8b9c7e51mrtheb2013-10-031-1/+2
| | | | | | | | | Sync tests and fixtures with kafka 0.8.0-beta1 tag Conflicts: README.md kafka-src
* update README.md to link to travis-ci's build pageJim Lim2013-10-021-1/+1
|
* add .travis.ymlJim Lim2013-10-011-1/+3
|
* Update README.mdSteven Le Roux2013-09-261-2/+5
| | | Small fixes in ## Multiprocess consumer example.
* Update README.mdSteven Le Roux2013-09-261-1/+1
| | | correct typo in readme example
* Show alternative way of running tests in README.mdDavid Arthur2013-07-261-0/+12
|
* Merge branch 'issue-35'David Arthur2013-07-261-0/+18
|\ | | | | | | | | | | | | Conflicts: kafka/__init__.py kafka/consumer.py test/test_integration.py
| * Fix cases of single partitionMahendra M2013-06-281-0/+2
| |
| * Minor markup fixMahendra M2013-06-281-1/+1
| |
| * Fix markupsMahendra M2013-06-281-0/+2
| |
| * Fix markup in READMEMahendra M2013-06-281-1/+1
| |
| * Add support for multi-process consumerMahendra M2013-06-241-0/+14
| |
* | Make README self-containingMahendra M2013-06-261-1/+1
| |
* | Update README with examplesMahendra M2013-06-261-0/+11
| |
* | Update README with new optionsMahendra M2013-06-201-0/+15
| |
* | Merge branch 'master' into asyncproducerMahendra M2013-06-131-0/+16
|\ \ | |/ | | | | | | Conflicts: kafka/producer.py
| * Better examples in READMEMahendra M2013-06-131-1/+4
| |