README.txt 733 B

12345678910111213141516
  1. This directory contains templates and template processing code for generating
  2. HTTP bindings for the RESTful API's.
  3. The RESTful API's are declared using [Swagger][swagger]. While Swagger provides
  4. a [code generating toolkit][swagger-codegen], it requires Java to run, which
  5. would be an unusual dependency to require for Asterisk developers.
  6. This code generator is similar, but written in Python. Templates are processed
  7. by using [pystache][pystache], which is a fairly simply Python implementation of
  8. [mustache][mustache].
  9. [swagger]: https://github.com/wordnik/swagger-core/wiki
  10. [swagger-codegen]: https://github.com/wordnik/swagger-codegen
  11. [pystache]: https://github.com/defunkt/pystache
  12. [mustache]: http://mustache.github.io/