All Questions
4 questions
1
vote
3
answers
1k
views
Should I unit test functions internally used by API I expose?
I'm writing a CRUD app in Python that exposes web API. At first I wrote functions for communicating with DB and wrote tests for these functions.
def crud():
# do something with db
def test_crud():
...
1
vote
2
answers
2k
views
How should I handle error codes from an external XML API?
Problem
I have a Python library which sends XML requests to an external API. If an issue occurs, the API responds with an error containing an error code and description with error details.
These ...
2
votes
1
answer
420
views
Should I separate a web api from the webserver?
Lets say I'm building a site similar to this or Quora (or some arbitrary blog-like site). I need a real-time component that will be using web-sockets/long-polling to notify the user of new posts, ...
1
vote
2
answers
132
views
Is there a way to efficiently allow a user to upload multiple content at once for e-commerce type sites?
Sellers on large sites like Amazon and Newegg need to provide names, descriptions, and images for their products to be displayed on the e-commerce sites.
These sellers could have 10000+ products to ...