Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Can not download the PDF
#12
Quote:The content is exact the same as in the login page:
http://technical.traders.com/sub/sublogin2.asp
You have changed my code,EMAIL is wrong it's called name in log in form.
# Fill in your details
payload = {
'EMAIL': '[email protected]',
'LASTNAME': 'MyLastname'
}
Change to:
payload = {
'name': '[email protected]',
'LASTNAME': 'MyLastname'
}
 
(Aug-31-2017, 02:06 PM)thomas2004ch Wrote: Besides I want to know if my code for download as below correct?
Yes,an open sample pdf test.
import requests

file_name = 'pdf_sample.pdf'
file_url = 'http://che.org.il/wp-content/uploads/2016/12/pdf-sample.pdf'
url_get = requests.get(file_url)
with open(file_name, "wb") as pdf:
    pdf.write(url_get.content)
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