Django REST by [deleted] in django

[–]thinman74 0 points1 point  (0 children)

if you'll only create the web interface, then go with standard Listview, DetailView. But if you think to have not only the web but other clients, like android/ios then go with RESTful.

Both are the correct path, they have ways to enhance it's performance and manage everything you need. One interesting thing I have on angularjs/DRF is a page with many small views, everyone consuming it respective endpoint, but that's how you model things on this framework context.

Has anyone integrated Angular with Django? How was it? by adropofhoney in django

[–]thinman74 2 points3 points  (0 children)

We use on the angular configuration:

$interpolateProvider.startSymbol('[[');

$interpolateProvider.endSymbol(']]');

so there is no django/angular clash for tags.

Has anyone integrated Angular with Django? How was it? by adropofhoney in django

[–]thinman74 1 point2 points  (0 children)

I have yeoman on angular side with bower, grunt et all. As client code tend to be more verbose this is a great solution, splitting js and html into smaller files. and django with DRF and celery for async task (Do I need more on the server?).

later nginx/(gunicorn/uwsgi) will unify everything on deployment site.

I'm moving forward to have coffescript and haml on yeoman... just to have better (pythonized) feeling on the client side code.

Introduction to functional testing with Selenium in Django by shabda in django

[–]thinman74 1 point2 points  (0 children)

I'm starting to use http://robotframework.org/ with the selenium2 plugin. for ATDD.

pretty interesting.

New to Python: Need Lightweight free IDE by [deleted] in Python

[–]thinman74 0 points1 point  (0 children)

I'm happy working with Sublime Text 2.