@Andre Filipe Posted May 15, 2021 at 04:42 PM Report Share #622322 Posted May 15, 2021 at 04:42 PM Boa tarde, Ultimamente tenho tido um problema com a ftplib , para fazer upload de files para o servidor ftp. Dá sempre o mesmo erro! import ftplib import ftplib FTP_HOST = "ftp://192.168.1.4:4552/" FTP_USER = "anonymous" FTP_PASS = "xxxxxxxxxxxxxxx" ftp = ftplib.FTP(FTP_HOST, FTP_USER, FTP_PASS) ftp.encoding = "utf-8" blockfile = open('block.txt','a') blockfile.close() with open(filename, "rb") as file: ftp.storbinary(blockfile, file) Como posso resolver? I never give up! Link to comment Share on other sites More sharing options...
M6 Posted May 15, 2021 at 06:36 PM Report Share #622323 Posted May 15, 2021 at 06:36 PM Como queres que alguém te ajude se nem dizes qual é o erro? 10 REM Generation 48K! 20 INPUT "URL:", A$ 30 IF A$(1 TO 4) = "HTTP" THEN PRINT "400 Bad Request": GOTO 50 40 PRINT "404 Not Found" 50 PRINT "./M6 @ Portugal a Programar." Link to comment Share on other sites More sharing options...
@Andre Filipe Posted May 15, 2021 at 07:48 PM Author Report Share #622325 Posted May 15, 2021 at 07:48 PM 1 hora atrás, M6 disse: Como queres que alguém te ajude se nem dizes qual é o erro? Peço desculpa, esqueci-me de dizer qual tinha sido o erro obtido. O erro que surge é o seguinte: gaierror: [Errno 11001] getaddrinfo failed Se me pudessem ajudar ficaria grato! I never give up! Link to comment Share on other sites More sharing options...
Rui Carlos Posted May 16, 2021 at 10:45 AM Report Share #622328 Posted May 16, 2021 at 10:45 AM O ftp://192.168.1.4:4552/ é um URL, e não um host. O host é só o domínio ou endereço de IP (no teu caso, seria só o 192.168.1.4). Tendo em conta que estás a usar uma porta não standard, o mais simples talvez seja usares os métodos connect e login para te ligares ao servidor. Rui Carlos Gonçalves Link to comment Share on other sites More sharing options...
@Andre Filipe Posted May 18, 2021 at 06:21 PM Author Report Share #622351 Posted May 18, 2021 at 06:21 PM Olá boa tarde, Desculpa a minha ignorância, como nunca me foi preciso trabalhar muito com a ftplib, podias ajudar-me a criar o script de conexão e de upload? Agradecia muito! I never give up! Link to comment Share on other sites More sharing options...
Rui Carlos Posted May 18, 2021 at 08:01 PM Report Share #622353 Posted May 18, 2021 at 08:01 PM Algo como isto deve funcionar: FTP_HOST = "192.168.1.4" FTP_PORT = 4552 FTP_USER = "anonymous" FTP_PASS = "xxxxxxxxxxxxxxx" ftp = ftplib.FTP() ftp.connect(FTP_HOST, FTP_PORT) ftp.login(FTP_USER, FTP_PASS) Usar um with ftplib.FTP() as ftp: também não era má ideia. Rui Carlos Gonçalves Link to comment Share on other sites More sharing options...
@Andre Filipe Posted May 22, 2021 at 08:42 PM Author Report Share #622392 Posted May 22, 2021 at 08:42 PM (edited) Boa tarde, Não pude estar a testar o script porque tive muito ocupado. Mas sim usar umwith ftplib.FTP() as ftp: não era má ideia, mas optei por fazer da forma como apresentaste acima, depois para fazer upload do file fiz da seguinte forma: FTP_HOST = "192.168.1.3" FTP_PORT = 4552 FTP_USER = "anonymous" FTP_PASS = "xxxxxxxxx" ftp = ftplib.FTP() ftp.connect(FTP_HOST, FTP_PORT) ftp.login(FTP_USER, FTP_PASS) file = open('block.txt','rb') ftp.storbinary('STOR block.txt', file) Agora dá-me sempre este erro: error_temp: 426 Data connection unexpectedly closed. Edited May 22, 2021 at 09:26 PM by @Andre Filipe I never give up! Link to comment Share on other sites More sharing options...
M6 Posted May 24, 2021 at 08:55 AM Report Share #622403 Posted May 24, 2021 at 08:55 AM Vê a documentação da biblioteca e verifica o log no servidor para veres se tens mais informação sobre o erro. Verifica também se tens alguma firewall pelo meio que impede a ligação. 10 REM Generation 48K! 20 INPUT "URL:", A$ 30 IF A$(1 TO 4) = "HTTP" THEN PRINT "400 Bad Request": GOTO 50 40 PRINT "404 Not Found" 50 PRINT "./M6 @ Portugal a Programar." Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now