Re: REST Framework alternatives

2019-02-07 Thread Ing.Daniel Bojorge
Hi everyone. Tastypie is a good alternative, but it is too old, just look this date in it's website (http://tastypieapi.org/) [image: imagen.png] and the requirements (https://django-tastypie.readthedocs.io/en/latest/) [image: imagen.png] I want to know, what kind of validation do you want to

Re: REST Framework alternatives

2019-02-07 Thread Derek
I can't speak to the inflexible, but there are a ton of tutorials out there for DRF, and I was able to make a lot of progress in just one weekend. I would think that JSON validation is an orthogonal problem; you can look at using something like https://pypi.org/project/jsonschema/ for this. On

Re: REST Framework alternatives

2019-02-05 Thread Jani Tiainen
Well we're all entitled to our opinions. DRF is complex but it's not inflexible. You can do pretty much everything which is REST related. There are few alternatives, tastypie is mentioned but there exists also django-nap which is a bit more lightweight than DRF. On Tue, Feb 5, 2019 at 6:52 PM Vi

Re: REST Framework alternatives

2019-02-05 Thread Sam Taiwo
What validation does he specifically need? He could probably get away with writing a few helper functions himself! On Tue, Feb 5, 2019, 17:50 Miguel Ángel Cumpa Ascuña < miguel.cumpa.asc...@gmail.com wrote: > Django tastypie > good luck! > https://django-tastypie.readthedocs.io/en/latest/toc.html

Re: REST Framework alternatives

2019-02-05 Thread Miguel Ángel Cumpa Ascuña
Django tastypie good luck! https://django-tastypie.readthedocs.io/en/latest/toc.html El mar., 5 feb. 2019 a las 11:52, Victor Porton () escribió: > My buddy says that REST Framework is complex and inflexible. > > So the question: Any other framework which supports validating JSON data? > > -- > Y