All Questions
3 questions
6
votes
3
answers
2k
views
Best design practice when one python method passes most of its arguments to another method
My code has 2 python methods defined, m1 and m2. m1 receives 6 arguments - p1,p2,p3...p6. It uses p1 in its own code, but passes p2-p6 to m2. Is there a recommended programming style here to prevent ...
1
vote
3
answers
4k
views
Handle backward compatibility on API changes
I have an API which allows me to communication with a device.
The communication protocol is stored in a JSON file. It list the events that the device can raise, the functions, the frames format, etc.
...
1
vote
3
answers
3k
views
How my website should use its own API?
Im building small web-service which will provide my users with data through API.
Also, some data will be available right on my website.
The question is about how to use my own API? Should my website ...