architecture

Is Django for the frontend or backend?

Is Django for the frontend or backend? Question: I often see people claiming their backend is implemented in Django, but isn’t Django supposed to be for the frontend? I’d assume the backend refers to the business logic where the frontend refers to the presentation. Am I missing something? Asked By: Kar || Source Answers: (a) …

Total answers: 3

Passing data from Django to C++ application and back

Passing data from Django to C++ application and back Question: We are creating a trading application, where the backend is totally in C++ (using QuickFix engine). We would like to build a web application in Django on top of this backend, where the user can place his orders. Both the Django (python) and the C++ …

Total answers: 5

Why is IoC / DI not common in Python?

Why is IoC / DI not common in Python? Question: In Java IoC / DI is a very common practice which is extensively used in web applications, nearly all available frameworks and Java EE. On the other hand, there are also lots of big Python web applications, but beside of Zope (which I’ve heard should …

Total answers: 18

Building a minimal plugin architecture in Python

Building a minimal plugin architecture in Python Question: I have an application, written in Python, which is used by a fairly technical audience (scientists). I’m looking for a good way to make the application extensible by the users, i.e. a scripting/plugin architecture. I am looking for something extremely lightweight. Most scripts, or plugins, are not …

Total answers: 18