urllib tag

12 questions


1 answers
99 views
0
I would like to know the redirected address when I accessed the Https address. - SSL: CERTIFICATE_VERIFY_FAILED Error

There are about 300 https addresses listed. It will be redirected to a different address as soon as I access it, so how can I get that address?In the case of http, it is said that the following can be...

1 years ago

1 answers
184 views
0
Python urlib.request.urlopen Timeout Error Why?

I tried to crawl the next news, but I got a timeout errorSo I typed the code one by one and looked for the error, and I got a timeout error in urlib.request.urlopen, but I don't know why it's showing ...


1 answers
129 views
0
Log in to Job Planet and ask for scraping ㅜㅜ

I need to get the annual salary for each position that I can check after logging in on the Job Planet site with the code below. I really can't//from bs4 import BeautifulSoupimport urllib, http.cookiej...


1 answers
122 views
0
I want to download the hwp file of Python HTTP 302

The first goal is to download the hwp file of comcat site.dl_name = '1'dl_path = http://www.comcbt.com/xe/?module=file&act=procFileDownload&file_srl=2651934&sid=57058e18dd8b3d3bcfe0907f7c7...

1 years ago

1 answers
76 views
0
Collect Python Scraping Destination Links

If you access URL1 of the code below, there is a page at the bottom.The last page of URL 1 is from 1 to 93 pagesI'd like to collect the links provided within the page.URL1: https://www.jobplanet.co.kr...


1 answers
121 views
0
Questions about Python 3 urlib login!

from urllib.parse import urlencodefrom urllib.request import Request,urlopenfrom urllib import *url = https://dshs.kr:44919/bbs/login.php #daeshin highlogin_form = {Member ID:_____,Password:____}login...

1 years ago

5 answers
111 views
0
Code that automatically downloads a CSV file with download links (URLs) recorded from Python

There is currently a CSV file with download links recorded as URLsI want to write a code that reads the URLs in the file and automatically downloads them in the folder.I don't know how to do it here, ...

1 years ago

2 answers
114 views
0
How to download a pdf file on a web server with python

The code I'm trying to make is to make a code by downloading the pdf files from Google Academic Information magazine through a download address on HTml. However, there were some problems during this d...

1 years ago

1 answers
109 views
0
I'd like to post with Python requests.

I'd like to access my homepage through Python requests.import requestsURL = 'http://cyphers.herokuapp.com'payload = { 'myName': 'Good Adult',}session = requests.session()r = requests.post(URL, data=pa...

1 years ago

1 answers
134 views
0
I have a question about Python json and urlib parsing. (Use League of Legends api)

import urllib.requestimport jsondef get_encryptedID(input_name): apikey = The value of the api key. encode_name = input_name.replace( , %20) urls = 'https://kr.api.riotgames.com/lol/summoner/v4/summon...

1 years ago
- 1 - »

© 2024 OneMinuteCode. All rights reserved.