python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Why printing is into two lines?
one question about my code below:
#Python code to scrape the shipment URLs
from bs4 import BeautifulSoup
import urllib.request
import urllib.error
import urllib
# read urls of websites from text fil...
Silvia Wu
Votes: 0
Answers: 3
Python Download - file corrupted?
Hi so im building a script which downloads a .exe file via urllib. Sadly,the downloaded file, when executed, shows an error prompt by windows, the file would be damaged or corrupted and cannot be exec...
janamyers220
Votes: 0
Answers: 1
urllib request returning 403 error. How to rectify?
url_csv = "example_url"
local_path_csv = "./example.csv"
_ = urllib.request.urlretrieve(url_csv, local_path_csv)
Example of output:
HTTPError: HTTP Error 403: This request is not ...

boswell percy
Votes: 0
Answers: 1
How to retrieve a image url from a list of dictionaries and display it
I have a list of dictionaries containing data on products. Each product has one image url. The data looks very much like below. I wrote the code below and it works as intended but I'm pretty sure this...
elideli
Votes: 0
Answers: 1