Questions tagged [downloading-website-files]

59 questions
0
votes
1 answer

urllib.error.HTTPError: HTTP Error 404: Not Found when using request.urlopen()

I was following a tutorial and when using request.urlopen(url) I get an error, I have tried checking the…
lathrix
  • 115
  • 1
  • 6
0
votes
0 answers

Downloading PDF files from a remote website

How can I download all the PDF files present in a website? Here I don't want to use wget command as that makes it manual and a lot time taking.
0
votes
1 answer

Problem with files downloaded by using python

I am trying to download some jpgs from the site and save them on my hard drive, but when I do that I can't open files due to it's problem with formatting, all of these files have also 115kb for some reason. I've tried changing the chunk size and…
Ensien
  • 3
  • 4
0
votes
1 answer

Problems with downloading a file with EXCEL vba

I'm writing a android app and I need a fairly big databas for it. I'm using Excel and vba to construct this databas. I've been googling quite a bit and in order to download a webpage (to extract data to my databas) and I've come up with the below…
Tomas F.
  • 318
  • 3
  • 14
0
votes
1 answer

Capturing API automatic download file with python

I am trying to use the api at this url https://freeapi.robtex.com/pdns/reverse/(ip_address_here) I am new to coding so if im just completely using the wrong packages bear with me... When entering the URL with the ip address appended to the end it…
Zach_P
  • 15
  • 1
  • 4
0
votes
1 answer

download by wget without specific folder site

how download site for viewing offline without specific folder for example i want download the site without http://site.com/forum/ sub-directory
Microname
  • 1
  • 1
0
votes
1 answer

Downloading images in python with a directory in the link?

I have an image on a website: (example) www.testing.com/hello/subfolder/the%20martian%20movie.jpg When attempted to download this image to my chosen directory (Users/Home/Temp) in my python program, it picks up on '/subfolder'. How can I ignore…
Eugeen
  • 51
  • 5
0
votes
1 answer

php code not working after header code for downloading files

I have this code and for some reason after this forces downloading file code, the next php code does not run.. $file = "2.jpg"; header("Content-Type:application/force-download"); header("content-disposition:attachment;…
0
votes
1 answer

How to download, then delete file in ASP.NET properly?

I've stumbled upon this problem recently: In my app, I'm providing users with the option of downloading multiple files from a list by putting them into a .zip folder and then downloading that. I naturally want that .zip folder to be deleted once the…
Epsiloney
  • 1
  • 3
0
votes
0 answers

Unable to download file from webapp using android studio

I created an web app using android studio for checking newspaper upload by anonymous user in his google drive, it opens the pdf file but it is not able to download the pdf file in storage. I don't know whats the wrong with it... following is my…
Learner
  • 1
  • 3
0
votes
1 answer

downloading csv file using postForm function in R

I am trying o download csv data from the web using postForm, however, the file downloaded seems to be a html document instead of a csv file. These are my code: ############################ library(RCurl) url <-…
0
votes
1 answer

How to call php download function in command line?

I have a data set that is downloadable via a website link. I would like to call that from the command line rather than from a browser. That broswer link appears to call a PHP script. Is there a way to run this file and pull the resulting data set…
0
votes
1 answer

Getting resources folder of a web site in java

I'm developing an app to download a photo from instagram, for example: if I put this uri on the app https://www.instagram.com/p/BASqNR9wrKp/ it download the image on my computer. What I would like to achieve now is to pass the link of the instagram…
Levenlol
  • 305
  • 5
  • 17
0
votes
0 answers

Gradually download an image with nsurlsession

I'm looking to add a function to my app, through which images can be downloaded from a hosting service. I know how to download it in the usual way, but I wanted to do it in a way so that the image is shown blurred/pixelated at first, and it is…
Sep
  • 79
  • 1
  • 1
  • 8
0
votes
2 answers

Downloading entire sites for offline viewing

I'd like to download a website to whiten it into a private network. I know it's being done a lot with StackOverflow itself, I just don't know how to do it myself. The specific site I want to download is CPP-QUIZ with all the questions and…
Giora Guttsait
  • 1,279
  • 15
  • 29