I'm trying to search for text string, say "can be", in document which is located on 'https://developer.apple.com/library/ios/documentation/ides/conceptual/AppDistributionGuide/AppDistributionGuide.pdf'
For this purpose I'm using PDFQuery. Initially I downloaded the pdf on my machine and did my code. It is working perfect. But when I tried to input the server url in file location it is showing me error. I know the PDFQuery library is developed to work on local machines.
Is there any way that I can figure out something and fix my problem. This is part of my course project and the pdf search module that I am supposed to develop is to be deployed on IBM Bluemix and run it from there. Only this part is pending in my project. Any help is appreciated.
Thank you in advance.
Break the problem into two bits.
i) download the file. ii) process the file.
Here's some help with step i) How do I download a file over HTTP using Python?