在我的Python脚本中,我有一个来自API调用的以下bash提示符:
URL: http://urlhere.com/aBcDeFg (URL always different)
Input: << (able to enter input here)
网址包含正确完成输入所需的信息。
由于Python脚本被中断,我希望能够通过生成子进程来处理URL。子进程将打开URL,获取所需的数据,然后能够以编程方式输入来自已处理URL的数据。
代码:
setup.retrieve_url() // this will generate the URL prompt
print "hello" // never reached until prompt is fulfilled.
关于如何做到这一点的任何指示将不胜感激。