Ultra fast asyncio event loop.
Go to file
Yury Selivanov 2ab14e93a6 Update setup.py to make sdist builds; add "sdist" make target 2016-04-12 09:52:32 -04:00
examples/bench examples: Fix server.py to work again in poll mode 2016-04-06 13:35:11 -04:00
tests Implement loop.{add|remove}_signal_handler. 2016-04-11 21:53:20 -04:00
uvloop Update includes modules list 2016-04-12 09:52:03 -04:00
vendor Bump libuv to v1.8.0 2016-01-11 14:50:59 -05:00
.gitignore Ignore .cache dir 2015-11-20 19:08:34 -05:00
.gitmodules Switch libuv submodule url to https 2016-02-03 18:32:09 -05:00
LICENSE Add readme/license 2015-11-07 23:14:26 -05:00
MANIFEST.in Update setup.py to make sdist builds; add "sdist" make target 2016-04-12 09:52:32 -04:00
Makefile Update setup.py to make sdist builds; add "sdist" make target 2016-04-12 09:52:32 -04:00
README.rst Edits in README 2015-11-11 16:35:40 -05:00
pytest.ini Add a config file for py.test 2016-01-21 12:57:07 -05:00
setup.py Update setup.py to make sdist builds; add "sdist" make target 2016-04-12 09:52:32 -04:00

README.rst

An implementation of asyncio-compatible event loop on top of libuv.
This is a research prototype, do not use it in production.


# Build Instructions

You'll need `Cython` and Python 3.5.  The best way is to create
a virtual env, so that you'll have `cython` and `python` commands
pointing to the correct tools.

1. `git clone --recursive https://github.com/1st1/uvloop.git`

2. `cd uvloop; make`

3. `make test`