Skip to main content

All Questions

Tagged with
0 votes
1 answer
65 views

python download ftp file properly

I am trying to write a file like object in memory. I downloaded a file on ftp and when I try to convert it to a StringIO or BytesIO object using the method read I am getting this: "Android 4.2.2 ...
blob's user avatar
  • 475
0 votes
1 answer
231 views

i want download files with python using wget(FTP). but error occured. please help to download

I want down load "*_ice.nc" files in ftp. so.. library import wget import math import re from urllib import request adress and file list url = "ftp://ftp.hycom.org/datasets/GLBy0.08/...
Kim Young Jun's user avatar
0 votes
0 answers
55 views

Download every file and every subdirectory from an ftp server [duplicate]

I am trying to download every file from my ftp server (as a kind of backup program), and then zip it. So far all i have is this code. import os from ftplib import FTP from datetime import datetime dt ...
user avatar
1 vote
1 answer
855 views

How to count how many data has been downloaded in the last second? (FTP)

I want to know how many data has been downloaded in the last 1 second. I don't have a code yet but I was wondering when I should start counting this 1 second and how to do it. Should I start counting ...
Aspect013's user avatar
0 votes
0 answers
677 views

How can I improve the speed of data downloading from an ftp server?

I am writing a Python script that downloads the data from the National Digital Forecast Database (NDFD) server. The FTP server files are organized in this way: Year/YearMonth/YearMonthDay and I have ...
Noman Bashir's user avatar
2 votes
0 answers
85 views

Downloading entire directories from ftp server with python3 [duplicate]

I've searched, yet not found a simplistic way to download a bunch of files from an ftp server (example: ftp://ftp-cdc.dwd.de/pub/CDC/observations_germany/climate/subdaily/standard_format/). I want to ...
Christian's user avatar
0 votes
1 answer
51 views

Script reading files in ftp directory but not downloading them

The script below is able to read the files in the ftp directory file however it does not download them. I know they read them because the outputted list in the command window shows them. from ftplib ...
user avatar