├── .gitignore ├── LICENSE ├── README.md ├── client.gs ├── requirements.txt ├── sample_conf.yaml └── server.py /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | conf.yaml 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinburch/table-service/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinburch/table-service/HEAD/README.md -------------------------------------------------------------------------------- /client.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinburch/table-service/HEAD/client.gs -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | PyYAML>=3.10 2 | boto>=2.2.2 3 | -------------------------------------------------------------------------------- /sample_conf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinburch/table-service/HEAD/sample_conf.yaml -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinburch/table-service/HEAD/server.py --------------------------------------------------------------------------------