Ausgabe der neuen DB Einträge
This commit is contained in:
parent
bad48e1627
commit
cfbbb9ee3d
2399 changed files with 843193 additions and 43 deletions
37
venv/lib/python3.9/site-packages/scrapy/utils/ftp.py
Normal file
37
venv/lib/python3.9/site-packages/scrapy/utils/ftp.py
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
import posixpath
|
||||
|
||||
from ftplib import error_perm, FTP
|
||||
from posixpath import dirname
|
||||
|
||||
|
||||
def ftp_makedirs_cwd(ftp, path, first_call=True):
|
||||
"""Set the current directory of the FTP connection given in the ``ftp``
|
||||
argument (as a ftplib.FTP object), creating all parent directories if they
|
||||
don't exist. The ftplib.FTP object must be already connected and logged in.
|
||||
"""
|
||||
try:
|
||||
ftp.cwd(path)
|
||||
except error_perm:
|
||||
ftp_makedirs_cwd(ftp, dirname(path), False)
|
||||
ftp.mkd(path)
|
||||
if first_call:
|
||||
ftp.cwd(path)
|
||||
|
||||
|
||||
def ftp_store_file(
|
||||
*, path, file, host, port,
|
||||
username, password, use_active_mode=False, overwrite=True):
|
||||
"""Opens a FTP connection with passed credentials,sets current directory
|
||||
to the directory extracted from given path, then uploads the file to server
|
||||
"""
|
||||
with FTP() as ftp:
|
||||
ftp.connect(host, port)
|
||||
ftp.login(username, password)
|
||||
if use_active_mode:
|
||||
ftp.set_pasv(False)
|
||||
file.seek(0)
|
||||
dirname, filename = posixpath.split(path)
|
||||
ftp_makedirs_cwd(ftp, dirname)
|
||||
command = 'STOR' if overwrite else 'APPE'
|
||||
ftp.storbinary(f'{command} {filename}', file)
|
||||
file.close()
|
||||
Loading…
Add table
Add a link
Reference in a new issue