Re: Alternatives to Django REST Framework

2015-04-09 Thread François Schiettecatte
If you do go the Flask route,  you might want to check this:

https://github.com/humiaozuzu/awesome-flask

Just came with the lastest ImportPython Newsletter 
(http://importpython.com/newsletter/no/27/)

François

> On Apr 9, 2015, at 9:45 AM, Vijay Khemlani  wrote:
> 
> If you don't need the advanced features of Django or REST framework it's easy 
> to ignore them, it's not like they require tons of resources or configuration 
> files to work.
> 
> On Thu, Apr 9, 2015 at 10:24 AM, graeme  wrote:
> If you do not need Django at all, Flask or Bottle.
> 
> If you are going to use Django anyway, just use a Django view that return 
> JSON, XML or whatever you want.
> 
> On Thursday, April 9, 2015 at 6:25:21 PM UTC+5:30, amit.p...@gmail.com wrote:
> Hi,
> 
> while Django REST Framework seems wonderful to me, it is a heayweight option 
> for a little project of mine. I wonder if there are simpler alternatives for 
> publishing a simple API?
> 
> TIA,
> AP.
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/django-users.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/django-users/a3885622-d4f2-41c2-b9f4-3d261c0ac7b3%40googlegroups.com.
> 
> For more options, visit https://groups.google.com/d/optout.
> 
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/django-users.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/django-users/CALn3ei0oasfjrvvO2ZtR9krUE-%2B8D%2B6gbcgrQrddnJboYD55zQ%40mail.gmail.com.
> For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/B787D7F7-361F-4B90-99F6-AAAC33C98BCE%40gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Alternatives to Django REST Framework

2015-04-09 Thread Vijay Khemlani
If you don't need the advanced features of Django or REST framework it's
easy to ignore them, it's not like they require tons of resources or
configuration files to work.

On Thu, Apr 9, 2015 at 10:24 AM, graeme  wrote:

> If you do not need Django at all, Flask or Bottle.
>
> If you are going to use Django anyway, just use a Django view that return
> JSON, XML or whatever you want.
>
> On Thursday, April 9, 2015 at 6:25:21 PM UTC+5:30, amit.p...@gmail.com
> wrote:
>>
>> Hi,
>>
>> while Django REST Framework seems wonderful to me, it is a heayweight
>> option for a little project of mine. I wonder if there are simpler
>> alternatives for publishing a simple API?
>>
>> TIA,
>> AP.
>>
>  --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/a3885622-d4f2-41c2-b9f4-3d261c0ac7b3%40googlegroups.com
> 
> .
>
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CALn3ei0oasfjrvvO2ZtR9krUE-%2B8D%2B6gbcgrQrddnJboYD55zQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Alternatives to Django REST Framework

2015-04-09 Thread graeme
If you do not need Django at all, Flask or Bottle.

If you are going to use Django anyway, just use a Django view that return 
JSON, XML or whatever you want.

On Thursday, April 9, 2015 at 6:25:21 PM UTC+5:30, amit.p...@gmail.com 
wrote:
>
> Hi,
>
> while Django REST Framework seems wonderful to me, it is a heayweight 
> option for a little project of mine. I wonder if there are simpler 
> alternatives for publishing a simple API?
>
> TIA,
> AP.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/a3885622-d4f2-41c2-b9f4-3d261c0ac7b3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Alternatives to Django REST Framework

2015-04-09 Thread Lucas Klassmann
Hi,

You can search for "restless", it is a small library, very simple and with
basics features, but you can understand the mechanisms from behind and the
behavior of a "REST" framework.

Or you can try make something own, in the internet has some tutorials that
explain how to make.

I did make my own REST api with CBV (Class Based Views) and django
authentication.

Cheers.

On Thu, Apr 9, 2015 at 9:54 AM, Amit Prahesh  wrote:

> Hi,
>
> while Django REST Framework seems wonderful to me, it is a heayweight
> option for a little project of mine. I wonder if there are simpler
> alternatives for publishing a simple API?
>
> TIA,
> AP.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAEH4rCRLGSjfi1G1ToKSPwcAUmsa38vyxp5s%3DnzDgbNqAg4Z1w%40mail.gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>



-- 
Lucas Klassmann
Desenvolvedor de Software

Email: lucasklassm...@gmail.com
Web site: http://www.lucasklassmann.com

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAOz50pJk%3DRoSUmm7EB7YG0SPb79XKMyRGM_Y%2BnbH2bwsyFu9mA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Alternatives to Django REST Framework

2015-04-09 Thread François Schiettecatte
You could try Flask, I have used it in the past when I did not need all the 
infrastructure that Django provides:

http://flask.pocoo.org

François

> On Apr 9, 2015, at 8:54 AM, Amit Prahesh  wrote:
> 
> Hi,
> 
> while Django REST Framework seems wonderful to me, it is a heayweight option 
> for a little project of mine. I wonder if there are simpler alternatives for 
> publishing a simple API?
> 
> TIA,
> AP.
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/django-users.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/django-users/CAEH4rCRLGSjfi1G1ToKSPwcAUmsa38vyxp5s%3DnzDgbNqAg4Z1w%40mail.gmail.com.
> For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/07A3E0E7-3C73-407B-9319-D18D1113C6CB%40gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Alternatives to Django REST Framework

2015-04-09 Thread Andrew Farrell
Someone I met at the Austin python user group told me they'd built their
company's backend using Falcon  and were very
happy with it.

On Thu, Apr 9, 2015 at 7:54 AM, Amit Prahesh  wrote:

> Hi,
>
> while Django REST Framework seems wonderful to me, it is a heayweight
> option for a little project of mine. I wonder if there are simpler
> alternatives for publishing a simple API?
>
> TIA,
> AP.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAEH4rCRLGSjfi1G1ToKSPwcAUmsa38vyxp5s%3DnzDgbNqAg4Z1w%40mail.gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CA%2By5TLYf1VJ3DRayd8Tx%3Dh5zomDmJhq4h6xxW6zmpLztKZRt2w%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Alternatives to Django REST Framework

2015-04-09 Thread Jorge Andrés Vergara Ebratt
I love DRF, but if you want to check something else, there is also Tastypie!

Here you can find the docs:
https://django-tastypie.readthedocs.org/en/latest/



On Thu, Apr 9, 2015 at 7:54 AM Amit Prahesh  wrote:

> Hi,
>
> while Django REST Framework seems wonderful to me, it is a heayweight
> option for a little project of mine. I wonder if there are simpler
> alternatives for publishing a simple API?
>
> TIA,
> AP.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAEH4rCRLGSjfi1G1ToKSPwcAUmsa38vyxp5s%3DnzDgbNqAg4Z1w%40mail.gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAAeX05H7McZ0z2s8ve1KZ3bikZq188URfitn9BEHCi19mvhH8g%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Alternatives to Django REST Framework

2015-04-09 Thread Amit Prahesh
Hi,

while Django REST Framework seems wonderful to me, it is a heayweight
option for a little project of mine. I wonder if there are simpler
alternatives for publishing a simple API?

TIA,
AP.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAEH4rCRLGSjfi1G1ToKSPwcAUmsa38vyxp5s%3DnzDgbNqAg4Z1w%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.