Metadata-Version: 1.0
Name: attachi
Version: 0.2.0
Summary: Small attachment helper script for openBIS registration.
Home-page: UNKNOWN
Author: Andreas Friedrich
Author-email: andreas.friedrich@uni-tuebingen.de
License: MIT License

Copyright (c) 2018 QBiC

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Description: # Attachi
        [![Language](https://img.shields.io/github/languages/top/qbicsoftware/attachi-cli.svg)](https://img.shields.io/github/languages/top/qbicsoftware/attachi-cli.svg)
        [![Build Status](https://travis-ci.org/qbicsoftware/attachi-cli.svg?branch=master)](https://travis-ci.org/qbicsoftware/attachi-cli)
        [![Python 3.5](https://img.shields.io/badge/python-3.5-blue.svg)](https://www.python.org/downloads/release/python-350/)
        [![Python 3.6](https://img.shields.io/badge/python-3.6-blue.svg)](https://www.python.org/downloads/release/python-360/)
        
        
        A small helper script, that creates the folder structure needed to register files as attachment to openBIS.
        
        ## Installation
        
        ### Stable release from PyPi:
        
        ``pip install attachi``
        
        ### Current master branch:
        
        ``pip install git+https://github.com/qbicsoftware/attachi-cli``
        
        or from a specific branch:
        
        ``pip install git+https://github.com/qbicsoftware/attachi-cli@<branch>``
        
        ## Run
        
        ```pyhton
        > attachi --help
        Usage: attachi [OPTIONS] PROJECTID FILE COMMENT
        
          Attachi - A helper tool that prepares attachments for openBIS registration
        
        Options:
          -t, --atype TYPE   Type of attachment: Information or Results (default)
          -u, --user ID      Username shown in openbis as uploader
          -o, --outdir PATH  Output folder path
          --version          Show the version and exit.
          --help             Show this message and exit.
        
        # Example
        
        Creating the folder structure for an upload:
        
        ```python
        
        attachi -u myusername QABCD README.md "this is a test for uploading the readme file"
        
        #--> folder QABCD000AQ_20180627102707758164 is created
        ```
        
        Use tar and dync to upload the file to openBIS:
        
        ```bash
        tar -c QABCD000AQ_20180627102707758164 | dync -n QABCD000AQ_20180627102707758164.tar -k untar:True data.qbic.uni-tuebingen.de
        ```
        
Keywords: openbis,attachment
Platform: UNKNOWN
