Skip to main content

Questions tagged [download]

Receiving data to a local system from a remote system, or to initiate such a data transfer. Do not use this tag for question asking where to download off-site resource.

0 votes
1 answer
43 views

cannot unzip a file

I am new to R and install Rbase 4.3, using shipping traffic (https://datacatalog.worldbank.org/search/dataset/0037580/Global-Shipping-Traffic-Density) and nighttime light(https://eogdata.mines.edu/...
iqbalhabibie habibie's user avatar
1 vote
0 answers
57 views

Forwarding file stream to client in Blazor WebServer in .NET 8

I'm writing a Blazor WebServer application which, at one point, allows the client to download a file. This file is forwarded from another API, which offers it as an application/octet-stream message, ...
Evaristo's user avatar
  • 111
0 votes
1 answer
67 views

ExemptFileTypeDownloadWarnings correct registry syntax for intranet URLs

I created a GPO to avoid blocking xlsx files to be downloaded from our intranet site. policy is readed and applied to the clients and the registry created the key REG_SZ called "...
Alessandro Serbelloni Mazzanti's user avatar
0 votes
0 answers
124 views

VBA Code to Download File from Sharepoint

I would like to use an Excel VBA macro to download a Sharepoint file to local c:\temp1. I've tried 2 different codes. One worked for a while but is not consistent. 95% of the time it downloads a ...
Timothy Clayton's user avatar
0 votes
0 answers
45 views

How to download a file from stream with Blazor SSR?

It's not clear to me how to download a file from a stream using Blazor SSR. I read the documentation but it seems to consider only the WASM/Server cases, as it uses an @onclick event handler. Is it ...
Matteo's user avatar
  • 1
0 votes
0 answers
36 views

CSS filter property does not work in html2canvas

I currently have a div with an image and to download it I'm using the following code: const handleDownloadAll = () => { const downloadPromises = [polaroidContainerRef.current].map( (...
Denlavor's user avatar
0 votes
1 answer
29 views

Preventing refresh after using the click() function on an anchor element

I'm trying to implement a download button in my web application that allows users to download a JSON file without refreshing the page. The download is triggered via Javascript. button.addEventListener(...
Kwasi's user avatar
  • 3
0 votes
0 answers
83 views

How to test the downloaded file content using jest

I have the following code to download a file on button click: const blob = new Blob([data], { type: 'text/csv;charset=utf-8;' }); const url = URL.createObjectURL(blob); const link = document....
Svitlana Lesiv's user avatar
3 votes
0 answers
167 views

How to fix "error on loading data from the server getit12new.embarcadero.com" when downloading RAD Studio 12.0

I download RAD Studio 12.0 and activated the trial with the license key, but I'm encountering an error: I read this which says: The servers are down at the moment and you need to use the offline ...
Nguyễn Tuấn Hưng's user avatar
0 votes
0 answers
45 views

pyTube - Downloaded files are not accessible

I've run into a lot of issues with the pyTube package but there have been lots of well documented solutions for the main issues, however I'm not even able to find a reference to this issue. Both the ...
Nisarg Patel's user avatar
-2 votes
2 answers
79 views

Changing download location

I have a script that downloads file into a folder. The scripts works properly, but the downloads of the script are going into the my project folder. What I would like to do, is have these downloads ...
sdgibbs's user avatar
0 votes
0 answers
48 views

Can the download attribute of the anchor tag be used, when the download is from a different subdomain?

When users download images from Wikimedia Commons, the browser will usually take the file name from the URL. The exception are SVG files, where the code contains a title (which is often wrong). I ...
Watchduck's user avatar
  • 1,146
-1 votes
1 answer
38 views

How to restrict web users to only download their reports [closed]

We have a Linux website running on Apache with thousands of users, and each user should be able to download reports that are stored in a folder specifically intended for their company. There are ...
David.Woosley's user avatar
0 votes
1 answer
96 views

How to convert temporary download links, which after some time expire, to permanent download links?

i need to download so many huge files from a website via IDM. I copy and paste links in the morning so i can download them with IDM at night, but the problem is the links are temporary and expire ...
javad's user avatar
  • 1
0 votes
0 answers
95 views

Huggingface model download

I have cloned repo from huggingface with git lfs but all files are JSON format. I want to train NLP model and so I need python code but there are all JSON. Could you help me how to download the model ...
Yuşa's user avatar
  • 11
0 votes
1 answer
79 views

Download file through OneDriver Picker JavaScript

I cloned the MS OneDriver FilePicker Repo (https://github.com/OneDrive/samples/tree/master/samples/file-picking). I'm currently trying around in the "javascript-basic-consumer" sample. I ...
user24366993's user avatar
0 votes
0 answers
40 views

Uploading files to shared SharePoint as guest in Python

I am trying to get a Python script to upload files in an organization SharePoint. I am not the admin of said SharePoint, so I believe I can't add application permissions in Microsoft Graph. However, I ...
Richard R.'s user avatar
0 votes
0 answers
13 views

Problem to dowload pdf file using flask api [duplicate]

There is this route to generate a pdf file using 'FPDF' and I need to send it back in response and download with JS directly in browser. I deployed the flask api in vercel and angular UI in github ...
Rodrigo Cezar's user avatar
1 vote
0 answers
21 views

Download a file with Flask

I'm trying to download an Excel file with Flask, but the browser doesn't initiate any download. Here's the function that should perform the download: @app.route("/", methods=['GET', 'POST']) ...
Matteo's user avatar
  • 37
0 votes
0 answers
9 views

how to download multiple image in a div element container as all-in-one image file keeping the same position as it is shown on the page?

I have the following code : <div id="imageContainer"> <img src="model.png" class="download-image" style="position: absolute; top: 0; left: 0;"> ...
Andrew 's user avatar
-2 votes
1 answer
36 views

How to get Swift IDE [closed]

I've been looking all over the internet for a Swift IDE download but could not find anything, could I get it on the apple website? I thought it would be possible to download on GitHub but I could not ...
Max Solo's user avatar
0 votes
1 answer
27 views

R shiny download zipped shp file

I try to develop a shiny app where a sf object is created and can be downloaded as a shp file in a zip folder. Preferably the shp geometry is packed in a subfolder: -myzip |-mygeometry |--myshape.shp ...
Reto Spielhofer's user avatar
0 votes
0 answers
37 views

Checking the size of a file that's being downloaded by the browser causes it to get duplicated

I'm writing a script which needs to download a file by hitting a URL. It would be easy enough to curl the URL, but I need to be logged in to the site when doing it, and I've given up on trying to ...
Verpous's user avatar
  • 696
0 votes
0 answers
19 views

Save the project in jupyter notebook

I recently installed Anaconda and Jupiter notebook, but when I write my code in Jupiter, I can't download from the download as section with different formats like .py or .ipynb.That means it doesn't ...
Sana's user avatar
  • 1
0 votes
1 answer
224 views

Is it possible to download a instagram reel with audio, using instaloader?

I have been trying to download a instagram reel using instaloader, but it downloads the reel without audio every time. How can i download the unmuted reel or is it even possible. I found this question ...
Om Kakkad's user avatar
0 votes
1 answer
35 views

Capture the for-loop iteration value to create anonymous function for dynamically generated downloadHandler

I'm developing an R Shiny App building a list of graph and I want each data to be downloadable by a click on a button below each graph. My problem is that the anonymous function created to handle the ...
Lucas Duval's user avatar
0 votes
0 answers
30 views

CHEMBL database related query- dual targets

Is there a way to download a list of compounds with dual targets from CHEMBL. for example :I can download a list of compounds with estrogen receptor activity separately and a list of NMDA antagonist ...
S Sil's user avatar
  • 1
0 votes
0 answers
51 views

How to download exe file from github using python

I have searched a lot for answers, but for the exe file format, I still cannot do it. This is my code: import requests import base64 import shutil def download_file_from_github(repo_owner, repo_name, ...
Nguyễn Đức Quân's user avatar
0 votes
2 answers
688 views

How can I download a HuggingFace dataset via HuggingFace CLI while keeping the original filenames?

I downloaded a dataset hosted on HuggingFace via the HuggingFace CLI as follows: pip install huggingface_hub[hf_transfer] huggingface-cli download huuuyeah/MeetingBank_Audio --repo-type dataset --...
Franck Dernoncourt's user avatar
0 votes
0 answers
26 views

How do I download a dockerhub image as a zip/tar onto my downloads folder viewable via explorer?

I'm very new to this, and not 100% familiar with websites that only offer a "download" (in their terms, "pull") in the form of a command line that cannot perform a download through ...
AAsomb113's user avatar
1 vote
2 answers
46 views

Hide download link as soon as the download starts

Question: What do I have to do to hide a download link as soon as the download starts? Problem: The difficulty or problem for me here is that a password is sent with the user request. If the password ...
MartinTTS's user avatar
  • 429
2 votes
1 answer
44 views

Get list of all Oracle JDK releases for a specific version using curl or rest api call

I would like to programmatically get a listing of all Oracle JDK releases so that upon detecting a new release trigger a pipeline to upgrade JDK (in effect programmatically getting and listing Oracle ...
davidt's user avatar
  • 21
1 vote
0 answers
89 views

How can I automatically cancel slow downloads and automatically rerun them with the Internet Archive Python library?

I use the Python library internetarchive to download files from archive.org, e.g. to download https://archive.org/details/meetingbank-alameda I run: pip install internetarchive ia download meetingbank-...
Franck Dernoncourt's user avatar
1 vote
0 answers
51 views

Download CSV Using jQuery Ajax

How can I trigger a csv file download from the ajax jQuery method? I don't want to use an href with the full url because I need to fetch the correct csv file depending on what id is selected in a ...
Johan's user avatar
  • 56
0 votes
1 answer
40 views

Fillable PDF download in .net after change in preview

I am working on a web application, developed using ASP.NET. I need a functionality to show a pdf file embedded in the form. The pdf file is actually a form with some editable controls like textbox, ...
fake account's user avatar
1 vote
0 answers
119 views

How to get direct link download from google driver

i have i fileID image in google driver i know can use for download use webContentLink https://drive.usercontent.google.com/download?id=?id={fileID} https://drive.google.com/uc?id={fileID}&export=...
Satoshi's user avatar
  • 11
0 votes
2 answers
85 views

download all pdf files from website doesn't support wildcard

I want to download all pdf files in the website of "https://journals.ametsoc.org/view/journals/mwre/131/5/mwre.131.issue-5.xml". I tried many thing with wget as: wget --wait 10 --random-wait ...
Zeinab's user avatar
  • 21
0 votes
1 answer
31 views

Create the original download link after checking the domain

I have put such a code in the functions.php file for the download links of my site: // Define the function to generate the shortcode function generate_download_shortcode( $atts ) { // Get the file ...
Wp-PHP's user avatar
  • 111
0 votes
0 answers
23 views

How to Properly Interrupt the Download of a Background Image Using JavaScript

In a similar vein to a previous question (link), I'm dealing with dynamic changes to background images in my web application. However, unlike the scenario discussed in the linked question, where the ...
Erik's user avatar
  • 92
0 votes
1 answer
47 views

Renaming a file - Google API direct download link [closed]

I am using an external API to create and download a data extract. After the extract has been created, the API response includes a url. This url is a direct download link - I click it and a new browser ...
courtneymickelsen's user avatar
0 votes
3 answers
51 views

find out filename from URL

I'm currently programming a download manager, which has a function of adding links from clipboard. Now I need to write a method to find out the filename of the file which is in the link, e.g. a method ...
chs2311's user avatar
  • 15
0 votes
1 answer
81 views

How to download a file using a button on a ribbon on a Model Driven App with C# Plugins?

I managed to integrate code that allows me to download a file from a Dataverse table within a plugin and I can perform automation tasks on this document private static byte[] DownloadFile(...
Satoko EntertainMent's user avatar
0 votes
1 answer
119 views

JavaScript anchor file download - override file name from Content-Disposition header

As mentioned in the title, I'm using JS, an anchor URL, and a download attribute to get a file from an external system. The problem is that I have to download it under a specific filename and the PDF ...
snowflake's user avatar
0 votes
0 answers
30 views

Node.js/Express File Download Returns 0-Byte Plaintext Files

When I trigger a file download from my frontend (utilizing a React app and an async Redux action for the download), the download initiates but the resulting file is always 0 bytes and is of a ...
low five's user avatar
0 votes
0 answers
192 views

Downloaded file in Angular Application saved as Unconfirmed XXXXX.crdownload

Angular 17 application. Trying to download file from database via ASP.NET Web API. Web API code: [HttpGet("{id}")] public async Task<IActionResult> DownloadFileFromDatabase(int id) { ...
Igor Rodionov's user avatar
-1 votes
1 answer
30 views

Replace urllib.request urlopen in PHP

I have a URL which can not download using video file using PHP. I have to run it ones in browser so that code can start downloading videos from it. I have tried using curl, it fails to download video ...
Ziscom 18's user avatar
1 vote
2 answers
35 views

string PNG conversion Returns Blurry Image

I'm making a website for makecode arcade here and I'm making a string to PNG function called ConvertAndDownload but when I download the image, its all blurry for example lets say that i have the ...
Yu-Hayate's user avatar
0 votes
0 answers
35 views

Java Selenium - cannot download image from Chrome browser and save as .png file

I want to download image from Chrome web browser and save it as .png file. The following code creates a file in Download directory, but the size of the file is only 417 bytes and when I want to open ...
javabeginer's user avatar
-1 votes
1 answer
78 views

Binary file getting corrupted when trying to download using Struts 6.3.0.2 with Java

When I am trying to download the pdf and doc-x file from my app after upgrading from struts2 to struts 6.3.0.2, the file is getting corrupted. I am not able to open the pdf file when I have downloaded ...
Mahabir Gupta's user avatar
1 vote
1 answer
309 views

FastAPI - How to specify filename when downloading bytes content using Response class?

I need to download files stored in MongoDB (and not in file system) using FastAPI. I use FastAPI Response for this, because FileResponse can only be used if files are in the file system. Downloading ...
F. F.'s user avatar
  • 47

15 30 50 per page