
Security News
PEP 810 Proposes Explicit Lazy Imports for Python 3.15
An opt-in lazy import keyword aims to speed up Python startups, especially CLIs, without the ecosystem-wide risks that sank PEP 690.
= FtpSync
A Ruby library for recursively downloading and uploading directories to/from ftp servers. Also supports uploading and downloading a list of files relative to the local/remote roots. You can specify a timestamp to only download files newer than that timestamp, or only download files newer than their local copy.
This was originally written to provide the functionality I needed for Munkey, a tool for tracking changes on FTP servers with git.
Allows you to supply a 'ignore' class that dictates whether a file is excluded from upload / download.
== Quickstart
ftp = FtpSync.new 'my.ftp.server.com', 'username', 'password' ftp.pull_dir '/tmp/syncdir', 'path/on/server'
make some changes on server
ftp.pull_dir '/tmp/syncdir', 'path/on/server', :since => true, :delete => true
:since => true - means only files which are newer than the local copy will be downloaded :since => Time.now - means only files which are newer than the supplied date will be downloaded :delete => true - means if the file is removed from the server, then the local copy is removed :skip_errors => true - means if file cant be read (ie permissions) it will be skipped
FAQs
Unknown package
We found that ftp_sync demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
An opt-in lazy import keyword aims to speed up Python startups, especially CLIs, without the ecosystem-wide risks that sank PEP 690.
Security News
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.