├── .gitignore ├── README.md ├── demos ├── __init__.py ├── books_service.py ├── create_customer.py ├── customer_service.py ├── delete_customer.py ├── echo_service.py ├── echo_service_sugar_stx.py ├── person_service.py └── update_customer.py ├── pyrestful ├── __init__.py ├── converttype.py ├── mediatypes.py ├── rest.py └── types.py ├── setup.py └── test ├── README.py ├── __init__.py └── tests_sugar_syntax.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancavil/tornado-rest/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancavil/tornado-rest/HEAD/README.md -------------------------------------------------------------------------------- /demos/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancavil/tornado-rest/HEAD/demos/__init__.py -------------------------------------------------------------------------------- /demos/books_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancavil/tornado-rest/HEAD/demos/books_service.py -------------------------------------------------------------------------------- /demos/create_customer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancavil/tornado-rest/HEAD/demos/create_customer.py -------------------------------------------------------------------------------- /demos/customer_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancavil/tornado-rest/HEAD/demos/customer_service.py -------------------------------------------------------------------------------- /demos/delete_customer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancavil/tornado-rest/HEAD/demos/delete_customer.py -------------------------------------------------------------------------------- /demos/echo_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancavil/tornado-rest/HEAD/demos/echo_service.py -------------------------------------------------------------------------------- /demos/echo_service_sugar_stx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancavil/tornado-rest/HEAD/demos/echo_service_sugar_stx.py -------------------------------------------------------------------------------- /demos/person_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancavil/tornado-rest/HEAD/demos/person_service.py -------------------------------------------------------------------------------- /demos/update_customer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancavil/tornado-rest/HEAD/demos/update_customer.py -------------------------------------------------------------------------------- /pyrestful/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancavil/tornado-rest/HEAD/pyrestful/__init__.py -------------------------------------------------------------------------------- /pyrestful/converttype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancavil/tornado-rest/HEAD/pyrestful/converttype.py -------------------------------------------------------------------------------- /pyrestful/mediatypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancavil/tornado-rest/HEAD/pyrestful/mediatypes.py -------------------------------------------------------------------------------- /pyrestful/rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancavil/tornado-rest/HEAD/pyrestful/rest.py -------------------------------------------------------------------------------- /pyrestful/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancavil/tornado-rest/HEAD/pyrestful/types.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancavil/tornado-rest/HEAD/setup.py -------------------------------------------------------------------------------- /test/README.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancavil/tornado-rest/HEAD/test/README.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/tests_sugar_syntax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancavil/tornado-rest/HEAD/test/tests_sugar_syntax.py --------------------------------------------------------------------------------