All Questions
3 questions
0
votes
2
answers
712
views
User-friendly parameter parsing from yaml
Problem
I have designed an evaluation tool (in python) and need some help to make it more user friendly. The tool requires ~100 (nested) parameters, which it gets from a yaml file and stores ...
1
vote
1
answer
298
views
mongodb queries architecture - resolving lots of nested referenced objects
I have an angular 8 application, with a Python + MongoDB API on the backend.
At present, I have 4 collections, namely: Users, Tasks, Companies and Groups.
All of these resource types are retrievable ...
3
votes
3
answers
629
views
What are the advantages of dynamically binding a method to class instance? [closed]
I came across Instagram's API client written in Python.
In their class InstagramAPI, they bind the methods to a function in bind.py. When called, the function returns an instance of the class ...