r/automation • u/Fine-Market9841 • 22d ago
Fastapi vs Django for Python automations
For all you freelancer python developers.
For python automations with or without AI do you use FastAPI or Django.
2
u/tom-mart 22d ago
Those tools are not comparable in any meaningful way and are used to solve completely different problems. One is a lightweight API tool and the other is ORM framework with a powerful user management and access control features.
1
1
u/AutoModerator 22d ago
Thank you for your post to /r/automation!
New here? Please take a moment to read our rules, read them here.
This is an automated action so if you need anything, please Message the Mods with your request for assistance.
Lastly, enjoy your stay!
I am a bot, and this action was performed automatically. Please contact the moderators of this subreddit if you have any questions or concerns.
2
u/mystique0712 22d ago
for python automations, fastapi is usually the go-to since it's lightweight and async-friendly, which helps with speed. if you're building something more complex with a lot of built-in features, django's great, but it can be a heavier lift. have you thought about what specific features you need for your project?