To be brief, I’ve basically found that executing certain strings in the address bar in my browser causes good things to happen for me.
For instance: http://myip:myport/?CreateOrder=Create+New+Order creates a new order in my database.
I’ve used python to set the variables I want passed into that string, but don’t know the correct vocab to be able to figure exactly how to get python to execute that string as if it were a browser.
Sorry for being ignorant. I’d appreciate any help
While I am not sure that I entirely understand the context of your question you can make URL requests in python using the urllib2 module, specifically look at the
urlopenfunction.Here is an example of how you could make the request you showed: