All Questions
3 questions
2
votes
1
answer
180
views
Object attributes as special parameter objects in python
I am writing a library that can be used with some GUI and would like to be able to build an interface where user can see and/or change most of the object's parameters, and also write some of these ...
2
votes
1
answer
135
views
Traversing over two similar object structures using a pattern
Let's say I have an Object Structure like this that I import data into from a source:
Reporting:
Body:
ReportingEntity:
DocSpec
Reports[]:
ConstEntities[]
DocSpec
...
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 ...