Metadata-Version: 2.1
Name: transfer.sh
Version: 2.0.0
Summary: Transfer.sh command line program, Now file sharing from the command line.
Home-page: https://github.com/MayankFawkes/transfer.sh
Author: Mayank Gupta
Author-email: mayankfawkes@gmail.com
License: MIT License
Project-URL: Documentation, https://github.com/MayankFawkes/transfer.sh/blob/master/README.md
Project-URL: Source, https://github.com/MayankFawkes/transfer.sh
Description: 
        [![banner](https://github.com/MayankFawkes/transfer.sh/raw/master/img/transfer.png)](https://github.com/MayankFawkes/transfer.sh)
        
        [![Publish to PyPI](https://github.com/MayankFawkes/transfer.sh/actions/workflows/pypi-publish.yml/badge.svg)](https://github.com/MayankFawkes/transfer.sh/actions/workflows/pypi-publish.yml)
        [![ver](https://img.shields.io/pypi/pyversions/transfer.sh)](https://pypi.org/project/transfer.sh/)
        [![lang](https://img.shields.io/github/languages/top/mayankfawkes/transfer.sh)](https://github.com/MayankFawkes/transfer.sh)
        [![status](https://img.shields.io/pypi/status/transfer.sh)](https://pypi.org/project/transfer.sh/)
        [![ver](https://img.shields.io/pypi/v/transfer.sh)](https://pypi.org/project/transfer.sh/)
        [![Downloads](https://pepy.tech/badge/transfer.sh/week)](https://pepy.tech/project/transfer-sh)
        
        # transfer.sh
        Transfer.sh command line program, Now file sharing from the command line.
        
        # Installation
        One command installation
        
        ## With Python
        run commands on terminal.
        
        ```
        $ pip install -U transfer.sh
        ```
        
        Have multipls versions of python?
        
        ```
        $ python3.x -m pip install -U transfer.sh
        ```
        ## Linux
        
        ### AMD64 
        ```
        $ curl --silent "https://api.github.com/repos/MayankFawkes/transfer.sh/releases/latest" | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/' | { tag=($(< /dev/stdin)); sudo curl -L "https://github.com/MayankFawkes/transfer.sh/releases/download/$tag/transfer-linux-amd64" -o /usr/local/bin/transfer; sudo chmod +x /usr/local/bin/transfer;}
        ```
        
        ### i386
        ```
        $ curl --silent "https://api.github.com/repos/MayankFawkes/transfer.sh/releases/latest" | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/' | { tag=($(< /dev/stdin)); sudo curl -L "https://github.com/MayankFawkes/transfer.sh/releases/download/$tag/transfer-linux-i386" -o /usr/local/bin/transfer; sudo chmod +x /usr/local/bin/transfer;}
        ```
        
        # CLI
        Command line help
        
        ## Upload file
        ```
        $ transfer upload file.txt
        ```
        ## Remove file
        ```
        $ transfer remove <uploaded file hash>
        ```
        ## List uploaded files
        ```
        $ transfer list --show
        ```
        
Keywords: upload,cli,transfer.sh
Platform: UNKNOWN
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Programming Language :: Python :: Implementation
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: License :: OSI Approved :: MIT License
Classifier: Development Status :: 5 - Production/Stable
Classifier: Topic :: System :: Networking
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Natural Language :: English
Classifier: Environment :: Plugins
Classifier: Environment :: Console
Classifier: Topic :: Terminals
Classifier: Topic :: Utilities
Requires-Python: >=3.6
Description-Content-Type: text/markdown
