Metadata-Version: 2.1
Name: oarepo_s3_cli
Version: 0.1.9
Summary: OArepo S3 upload client
Home-page: https://github.com/oarepo/oarepo_s3_cli
Author: Tomas Hlava
Author-email: hlava@cesnet.cz
License: MIT
Keywords: invenio oarepo s3 upload
Platform: any
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
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: Development Status :: 1 - Planning
Description-Content-Type: text/markdown
Provides-Extra: tests
Provides-Extra: all
License-File: LICENSE
License-File: AUTHORS.rst

# oarepo-s3-cli

[![][license_badge]][license]
[![][status_badge]][actions]
[![][pypi_badge]][pypi_url]

---
OARepo command-line upload client

## global options
 * -e, --endpoint `<url>` OARepo HTTPS endpoint e.g. https://repo.example.org (required)
 * -t, --token `<string>` upload auth token obtained from OARepo (required, can be alternatively specified in env.variable "TOKEN")
 * -d, debug (default: False)
 * -q, quiet (default: False)
 * -n, --noninteractive (default: False)
 * --help

## commands
  * upload ... upload file
  * resume ... resume interrupted upload
  * abort ... abort upload
  * check ... match sha256sum of local and uploaded file
  * revoke ... revoke supplied access token

### *upload* command options
   * -f, --file `<filepath>` file(s) for upload (repeatable, required)
   * -k, --key `<name>` object key in S3 (default: basename of file)
   * -p, --parallel `<integer>` (default: CPU count)

### *resume* command options
   * -k, --key `<name>` object key in S3 (default: basename of file)
   * -u, --uploadId `<string>` uploadId returned from upload  (required)
   * -f, --file `<filepath>` file for upload (required)
   * -p, --parallel `<integer>` number of parallel upload streams (default: CPU count)

### *abort* command options
   * -k, --key `<name>` object key in S3 (default: basename of file)
   * -u, --uploadId `<string>` uploadId returned from upload  (required)

### *check* command options
   * -f, --file `<filepath>` uploaded file for check (required)
   * -k, --key `<name>` object key of uploaded file in S3 (default: basename of file)

### *revoke* command options
   none

  [license_badge]: https://img.shields.io/github/license/oarepo/oarepo-s3-cli.svg "license badge"
  [license]: https://github.com/oarepo/oarepo-s3-cli/blob/master/LICENSE "license text"
  [status_badge]: https://github.com/oarepo/oarepo-s3-cli/actions/workflows/main.yml/badge.svg "status badge"
  [actions]: https://github.com/oarepo/oarepo-s3-cli/actions/ "actions"
  [pypi_badge]: https://img.shields.io/pypi/v/oarepo-s3-cli.svg "pypi badge"
  [pypi_url]: https://pypi.org/pypi/oarepo-s3-cli "pypi url"


..
    Copyright (C) 2021 CESNET.

    OARepo-S3-CLI is free software; you can redistribute it and/or
    modify it under the terms of the MIT License; see LICENSE file for more
    details.

Changes
=======

Version 0.1.0 (released TBD)
 - Initial public release.

Version 0.1.1
 - noninteractive mode added, resume call moved

Version 0.1.2
 - setuptools ver.limited
 - README.md
 - check command impl.
 - revoke command impl.
 - error messages changed

Version 0.1.3
 - CLI entry point added
 - exception handling changed

Version 0.1.4
 - added support for nr-test variant

Version 0.1.5
 - impl. --version option

Version 0.1.6
 - mon.timeout processing fixed
 - timer impl.

Version 0.1.7
 - check cmd optimized (chunk 8192, blake2b)

Version 0.1.8
 - check cmd paralelized

Version 0.1.9
 - nocheck flag impl.
 - etag multipart checksums supp.
 - presign req. grouping impl.
 - presign req. divided into batches



