├── .coveragerc ├── .gitignore ├── .travis.yml ├── CHANGELOG ├── LICENSE ├── MANIFEST.in ├── README.md ├── gunicorn_thrift ├── __init__.py ├── config.py ├── gevent_worker.py ├── six.py ├── sync_worker.py ├── thriftapp.py ├── thriftpy_gevent_worker.py ├── thriftpy_sync_worker.py └── utils.py ├── requirements_py27.txt ├── requirements_py3x.txt ├── setup.py ├── test_requirements_py27.txt ├── test_requirements_py3x.txt ├── tests ├── __init__.py ├── conftest.py ├── gunicorn_config.py ├── gunicorn_timeout_config.py ├── pingpong.thrift ├── pingpong_sdk │ ├── __init__.py │ └── pingpong │ │ ├── PingService-remote │ │ ├── PingService.py │ │ ├── __init__.py │ │ ├── constants.py │ │ └── ttypes.py ├── six.py ├── test_gevent_worker.py ├── test_sync_worker.py ├── test_thriftpy_gevent_worker.py ├── test_thriftpy_sync_worker.py ├── thrift_app.py └── thriftpy_app.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | branch = True 3 | omit = wand_wielder/utils.py 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thriftpy/gunicorn_thrift/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thriftpy/gunicorn_thrift/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thriftpy/gunicorn_thrift/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thriftpy/gunicorn_thrift/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thriftpy/gunicorn_thrift/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thriftpy/gunicorn_thrift/HEAD/README.md -------------------------------------------------------------------------------- /gunicorn_thrift/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.2.25" 2 | -------------------------------------------------------------------------------- /gunicorn_thrift/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thriftpy/gunicorn_thrift/HEAD/gunicorn_thrift/config.py -------------------------------------------------------------------------------- /gunicorn_thrift/gevent_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thriftpy/gunicorn_thrift/HEAD/gunicorn_thrift/gevent_worker.py -------------------------------------------------------------------------------- /gunicorn_thrift/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thriftpy/gunicorn_thrift/HEAD/gunicorn_thrift/six.py -------------------------------------------------------------------------------- /gunicorn_thrift/sync_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thriftpy/gunicorn_thrift/HEAD/gunicorn_thrift/sync_worker.py -------------------------------------------------------------------------------- /gunicorn_thrift/thriftapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thriftpy/gunicorn_thrift/HEAD/gunicorn_thrift/thriftapp.py -------------------------------------------------------------------------------- /gunicorn_thrift/thriftpy_gevent_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thriftpy/gunicorn_thrift/HEAD/gunicorn_thrift/thriftpy_gevent_worker.py -------------------------------------------------------------------------------- /gunicorn_thrift/thriftpy_sync_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thriftpy/gunicorn_thrift/HEAD/gunicorn_thrift/thriftpy_sync_worker.py -------------------------------------------------------------------------------- /gunicorn_thrift/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thriftpy/gunicorn_thrift/HEAD/gunicorn_thrift/utils.py -------------------------------------------------------------------------------- /requirements_py27.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thriftpy/gunicorn_thrift/HEAD/requirements_py27.txt -------------------------------------------------------------------------------- /requirements_py3x.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thriftpy/gunicorn_thrift/HEAD/requirements_py3x.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thriftpy/gunicorn_thrift/HEAD/setup.py -------------------------------------------------------------------------------- /test_requirements_py27.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thriftpy/gunicorn_thrift/HEAD/test_requirements_py27.txt -------------------------------------------------------------------------------- /test_requirements_py3x.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thriftpy/gunicorn_thrift/HEAD/test_requirements_py3x.txt -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thriftpy/gunicorn_thrift/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thriftpy/gunicorn_thrift/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/gunicorn_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thriftpy/gunicorn_thrift/HEAD/tests/gunicorn_config.py -------------------------------------------------------------------------------- /tests/gunicorn_timeout_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thriftpy/gunicorn_thrift/HEAD/tests/gunicorn_timeout_config.py -------------------------------------------------------------------------------- /tests/pingpong.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thriftpy/gunicorn_thrift/HEAD/tests/pingpong.thrift -------------------------------------------------------------------------------- /tests/pingpong_sdk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/pingpong_sdk/pingpong/PingService-remote: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thriftpy/gunicorn_thrift/HEAD/tests/pingpong_sdk/pingpong/PingService-remote -------------------------------------------------------------------------------- /tests/pingpong_sdk/pingpong/PingService.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thriftpy/gunicorn_thrift/HEAD/tests/pingpong_sdk/pingpong/PingService.py -------------------------------------------------------------------------------- /tests/pingpong_sdk/pingpong/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thriftpy/gunicorn_thrift/HEAD/tests/pingpong_sdk/pingpong/__init__.py -------------------------------------------------------------------------------- /tests/pingpong_sdk/pingpong/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thriftpy/gunicorn_thrift/HEAD/tests/pingpong_sdk/pingpong/constants.py -------------------------------------------------------------------------------- /tests/pingpong_sdk/pingpong/ttypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thriftpy/gunicorn_thrift/HEAD/tests/pingpong_sdk/pingpong/ttypes.py -------------------------------------------------------------------------------- /tests/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thriftpy/gunicorn_thrift/HEAD/tests/six.py -------------------------------------------------------------------------------- /tests/test_gevent_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thriftpy/gunicorn_thrift/HEAD/tests/test_gevent_worker.py -------------------------------------------------------------------------------- /tests/test_sync_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thriftpy/gunicorn_thrift/HEAD/tests/test_sync_worker.py -------------------------------------------------------------------------------- /tests/test_thriftpy_gevent_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thriftpy/gunicorn_thrift/HEAD/tests/test_thriftpy_gevent_worker.py -------------------------------------------------------------------------------- /tests/test_thriftpy_sync_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thriftpy/gunicorn_thrift/HEAD/tests/test_thriftpy_sync_worker.py -------------------------------------------------------------------------------- /tests/thrift_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thriftpy/gunicorn_thrift/HEAD/tests/thrift_app.py -------------------------------------------------------------------------------- /tests/thriftpy_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thriftpy/gunicorn_thrift/HEAD/tests/thriftpy_app.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thriftpy/gunicorn_thrift/HEAD/tox.ini --------------------------------------------------------------------------------