Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Can not download the PDF
#31
This help! The login page is coming out.

I replace the 'Foo' with my email address and 'Bar' with my lastname. It is logged in!

And here is what I got:
C:\ProgramData\Anaconda3>python.exe log_test.py
Welcome to the Technical Analysis of STOCKS & COMMODITIES Subscribers’ Area


Now I concat the code for downloading. But the PDF cannot be downloaded correctly as before. Here is my whole code:

"""
Spyder Editor

This is a temporary script file.
"""
from selenium import webdriver
from bs4 import BeautifulSoup
import time
import urllib.request
 
caps = webdriver.DesiredCapabilities().FIREFOX
caps["marionette"] = True
browser = webdriver.Firefox(capabilities=caps)
web_url = 'http://technical.traders.com/sub/sublogin2.asp'
browser.get(web_url)

user_name = browser.find_element_by_css_selector('#SubID > input[type="text"]')
user_name.send_keys("[email protected]")
password = browser.find_element_by_css_selector('#SubName > input[type="text"]')
password.send_keys("MyLastname")
time.sleep(2)
submit = browser.find_element_by_css_selector('#SubButton > input[type="submit"]')
submit.click()
time.sleep(2)
 
# Give source code to BeautifulSoup
soup = BeautifulSoup(browser.page_source, 'lxml')
log_in = soup.find('h2')
print(log_in.text)

time.sleep(2)

def download_file(download_url, fileName):
    print(download_url)
    response = urllib.request.urlopen(download_url)
    file = open(fileName, 'wb')
    print(response)
    file.write(response.read())
    file.close()
    response.close()
    print("Completed")

urlstr = "http://technical.traders.com/archive/article.asp?file=\V26\C07\131INTR.pdf"

download_file(urlstr, "D:\\eBooks\\Stocks_andCommodities\\2008\\Jul\\mypdf.pdf")     

I think maybe we have to simulate the input of the PDF-Url and the clicking of download/save with Selenium?
Reply


Messages In This Thread
Can not download the PDF - by thomas2004ch - Aug-30-2017, 08:16 PM
RE: Can not download the PDF - by Larz60+ - Aug-30-2017, 08:44 PM
RE: Can not download the PDF - by thomas2004ch - Aug-31-2017, 04:29 AM
RE: Can not download the PDF - by snippsat - Aug-30-2017, 08:44 PM
RE: Can not download the PDF - by thomas2004ch - Aug-31-2017, 06:40 AM
RE: Can not download the PDF - by Larz60+ - Aug-31-2017, 07:10 AM
RE: Can not download the PDF - by snippsat - Aug-31-2017, 09:49 AM
RE: Can not download the PDF - by thomas2004ch - Aug-31-2017, 12:12 PM
RE: Can not download the PDF - by Larz60+ - Aug-31-2017, 12:19 PM
RE: Can not download the PDF - by snippsat - Aug-31-2017, 01:25 PM
RE: Can not download the PDF - by thomas2004ch - Aug-31-2017, 02:06 PM
RE: Can not download the PDF - by snippsat - Aug-31-2017, 02:40 PM
RE: Can not download the PDF - by thomas2004ch - Aug-31-2017, 04:46 PM
RE: Can not download the PDF - by nilamo - Aug-31-2017, 05:19 PM
RE: Can not download the PDF - by thomas2004ch - Aug-31-2017, 06:06 PM
RE: Can not download the PDF - by nilamo - Aug-31-2017, 06:21 PM
RE: Can not download the PDF - by thomas2004ch - Aug-31-2017, 07:06 PM
RE: Can not download the PDF - by snippsat - Aug-31-2017, 07:46 PM
RE: Can not download the PDF - by thomas2004ch - Sep-01-2017, 04:09 AM
RE: Can not download the PDF - by snippsat - Sep-01-2017, 12:05 PM
RE: Can not download the PDF - by thomas2004ch - Sep-01-2017, 03:16 PM
RE: Can not download the PDF - by snippsat - Sep-01-2017, 04:13 PM
RE: Can not download the PDF - by thomas2004ch - Sep-01-2017, 04:54 PM
RE: Can not download the PDF - by snippsat - Sep-01-2017, 05:09 PM
RE: Can not download the PDF - by thomas2004ch - Sep-01-2017, 06:02 PM
RE: Can not download the PDF - by snippsat - Sep-01-2017, 06:24 PM
RE: Can not download the PDF - by thomas2004ch - Sep-01-2017, 06:34 PM
RE: Can not download the PDF - by snippsat - Sep-01-2017, 07:22 PM
RE: Can not download the PDF - by thomas2004ch - Sep-01-2017, 07:58 PM
RE: Can not download the PDF - by snippsat - Sep-01-2017, 09:03 PM
RE: Can not download the PDF - by thomas2004ch - Sep-02-2017, 04:49 AM
RE: Can not download the PDF - by snippsat - Sep-02-2017, 08:25 AM
RE: Can not download the PDF - by thomas2004ch - Sep-02-2017, 11:06 AM
RE: Can not download the PDF - by snippsat - Sep-02-2017, 12:07 PM
RE: Can not download the PDF - by thomas2004ch - Sep-03-2017, 04:17 AM

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020