All Questions
2 questions
2
votes
2
answers
74
views
Relating to design and runtime - is it better to parallelize smaller sub-tasks or bundled tasks?
I'm programming a small web scraper in python which I want to speed up by parallelizing things. The scraper is crawling URLs whereby a single URL can represent an 'item' or an 'index'. An index in ...
2
votes
3
answers
2k
views
Multiple users using the same script for their websites
I'm working on a project, I have a question regarding the architecture:
Say I have a many python scripts on my server and there's main.py
which contains all the classes. And there's a script called
...