All Questions
2 questions
0
votes
1
answer
61
views
Abstracting a set of services behind a common interface
Yay or nay? I have several related but separate services that are to be run in different processes. They execute a particular task unique to the service. Their call signature is similar, but the name ...
2
votes
1
answer
64
views
An approach to send the contents of a file on the server to the client in real-time
I have a relatively simple front in good ol' JQuery, that makes a POST Request to a Flask Python web server, that runs a Python script using the subprocess module. Here's the whole route for ...