
Security News
Official Go SDK for MCP in Development, Stable Release Expected in August
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.
.. image:: https://travis-ci.org/codebynumbers/ftpretty.png?branch=master :target: https://travis-ci.org/codebynumbers/ftpretty
.. image:: https://coveralls.io/repos/codebynumbers/ftpretty/badge.png?branch=master :target: https://coveralls.io/r/codebynumbers/ftpretty?branch=master
.. image:: https://img.shields.io/pypi/v/ftpretty.svg :target: https://pypi.python.org/pypi/ftpretty
.. image:: https://img.shields.io/pypi/dm/ftpretty.svg :target: https://pypi.python.org/pypi/ftpretty
A wrapper for simple FTP operations: get, put, list etc.
The goal of this library is to provide a frictionless experience to FTPing files in way similar to Amazon's s3cmd command line tool. The API should be intuitive with the order of arguments reflecting the transfer direction of bytes.
Transfers are assumed to be binary.
Unrecognized commands fall through to the underlying FTP or FTP_TLS connection object
Supports python 2 & 3, tested on 2.7 & 3.5, 3.6, & 3.7
.. code-block:: python
from ftpretty import ftpretty
# Minimal
f = ftpretty(host, user, pass)
# Advanced
# kwargs are passed to underlying FTP or FTP_TLS connection
# secure=True argument switches to an FTP_TLS connection default is False
# passive=False disable passive connection, True is the default
# Note: port is not supported as an argument in underlying FTP or FTP_TLS but support for
# handling port has been internally added in ftpretty by setting FTP.port or FTP_TLS.port
f = ftpretty(host, user, pass, secure=True, passive=False, timeout=10, port=2121)
# Get a file, save it locally
f.get('someremote/file/on/server.txt', '/tmp/localcopy/server.txt')
# Get a file and write to an open file
myfile = open('/tmp/localcopy/server.txt', 'wb')
f.get('someremote/file/on/server.txt', myfile)
# Get a file and return contents (in python 3 contents is bytes)
contents = f.get('someremote/file/on/server.txt')
# Get a tree on a remote directory (similar to shutil.copytree, without following symlinks
f.get_tree("/remote/tree/on/server", "/tmp/local/tree")
# Put a local file to a remote location
# non-existent subdirectories will be created automatically
f.put('/tmp/localcopy/data.txt', 'someremote/file/on/server.txt')
# Put a local file into a remote directory, denoted by trailing slash on remote
f.put('/tmp/localcopy/data.txt', 'someremote/dir/')
# Put using an open file desciptor
myfile = open('/tmp/localcopy/data.txt', 'r')
f.put(myfile, 'someremote/file/on/server.txt')
# Put using string data (in python 3 contents should be bytes)
f.put(None, 'someremote/file/greeting.txt', contents='blah blah blah')
# Put a tree on a remote directory (similar to shutil.copytree, without following symlinks
f.put_tree("Local/tree", "/remote/files/server")
# Return a list the files in a directory
f.list('someremote/folder')
['a.txt', 'b.txt']
f.list('someremote/folder', extra=True)
[{'date': 'Feb 11',
'datetime': datetime.datetime(2014, 2, 11, 2, 3),
'directory': 'd',
'group': '1006',
'items': '3',
'name': 'a.txt',
'owner': '1005',
'perms': 'rwxr-xr-x',
'size': '4096',
'time': '02:03',
'year': '2014'},
{'date': 'Feb 11',
'datetime': datetime.datetime(2014, 2, 11, 2, 35),
'directory': 'd',
'group': '1006',
'items': '3',
'name': 'b.txt',
'owner': '1005',
'perms': 'rwxr-xr-x',
'size': '4096',
'time': '02:35',
'year': '2014'}]
# Change to remote directory
f.cd('someremote/folder')
# Create directory
f.mkdir('new_folder')
# Delete a remote file
f.delete('someremote/folder/file.txt')
# Close the connection
f.close()
0.4.0 (2021-06-12)
0.3.5 (2021-02-03)
0.3.4 (2020-10-01)
0.3.3 (2020-07-27)
0.3.1 (2019-12-01)
0.3.0 (2019-10-21)
0.2.4 (2016-12-14)
FAQs
Pretty FTP wrapper
We found that ftpretty demonstrated a healthy version release cadence and project activity because the last version was released less than 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
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.
Security News
New research reveals that LLMs often fake understanding, passing benchmarks but failing to apply concepts or stay internally consistent.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.