Metadata-Version: 1.1
Name: theGekko
Version: 0.3.2
Summary: Make SFTP syncing "easy-peasy lizard squeezy".
Home-page: https://github.com/CYRO4S/Gekko
Author: Ralf Ren
Author-email: me@ralf.ren
License: UNKNOWN
Description: Gekko
        ==========
        
        --------------
        Installation
        --------------
        ::
        
          $ sudo apt-get update && sudo apt-get install -y python3 python3-pip
          $ sudo pip3 isntall thegekko
        
        Gekko provides bash's tab-complete feature. To enable it, use:
        ::
        
          $ source /etc/bash_completion.d/gekko_ac
        
        If '/etc/bash_completion.d/' is supported, the tab-complete feature will automatically enable in the next session.
        
        -------------
        Quick Start
        -------------
        Add files or directories you don't want to sync.
        ::
        
          $ gekko camo venv/
          Checking for venv/... Exist.
          /home/me/gekkotest/.gekkoign saved.
        
        Set up SFTP connection.
        ::
        
          $ gekko grip root@myserver.com:/root/gekkotest-remote -s MyServer
          Host:             myserver.com
          SSH Port:         22
          User:             root
          Upload Directory: /root/gekkotest-remote
          Remark:           MyServer
        
          Connection Saved.
        
        Set up SFTP connection using a rsa key and specify the ssh port.
        ::
        
          $ gekko grip root@myserver.com:/root/gekkotest-remote -s MyServer -p 1080 -k ~/.ssh/id_rsa
          Host:             myserver.com
          SSH Port:         1080
          User:             root
          Upload Directory: /root/gekkotest-remote
          Remark:           MyServer
          Private key:      /home/ice/.ssh/id_rsa
        
        Check for changes.
        ::
        
          $ gekko sense MyServer -p P@ssw0rd
          Connecting to myserver.com... Connected.
          Checking for /root/gekkotest-remote... Exist.
          Changes will be taken:
          * /root/gekkotest-remote/app.py
          > /root/gekkotest-remote/db.py
          + /root/gekkotest-remote/assets/logo.png
          Disconnecting... Done.
        
          0.102 MB need to upload.
          0.003 MB need to download.
        
        Sync using password. Add "-r" if you don't want to change your local file.
        ::
        
          $ gekko run MyServer -p P@ssw0rd -r
          Connecting to myserver.com... Connected.
          Make directory at /root/gekkotest-remote... Skipped.
          Change directory to /root/gekkotest-remote... Done.
          Ignored:   .gekkoign
          Uploading: app/main/views.py... Done.
          Uploading: app/templates/index.html... Done.
          Skipped:   app/templates/old.html
          Ignored:   venv/lib/python3.5/site.py
          ......
          Ignored:   venv/pip-selfcheck.json
          Skipped:   oldone.txt
          Uploading: requirements.txt... Done.
          Uploading: manager.py... Done.
          Reserved:  db.py
          Disconnecting... Done.
        
        ----------
        Commands
        ----------
        * camouflage (camo) : Define a file or a directory which will be ignored when uploading. This will generate '.gekkoign' file.
        * grip (gp) : Create a host which files will be uploaded to. You can also save the host or remove it.
        * list (ls) : Show all the connections.
        * remove (rm) : Remove a connecion.
        * sense (ss) : Check for the changes which will taken in uploading.
        * run (rn) : Start the upload sequence.
        
Keywords: SFTP sftp sync
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: Topic :: Software Development :: Build Tools
Classifier: Topic :: Communications :: File Sharing
Classifier: Topic :: System :: Networking
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Environment :: Console
Classifier: Operating System :: POSIX :: Linux
