Metadata-Version: 1.0
Name: boat
Version: 0.0.1
Summary: Instantly transfer files locally over HTTP
Home-page: https://github.com/ashisha/boat
Author: Ashish Anand
Author-email: UNKNOWN
License: MIT
Description: # boat
        Boat lets you instantly share any file over HTTP from command line. You can use boat to share files over local network, or transfer to mobile devices if they are on same WiFi network!
        
        ![](https://github.com/ashisha/boat/blob/master/screenshot/craft.png)
        
        # Usage
        * To share a file called file.txt, run ```boat file.txt```
        * boat will spawn a HTTP server and tell you the corresponding URL
        * You can now download file.txt on the local network by going to URL via any client (browser, curl, wget)
        * Additionally you can ask boat to generate a QR code: ```boat --qr file.txt```
        * boat will then generate a QR code for you which can be scanned easily on mobile devices
        * For more help, run ```boat --help```
        
        # Features
        * Spawns a HTTP server per file, you don't need to worry about port numbers
        * The spawned HTTP servers are auto-managed, they kill themselves after a certain timeout or maximum number of requests
        * Support for QR code generation to assist mobile devices
        
        # Requirements
        * Python 2.x
        * Python Imaging and QR libraries (optional):
        ```
          pip install Pillow
          pip install pyqrcode
        ```
        
        # Installation
        Installing boat is easy, fire up your terminal, and execute the following commands in order:
        ```
          sudo wget https://raw.github.com/ashisha/boat/master/boat -O /usr/local/bin/boat
          sudo chmod +x /usr/local/bin/boat
        ```
        
        # PS
        * Tested on Mac and Linux (ArchLinux) with Python2.7 (pulls welcome)
        * Thank you!
        
        
Keywords: http,file,server,command line,cli
Platform: UNKNOWN
