This test is for a simple Django CRUD views to add, edit and display tour leaders.
UI mockup is in crud-test.html.
Just implement as much functionality as you can in a time-box of 2 hours focusing fist on quality rather than quantity.
This test is for a simple Django CRUD views to add, edit and display tour leaders.
UI mockup is in crud-test.html.
Just implement as much functionality as you can in a time-box of 2 hours focusing fist on quality rather than quantity.
| # -*- coding: utf-8 -*- | |
| """Simple echo server for educational purposes. | |
| Based directly on python interface to Linux epoll mechanism. | |
| Uses greenlets. | |
| """ | |
| import socket | |
| import select | |
| import errno | |
| from greenlet import greenlet |