HTTPConnectionPool(host='127.0.0.1', port=5000):
It looks like this is an attempt to connect to a server on the phone, probably not what you intended. ;)
Internet accesses on Android must be off the UI (main) thread, this is generally good practice on any OS.
If each access gets its own thread and order is important then initiate each access from the callback of the previous access.
However it is more efficient to let each access have an ID, and assemble the result in what ever order the IDs arrive.