django-icetea is a package built on top of Django and provides the necessary abstractions for creating REST APIs.
It has been influenced by the architecture of django-piston and piston-perfect.
I have decided to build django-icetea, in order to have an API framework with tight foundations, consistent and intuitive behaviour, *readable code*, and of course, easy to use.
Installation
django-icetea is registered in PyPI, so installing it is as easy as listing it under your project's dependencies, and pulling it on build time.
If you use ``zc.buildout``, you only need to do the following:
> In your Django project's ``setup.py``, add ``django-icetea`` in section
> ``install_requires``:
``` python
setup(
...
...
install_requires=(
...
...
"django-icetea",
)
...
)
```
Running the buildout should take care of everything.
Product's homepage
Requirements:
· Python
· Django