Metadata-Version: 2.1
Name: pyftpsync-s3
Version: 0.0.3
Summary: Amazon S3 synchronization target for pyftpsync library
Home-page: https://github.com/pyxnode/pyftpsync-s3
Author: pyxnode
Author-email: pynode@protonmail.com
License: UNKNOWN
Description: # Amazon S3 synchronisation target for pyftpsync
        
        Allows to copy remote FTP files and immediately upload
        to S3 bucket as soon as each individual file is downloaded.
        
        
        ## Usage
        
        S3Target() is a drop in replacement for FsTarget(). Use examples in pyftpsync documentation.
        Initialize S3Target() with boto3 s3 client and bucket name.
        
        ```python
        
            >>> from pyftpsyncs3.s3target import S3Target
            >>> local = S3Target(root_dir="/abc/", extra_opts=dict(s3=boto3s3client, bucket='test'))
        
        ```
        
        
        ## Bugs
        
        FTP to S3 is supported. S3 to FTP is not implemented yet. 
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
