├── .gitignore ├── LICENSE.txt ├── MANIFEST.in ├── README.txt ├── ez_setup.py ├── libevent.py ├── samples ├── .gitignore ├── hello.py └── http.py ├── setup.cfg ├── setup.py ├── src ├── _libevent.c ├── pybase.c ├── pybase.h ├── pybuffer.c ├── pybuffer.h ├── pybufferevent.c ├── pybufferevent.h ├── pyevent.c ├── pyevent.h ├── pyhttp.c ├── pyhttp.h ├── pylistener.c └── pylistener.h ├── tests ├── .gitignore ├── __init__.py ├── test_buffer.py ├── test_bufferevent.py ├── test_event.py └── test_http.py └── version.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancycode/python-libevent/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancycode/python-libevent/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancycode/python-libevent/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancycode/python-libevent/HEAD/README.txt -------------------------------------------------------------------------------- /ez_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancycode/python-libevent/HEAD/ez_setup.py -------------------------------------------------------------------------------- /libevent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancycode/python-libevent/HEAD/libevent.py -------------------------------------------------------------------------------- /samples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancycode/python-libevent/HEAD/samples/.gitignore -------------------------------------------------------------------------------- /samples/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancycode/python-libevent/HEAD/samples/hello.py -------------------------------------------------------------------------------- /samples/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancycode/python-libevent/HEAD/samples/http.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancycode/python-libevent/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancycode/python-libevent/HEAD/setup.py -------------------------------------------------------------------------------- /src/_libevent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancycode/python-libevent/HEAD/src/_libevent.c -------------------------------------------------------------------------------- /src/pybase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancycode/python-libevent/HEAD/src/pybase.c -------------------------------------------------------------------------------- /src/pybase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancycode/python-libevent/HEAD/src/pybase.h -------------------------------------------------------------------------------- /src/pybuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancycode/python-libevent/HEAD/src/pybuffer.c -------------------------------------------------------------------------------- /src/pybuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancycode/python-libevent/HEAD/src/pybuffer.h -------------------------------------------------------------------------------- /src/pybufferevent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancycode/python-libevent/HEAD/src/pybufferevent.c -------------------------------------------------------------------------------- /src/pybufferevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancycode/python-libevent/HEAD/src/pybufferevent.h -------------------------------------------------------------------------------- /src/pyevent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancycode/python-libevent/HEAD/src/pyevent.c -------------------------------------------------------------------------------- /src/pyevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancycode/python-libevent/HEAD/src/pyevent.h -------------------------------------------------------------------------------- /src/pyhttp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancycode/python-libevent/HEAD/src/pyhttp.c -------------------------------------------------------------------------------- /src/pyhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancycode/python-libevent/HEAD/src/pyhttp.h -------------------------------------------------------------------------------- /src/pylistener.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancycode/python-libevent/HEAD/src/pylistener.c -------------------------------------------------------------------------------- /src/pylistener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancycode/python-libevent/HEAD/src/pylistener.h -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancycode/python-libevent/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/test_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancycode/python-libevent/HEAD/tests/test_buffer.py -------------------------------------------------------------------------------- /tests/test_bufferevent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancycode/python-libevent/HEAD/tests/test_bufferevent.py -------------------------------------------------------------------------------- /tests/test_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancycode/python-libevent/HEAD/tests/test_event.py -------------------------------------------------------------------------------- /tests/test_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancycode/python-libevent/HEAD/tests/test_http.py -------------------------------------------------------------------------------- /version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancycode/python-libevent/HEAD/version.py --------------------------------------------------------------------------------