Tagged Questions
0
votes
2answers
62 views
Send a file through Django Class Based Views
We use class based views for most of our project. We have run into an issue when we try and create a CSV Mixin that will allow the user to export the information from pretty much any page as a CSV ...
0
votes
2answers
29 views
Downloading files in python in HTTP/1.0
I am using the mechanize library in python to download large files. I am using mechanize to retrieve data in a form .
The problem with downloading too many files simultaneously using python is that ...
3
votes
1answer
85 views
File download using python
I am using the mechanize library in python to download some large files from a server. I need to implement partial file download so that I can parallelize the download of the file. For that, I added ...
0
votes
3answers
86 views
Download many files in parallel? (Linux/Python?)
I have a big list of remote file locations and local paths where I would like them to end up. Each file is small, but there are very many of them. I am generating this list within Python.
I would ...
0
votes
1answer
53 views
Python urllib2 unfinished download file
This script downloads a file from a website and in large files there is a problem because lost packets cause stop downloading... Here is the code:
def download(self):
adres = ...
0
votes
1answer
34 views
python: https download multiple files and folders
I need a file downloader and I tried to write it but I have problems to download files over a https connection. It's easy to download files over http but for the https connection I have a username and ...
1
vote
2answers
58 views
How to download a file pushed to a browser using python?
I want to download a zip file using python.
With this type of url,
http://server.com/file.zip
this is quite simple by using urllib2.urlopen and writing it in a local file.
But in my case I have this ...
-2
votes
1answer
108 views
How to crawl and download files from a dynamic URL?
I have my own python crawler(based on CS101 from Udacity.com), trying to download files(installers) from download.cnet.com, When the crawler is crawling, I want it to work like this:
Tell if the ...
0
votes
1answer
106 views
Periodically download file from my dropbox account
I have the django application, which needs refresh some data. This data should be downloaded from my dropbox account (file name and path is the same each time). How can I implement this?
I start with ...
0
votes
0answers
61 views
getting error as “no module has attribute as get_serving_url” while try to use get_serving_url for getting url of the file in google app engine
Hi i'm new to python programming..when i try to upload and download a file using blobstore handlers in python.i can upload a file but can't get the download link of the file using the function ...
-2
votes
1answer
90 views
why download 0 bytes file from python-django [closed]
django 1.4. I am trying to develop a function to deploy download. I didnt get the right result. I attach my code at below. When I download after click hyperlink, I got a 0 bytes file. The ...
0
votes
0answers
81 views
How to provide a secure access to download link of a file to a buyer?
Let us take Gumroad(https://gumroad.com/how-it-works) for example. Seller uploads a file, fix the price and then shares the purchase links with potential buyers. The buyer visits the link, make ...
0
votes
1answer
84 views
Using python to download a file after clicking the submit button
I need to login to a website. Navigate to a report page. After entering the required information and clicking on the "Go" button(This is a multipart/form-data that I am submitting), there's a pop up ...
0
votes
3answers
340 views
Python: Download multiple files quickly
In Python how can I download a bunch of files quickly? urllib.urlretrieve() is very slow, and I'm not very sure how to go about this.
I have a list of 15-20 files to download, and it takes forever ...
8
votes
3answers
173 views
Requests with multiple connections
I use the Python Requests library to download a big file, e.g.:
r = requests.get("http://bigfile.com/bigfile.bin")
content = r.content
The big file downloads at +- 30 Kb per second, which is a bit ...
4
votes
1answer
111 views
Dynamic refresh printing of multiprocessing or multithreading in Python
I have implemented a multiprocessing downloader.
How can I print the status bar (complete rate, download speed) which can refresh automatically
in different part on the terminal.
Like this:
...
1
vote
0answers
112 views
google app engine xml file download
I wrote a simple requestHandler for my GAE application that should create an xml text and let the user download it.
class ExportHandler(webapp.RequestHandler):
def get(self):
r = ...
0
votes
1answer
49 views
Trouble downlaoding file using Django FileTransfers
I have am uploading a file through the admin section of my site that I would like to be able to be publicly downloaded through my website. I know that the file I have uploaded has been successfully ...
0
votes
1answer
107 views
downloading files with Python through FTP
I can think of three ways to download a file from an ftp:// address from python: using urllib (or urllib2), using ftplib, or by making an os.system call to a common program like wget. Assume that I am ...
0
votes
1answer
131 views
How to generate temporory download link like google drive, Rapidshare? [closed]
I am new to python. I want to generate temporary download link for one file. So any solution for this ?
0
votes
2answers
234 views
How to `pause`, and `resume` download work?
Usually, download a file from the server is something like this:
fp = open(file, 'wb')
req = urllib2.urlopen(url)
for line in req:
fp.write(line)
fp.close()
After downloaded, the download ...
0
votes
1answer
253 views
python download images from url
This wont be easy to answer so I would like some guide instead:
I want to download images form a webserver. I know how to get an image from a url, but i dont know how many pages I can find. (example, ...
0
votes
1answer
37 views
Make accessible a remote file to a registered user
I have a site A where is installed a web portal written in python.
Then, I have a site X (that is not static but change dinamically), where are stored some file. The site A and site X communicate ...
1
vote
2answers
251 views
No such file or directory, Weird Or What?
So,
I've been coding a Downloader, and every time I run it, it says:
Traceback (most recent call last):
File "C:\Python27\Downloader.py", line 7, in <module>
f = ...
0
votes
3answers
272 views
Python Downloading Zip Files Damaged
So, I've been trying to make a simple downloader that downloads my zip file.
Code looks like this:
import urllib2
import os
import shutil
url = "https://dl.dropbox.com/u/29251693/CreeperCraft.zip"
...
0
votes
5answers
803 views
Python: download a file over an FTP server
I'm trying to download some public data files. I screenscrape to get the links to the files, which all look something like this:
...
0
votes
2answers
240 views
Urllib downloads file as requested everywhere except on my laptop
I have a Python script that downloads a GRIB file (weather forecast data) from the NOAA website based on a date, time, and hours to forecast ahead. Basically the Python pieces together a big URL ...
0
votes
1answer
172 views
Using python to download a file after clicking the generate icon
I am working on a project. Each day I need to login to a website. Navigate to a report page. After entering the require information, and clicking on the "gererate report" icon, there's a pop up ...
0
votes
1answer
191 views
Handle a file download triggered by the click of a button
I want to programmatically download a file who's url I do not have. On a regular browser once you click a button the browser it usually asks if you want to save, open or cancel. However doing the ...
0
votes
1answer
77 views
File Downloading using Python
I have to download file from website after selecting multiple option on the website.
I have three checkboxes each is having same name. I could select one box by using name and value like this.
...
0
votes
1answer
302 views
a python script to retrieve a file from a remote VPN
I need to write a python script that logs into a remote VPN and then copies files from a certain directory to a directory on the local server. What would be the best method to use for this?
1
vote
1answer
186 views
Getting TypeError when trying to download .zip from FTP server
I am trying to download a .zip file from a FTP server and I keep getting this error:
File "C:/filename.py", line 37, in handleDownload
file.write(block)
TypeError: descriptor 'write' requires a ...
1
vote
4answers
222 views
How to respond to an HTTP request using Python
I am trying to write an iPhone application that uses a Python server. The iPhone application will send an HTTP request to the server, which should then respond by sending back a file that is on the ...
0
votes
1answer
234 views
Serving files through flask + redis
This might be a bit of a noob question, so I apologize in advance.
How do I make a web server running flask+redis serve binary files as a response to a link/query?
I want the response to the link to ...
2
votes
1answer
170 views
Django limit file download
Is there a way to limit the speed of file downloads in django on a per user basis?
I've seen examples like the following:
filename = __file__ # Select your file here.
...
0
votes
2answers
315 views
Downloading a protected file using python urllib
I am trying to download a PDF file that is located here http://elwatan.com/pdf/telecharger.php?dir=JOURNAL&file=20120524.pdf , however, this pdf file require to be logged in before you download ...
2
votes
1answer
472 views
generating a file with django to download with javascript/jQuery
Using Django, I want to make some data available for download.
My jQuery call looks like this so far:
$.getJSON("/get_data",
{ users: users, study: "{{study.id}}" } ,
...
0
votes
1answer
70 views
Automatically deleting archive on server in Django when client side download completes
In my server side code in Django, i download a set of files on the server and create an archive which is then sent to the client side for download.
Is there a way i can automatically delete this ...
2
votes
3answers
559 views
Download A Single File Using Multiple Threads
I'm trying to create a 'Download Manager' for Linux that lets me download one single file using multiple threads. This is what I'm trying to do :
Divide the file to be downloaded into different ...
0
votes
2answers
186 views
Python 3 FTPLIB, NoneType Errors, and Uploads/Downloads
In my script I want to be able, in the end, to be able to download all files in a directory and all sub-directories... So I am trying FTPLIB. I'm trying to call dir of my ftp server and put it into a ...
2
votes
2answers
321 views
Getting an empty file when served by django
I have the following code for managing file download through django.
def serve_file(request, id):
file = models.X.objects.get(id=id).file #FileField
file.open('rb')
wrapper = ...
2
votes
4answers
1k views
Serving large files ( with high loads ) in Django
I've been using a method for serving downloads but since it was not secure i decided to change that . ( the method was a link to the original file in storage , but the risk was that everyone with the ...
4
votes
3answers
1k views
Serving Files with Pyramid
I am serving quite large files from a Pyramid Application I have written.
My only problem is download managers don't want to play nice.
I can't get resume downloading or segmenting to work with ...
2
votes
2answers
169 views
How to crawl 'this' url use urllib?
I try to use urllib to crawl this file: http://www.anzhi.com/dl_app.php?s=68611, but always download a wrong file(size smaller). However, if I open up this link on chrome, it goes well and the ...
2
votes
2answers
377 views
download a file properly with python if no Content-Length is provided
how can i properly download a file with python if the http response does not contain a Content-Length header?
im having this issue with appengine's send_blob() function which for some reason does not ...
11
votes
1answer
2k views
Django - Understanding X-Sendfile
I've been doing some research regarding file downloads with access control, using Django. My goal is to completely block access to a file, except when accessed by a specific user. I've read that when ...
2
votes
1answer
975 views
Download and unzip file with Python
I am trying to download and open a zipped file and seem to be having trouble using a file type handle with zipfile. I'm getting the error "AttributeError: addinfourl instance has no attribute 'seek'" ...
13
votes
10answers
2k views
Library or tool to download multiple files in parallel [closed]
I'm looking for a python library or a command line tool for downloading multiple files in parallel. My current solution is to download the files sequentially which is slow. I know you can easily write ...
4
votes
2answers
992 views
How to download files from a web based file server with Python Mechanize
I have a series of files on a private ftp file server that I am trying to download using mechanize.
The mechanize link objects have the structure
...
9
votes
3answers
5k views
Flask/Werkzeug how to attach HTTP content-length header to file download
I am using Flask (based on Werkzeug) which uses Python.
The user can download a file, I'm using the send_from_directory-function.
However when actually downloading the file, the HTTP header ...

