Re: Django REST

2012-03-04 Thread Daniel Hilton
On 4 March 2012 18:35, Jani Tiainen wrote: > I've been very happy with django-rest-framework. > > I think there exists at least django-piston to do the same. The other one to look at is django-tastypie - I've used it twice now in anger and been really happy with it plus the

Re: Django REST

2012-03-04 Thread Jani Tiainen
I've been very happy with django-rest-framework. I think there exists at least django-piston to do the same. And you can write it also "manually". Since REST is just architectural specification and doesn't involve any special magic. On Sun, Mar 4, 2012 at 8:13 PM, Bhar

Django REST

2012-03-04 Thread Bharath Mundlapudi
Dear Django Users and Authors, I am wondering if there are any best practices or better way to write REST based apps on top of Django. I was using version 1.1 and not followed recent advancements. Can you kindly point me to links or references from your experience. Preferably out-of-the-box solut

Announce: Django REST framework

2011-02-22 Thread tom christie
Hey all, I'm superpleased to announce the release of Django REST framework 0.1. http://django-rest-framework.org/ The project is another mini-framework aimed at making it easy to build well-connected, self-describing RESTful web APIs, in the same vein as django-piston and django-tas

Re: Django REST and FILEFIELD field

2010-03-01 Thread manu.polline
directly > into the FileField just like you would for a normal form > > Malcolm > > On Thu, Feb 25, 2010 at 7:03 PM, manu.polline wrote: > > > Hi everyone, > > anyone help me?? > > > On 22 Feb, 19:19, "manu.polline" wrote: > > &g

Re: Django REST and FILEFIELD field

2010-03-01 Thread Malcolm Box
03 PM, manu.polline wrote: > Hi everyone, > anyone help me?? > > On 22 Feb, 19:19, "manu.polline" wrote: > > Hi everyone, > > my name is Manuel. I'm tryng to upload a file directly in a filefield > > of Django model exposed by django-rest-interface. > > I

Re: Django REST and FILEFIELD field

2010-02-25 Thread manu.polline
Hi everyone, anyone help me?? On 22 Feb, 19:19, "manu.polline" wrote: > Hi everyone, > my name is Manuel. I'm tryng to upload a file directly in a filefield > of Django model exposed by django-rest-interface. > It'is possible? > this is my model : >

Django REST and FILEFIELD field

2010-02-22 Thread manu.polline
Hi everyone, my name is Manuel. I'm tryng to upload a file directly in a filefield of Django model exposed by django-rest-interface. It'is possible? this is my model : class File(models.Model): file = models.FileField(upload_to='files', help_text=_(&quo

Re: Django-rest-interface - querying data

2009-07-03 Thread Matt
03 am, Matt wrote: > > > > > Hi all, > > > I've started to use the django-rest-interface to build an API for a > > service that I'm working on. Principally all that's required is for a > > client to be able to create and update objects remotely via POST and &

Re: Django-rest-interface - querying data

2009-07-02 Thread Rajesh D
On Jul 2, 11:03 am, Matt wrote: > Hi all, > > I've started to use the django-rest-interface to build an API for a > service that I'm working on. Principally all that's required is for a > client to be able to create and update objects remotely via POST and > P

Django-rest-interface - querying data

2009-07-02 Thread Matt
Hi all, I've started to use the django-rest-interface to build an API for a service that I'm working on. Principally all that's required is for a client to be able to create and update objects remotely via POST and PUT, but as this is the first REST interface I've built I

Re: django + rest

2009-01-02 Thread Malcolm Tredinnick
On Mon, 2008-12-29 at 18:06 -0800, Ed Summers wrote: > (my apologies if you already saw this question on django-developers, > I'm reposting here because it's more a users question) > > I was wondering if anyone else on the list has layered a RESTful > service into their django applications. I'm a

django + rest

2008-12-29 Thread Ed Summers
(my apologies if you already saw this question on django-developers, I'm reposting here because it's more a users question) I was wondering if anyone else on the list has layered a RESTful service into their django applications. I'm adding an atompub interface to an existing django project, and I

Re: django REST: update tables

2007-12-12 Thread Malcolm Tredinnick
On Tue, 2007-12-11 at 15:18 -0800, crybaby wrote: > I have a view which allows users to upload pictures and add tags, > description to them. I have to update two tables: post and img > > If I want to do this by REST, how do you do this? Is REST only suited > for manipulating one resource(one t

django REST: update tables

2007-12-11 Thread crybaby
I have a view which allows users to upload pictures and add tags, description to them. I have to update two tables: post and img If I want to do this by REST, how do you do this? Is REST only suited for manipulating one resource(one table) at a time? --~--~-~--~~~---

<    1   2   3   4   5