| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | use py3 urllib import in doc and examples | Sergey Shepelev | 2020-12-13 | 4 | -8/+8 |
| | | | | | https://github.com/eventlet/eventlet/issues/668 | ||||
| * | Drop support for Python2.6 and python-epoll package | Sergey Shepelev | 2018-05-19 | 2 | -4/+0 |
| | | |||||
| * | external dependencies for six, monotonic, dnspython | nat-goodspeed | 2018-05-10 | 1 | -1/+1 |
| | | |||||
| * | websocket: update example for Blob | Sergey Shepelev | 2016-11-05 | 1 | -5/+10 |
| | | | | | https://github.com/eventlet/eventlet/issues/351 | ||||
| * | hubs: drop Twisted support | Sergey Shepelev | 2014-10-29 | 7 | -248/+0 |
| | | |||||
| * | Reformat with autopep8 | Jakub Stasiak | 2014-10-11 | 6 | -7/+17 |
| | | |||||
| * | PEP-8 fixes | Sergey Shepelev | 2014-08-27 | 15 | -38/+61 |
| | | |||||
| * | python3 compat fixes | Victor Sergeyev | 2014-03-28 | 1 | -7/+9 |
| | | | | | https://github.com/eventlet/eventlet/pull/59 | ||||
| * | python3 compat: print() function syntax | Sergey Shepelev | 2013-12-03 | 20 | -66/+70 |
| | | |||||
| * | python3 compat: 2to3: `except E as e:` syntax | Davanum Srinivas | 2013-12-03 | 4 | -4/+4 |
| | | | | | | | | First step to Python 3 compatibility "2to3 -w -f except ." See [1] [1] http://docs.python.org/2/library/2to3.html#fixers | ||||
| * | examples: webcrawler: urls tuple->list + more style fixes | Sergey Shepelev | 2013-01-04 | 1 | -8/+9 |
| | | |||||
| * | use a tuple of URLs that do not 404 | Thomas Grainger | 2013-01-03 | 1 | -9/+12 |
| | | |||||
| * | Refactoring example to use a bit clearer code flow. | Ryan Williams | 2011-06-08 | 1 | -6/+11 |
| | | |||||
| * | Initial implementation of hubless zeromq support using ZMQ_FD and ZMQ_EVENTS. | Zed Shaw | 2011-04-08 | 1 | -0/+31 |
| | | |||||
| * | Fixes #70. Thanks for the patch, I assume this is the same anonymous as ↵ | Ryan Williams | 2010-12-15 | 1 | -3/+2 |
| | | | | | before, cheers. | ||||
| * | Refactored the green version of zmq to use a factory function for Context | Ben Ford | 2010-10-12 | 1 | -2/+1 |
| | | |||||
| * | Changed around the sockets in the bridge for claritly, tidied up the main ↵ | Ben Ford | 2010-09-30 | 2 | -17/+23 |
| | | | | | code and added some module docs | ||||
| * | Added a distributed chat example that has many chat servers forwarding chat ↵ | Ben Ford | 2010-09-29 | 2 | -0/+142 |
| | | | | | messages over a zmq device | ||||
| * | Changed existing websocket examples to take a port | Ben Ford | 2010-09-29 | 2 | -3/+5 |
| | | |||||
| * | Merge latest changes | Ben Ford | 2010-09-20 | 1 | -0/+2 |
| |\ | |||||
| | * | Support for SSL websockets, which also happens to improve our SSL support in ↵ | Ryan Williams | 2010-09-16 | 1 | -0/+2 |
| | | | | | | | | | WSGI generally. Fixes #62. | ||||
| * | | First stab at zeromq support. This consists of: | Ben Ford | 2010-09-20 | 1 | -0/+64 |
| |/ | | | | | | | | | | | | | | | | | | | A new hub: This closely mirrors the poll hub with some of the internal logic changed to reflect zmq's flags. A green module for zmq: This subclasses Context and Socket to ensure calls are non blocking. A (very sparse) beginings of a test module. An example: A melding of the pyzmq chat example and the eventlet telnet chat example. TODO zmq_poll chokes if the sockets passed to it come from different contexts. As context is the entry point to everything else then it would make sense to include a check in here that each thread has only one context instance. By context being the entry point I mean: ctx = zmq.Context() socket = ctx.socket(zmq.<type-of-socket>) This call to socket is repeated for each socket you want and ctx must be the same one for each thread. Tests. I'd like to get to the point f having all zmq socket pairs tested - and perhaps a nice benchmark suite too. | ||||
| * | Added websocket multi-user chat example for Luca Zago's question. | Ryan Williams | 2010-08-13 | 2 | -0/+68 |
| | | |||||
| * | Incorporated Holger's fix for Chrome 5 | Ryan Williams | 2010-07-28 | 2 | -2/+2 |
| | | |||||
| * | Added cleaner recursive web crawler example. | Ryan Williams | 2010-06-21 | 1 | -0/+49 |
| | | |||||
| * | Tweaked the implementation of Timeout so that passing True as the exception ↵ | Ryan Williams | 2010-06-19 | 1 | -3/+3 |
| | | | | | class is the same as passing None, because it seemed inconsistent that one boolean value would have special nice behavior and the other would cause weird exceptions. | ||||
| * | Added documentation for websocket module and switched to using decorators in ↵ | Ryan Williams | 2010-05-22 | 1 | -2/+3 |
| | | | | | the examples. | ||||
| * | Moved WebSocketWSGI class into eventlet.websocket and added a fewtests to ↵ | Ryan Williams | 2010-05-06 | 1 | -110/+7 |
| | | | | | bring it back up to 100%. Refactored the example to reference eventlet.websocket. | ||||
| * | Updated chat server example to be resilient against broken pipes. Also used ↵ | Ryan Williams | 2010-03-31 | 1 | -7/+15 |
| | | | | | a set instead of a list and parameterized the port. | ||||
| * | Corrected get_errno import to make websocket example work again (boo me for ↵ | Ryan Williams | 2010-03-21 | 2 | -3/+4 |
| | | | | | using an internal API). Added note about which browser it works with. | ||||
| * | Actually include forwarder example. | Ryan Williams | 2010-03-16 | 1 | -1/+3 |
| | | |||||
| * | run on stackless pypy 1.2 http://pypy.org/download.html#stackless-version | Donovan Preston | 2010-03-12 | 1 | -0/+1 |
| | | |||||
| * | Recursive crawler example added. | Ryan Williams | 2010-03-01 | 1 | -0/+51 |
| | | |||||
| * | Merge | Ryan Williams | 2010-02-28 | 1 | -0/+24 |
| |\ | |||||
| | * | Added port forwarder example. | Ryan Williams | 2010-02-28 | 1 | -0/+24 |
| | | | |||||
| * | | New eventlet.common module to create version-neutral layer. For now only ↵ | amajorek | 2010-02-28 | 1 | -2/+3 |
| |/ | | | | | | get_errno added there. All usage of e[0] replaced with either get_errno(e) or e.args[0] if intnetion was not to extract errno, but first argument | ||||
| * | Merge | Ryan Williams | 2010-02-21 | 5 | -26/+6 |
| |\ | |||||
| | * | Used convenience functions in examples. | Ryan Williams | 2010-02-21 | 5 | -26/+6 |
| |/ | |||||
| * | Shifted documentation to refer to eventlet-module versions of those functions. | Ryan Williams | 2010-02-19 | 1 | -2/+1 |
| | | |||||
| * | Added dispatch pattern that shows how to use GreenPiles. Feedparser ↵ | Ryan Williams | 2010-02-19 | 2 | -0/+66 |
| | | | | | examples in the examples dir. | ||||
| * | Modified echoserver example to not use separate readers/writers. | Ryan Williams | 2010-02-12 | 1 | -5/+5 |
| | | |||||
| * | Use None as the flag value because the empty string is a legit message. | Ryan Williams | 2010-02-11 | 1 | -2/+2 |
| | | |||||
| * | Updated websocket example, made it a little more bulletproof; now it's ↵ | Ryan Williams | 2010-02-11 | 1 | -35/+45 |
| | | | | | almost like tissue paper at stopping bullets. :) | ||||
| * | Expanded websocket example, added graphing page which looks rad in Chrome. | Ryan Williams | 2010-02-11 | 2 | -12/+87 |
| | | |||||
| * | Added websocket example, small changes to wsgi to support it. | Ryan Williams | 2010-02-10 | 1 | -0/+104 |
| | | |||||
| * | Pulled examples into docs proper, for better linkage on the Web. | Ryan Williams | 2010-01-25 | 2 | -51/+32 |
| | | |||||
| * | Cleaned up examples by moving twisted examples into their own subdirectory. | Ryan Williams | 2010-01-25 | 7 | -0/+1 |
| | | |||||
| * | Default size parameter for greenpools | Ryan Williams | 2010-01-17 | 3 | -5/+3 |
| | | |||||
| * | Deprecated connect_tcp, refactored the example a little bit. | Ryan Williams | 2010-01-17 | 1 | -15/+9 |
| | | |||||
| * | Added docs on max_http_version which mention its purpose of killing ↵ | Ryan Williams | 2010-01-10 | 1 | -5/+7 |
| | | | | | keepalives, improved wsgi docs with the example code. | ||||
