@OP: What is your long term vision for the project? Reason I ask is due to how django keeps (IMO) gaining territory on the corporate and/or business stack. I get requests for support and new development consistently from companies in different markets/regions.
Broadly, we aiming for it to be a mature, sustainable and well-supported general purpose Web API framework. We tend to be fairly aggressive about keeping the scope manageable in order to keep to that. For example 3.1 moves some functionality out into third party packages, so that we can concentrate on the quality of the core framework. Some of the longer term feature work: * Admin style interface - See https://www.ki…
Django REST framework 3.1 released
11–20 of 46 posts
Re: Django REST framework 3.1 released
#12What are the plans (if any) for continued development on Flask-API?
Re: Django REST framework 3.1 released
#13Just wanted to say that this is one of the most beautifully-documented projects I've ever used. Bravo!
Agreed, although I wish there was more documentation on the benefits of each feature, rather than just how to implement it. E.g. there are dozens of pages on how to implement serializers, which is great, but the section on the benefits of serializers is only a paragraph or two long. So after reading all the documentation I'm still unclear as to the best practices on when vs when not to use them, and what the best pra…
Please do feel free to follow this up by raising an issue on the repository - it'd be good to talk through some specifics about areas to improve.
Re: Django REST framework 3.1 released
#14Super useful tool, thanks to Tom and everybody who contributes. When we began moving some of our APIs from Django to Flask at my company, djangorestframework was the single tool/package that I missed most. It's lovely. What are the plans (if any) for continued development on Flask-API?
It'd be interesting to get your opinion on what your take would be on using Django/Django REST framework if it had decent built-in support for use with SQLAlchemy.
Re: Django REST framework 3.1 released
#15Super useful tool, thanks to Tom and everybody who contributes. When we began moving some of our APIs from Django to Flask at my company, djangorestframework was the single tool/package that I missed most. It's lovely. What are the plans (if any) for continued development on Flask-API?
There are a hodge-podge of plugins to do various things, but they don't necessarily share the same design principles or work well together. Some are so abstracted that by the time you've got a concrete implementation you could have just rolled your own.
EDIT: Grammar, added a sentence.
Re: Django REST framework 3.1 released
#16Super useful tool, thanks to Tom and everybody who contributes. When we began moving some of our APIs from Django to Flask at my company, djangorestframework was the single tool/package that I missed most. It's lovely. What are the plans (if any) for continued development on Flask-API?
Re: Django REST framework 3.1 released
#17@OP: What is your long term vision for the project? Reason I ask is due to how django keeps (IMO) gaining territory on the corporate and/or business stack. I get requests for support and new development consistently from companies in different markets/regions.
Broadly, we aiming for it to be a mature, sustainable and well-supported general purpose Web API framework. We tend to be fairly aggressive about keeping the scope manageable in order to keep to that. For example 3.1 moves some functionality out into third party packages, so that we can concentrate on the quality of the core framework. Some of the longer term feature work: * Admin style interface - See https://www.ki…
Re: Django REST framework 3.1 released
#18Still no M2M for ModelSerializer..? Guess I'll have to just keep using a ton of shitty hacks.
Re: Django REST framework 3.1 released
#19Super useful tool, thanks to Tom and everybody who contributes. When we began moving some of our APIs from Django to Flask at my company, djangorestframework was the single tool/package that I missed most. It's lovely. What are the plans (if any) for continued development on Flask-API?
At the moment it's on hold - I certainly won't be doing anything with Flask until the Kickstarter work is all complete. I'm undecided after that. It'd be interesting to get your opinion on what your take would be on using Django/Django REST framework if it had decent built-in support for use with SQLAlchemy.
Said it before, and I'll say it again - DRF is one of the few things that makes me wish I was on Django.
Is the newer DRF code abstracted nicely to make a port to Flask easier?
It's something I actually looked at doing myself a year ago but there looked to be a lot of effort involved.
I often look at projects that are Django-this or Flask-that and think to myself - this could be a nice clean agnostic library with layers for which ever framework. Often by that stage it's too late, everything is too embedded.
In this case, I guess that DRF intrinsically deals with the framework specific layers a lot so it's probably necessarily tightly bound.
Re: Django REST framework 3.1 released
#20Super useful tool, thanks to Tom and everybody who contributes. When we began moving some of our APIs from Django to Flask at my company, djangorestframework was the single tool/package that I missed most. It's lovely. What are the plans (if any) for continued development on Flask-API?
I'm curious why the choice was made to switch to Flask?