←back to thread

310 points brylie | 8 comments | | HN request time: 0.412s | source | bottom
Show context
miiiiiike ◴[] No.43513898[source]
Related, "Django's REST (Framework) Problem" — https://news.ycombinator.com/item?id=43510495

I'm not sure that many people who rely on Django Rest Framework are aware that last month the bug tracker was made private and the project is looking for new maintainers.

I love Django but the project needs to go through something similar to Angular's renaissance (and Angular needs to learn from Django docs.) I'd love to help but it seems that most of the efforts to address the issue have been stalled in committee.

A fork probably isn't the answer but something needs to be done. If it's a money issue, pass the plate! Whenever I talk to Django devs about contributing the feeling that I'm left with is that I could put in years of work, jump through every hoop, and at the end of it they may still say "We're not sure."

The feeling that I've gotten is that the Django dev community is very small and tight-knit. Whenever I've talked about helping out on various projects I've walked away with the feeling that their friend is handling it and they'd rather leave them to it. The community has been trained, through years of reinforcement, to wait instead of getting involved.

replies(2): >>43514543 #>>43517059 #
1. simonw ◴[] No.43514543[source]
Jacob Kaplan-Moss gave a great talk at the last DjangoCon about money - what Django would do with an increased budget and how to get there: https://jacobian.org/2024/oct/8/dsf-one-million/

Video: https://www.youtube.com/watch?v=5nS1SSuHk9I

replies(2): >>43515149 #>>43515735 #
2. miiiiiike ◴[] No.43515149[source]
I saw the talk last year. Let's do it.

If I had $100,000 to spare I would give it to Django as an unrestricted donation. It would be worth every penny. But I'm a solo-dev and don't have that kind of cash on me.

Here's what I can do. I will send you $1,000 today if you can get something like a `django.contrib.rest` package (i.e. official rest api support) on the roadmap and secure matching funds. I'll make it a recurring donation if development gets going.

I don't want to support other REST libraries because there's no consensus. One app ships DRF views, another Ninja, and that one over there still has a Tastypie dep. Remember Piston? Using multiple rest packages means that figuring out how to create a consistent error format, etc is an exercise left to the reader.

Django makes great design decisions that the majority of devs can get behind. I'd love to have an officially supported REST package that feels like the rest of Django.

`django-tasks` is a good recent example. I was reading through the code a few months ago and I was impressed.

replies(1): >>43515381 #
3. miiiiiike ◴[] No.43515381[source]
Another project I'd fund: Making Django an async-first (not async-only) framework over the next decade. It's easier to mix sync code into async than the other way around.
replies(2): >>43517820 #>>43522648 #
4. miiiiiike ◴[] No.43515735[source]
I just setup a $83/month ~$1,000/year recurring donation.

https://www.djangoproject.com/fundraising/ if anyone else depends on Django.

replies(1): >>43517017 #
5. jimmydoe ◴[] No.43517017[source]
thanks for sharing this, just donated too.

I read thru Plain's doc, it is not bad at all, but I really hope Django can be much better than it is now.

6. zzzeek ◴[] No.43517820{3}[source]
So glad that's not actually true so I didn't have to rewrite sqlalchemy from scratch
replies(1): >>43518360 #
7. miiiiiike ◴[] No.43518360{4}[source]
It's more straightforward to call a sync function from an async function than the other way around. That's a pretty uncontroversial statement. Adding async support to a library doesn't mean starting starting over.

I'm not fully understanding your thought. Can you say more?

8. JodieBenitez ◴[] No.43522648{3}[source]
If one can make it without breaking the API too much, why not.

The #1 reason I use Django is stability. I have projects that span 4 major Django version without any significant break. That's quite a feature.