Metadata-Version: 2.1
Name: grsched
Version: 0.0.2
Summary: DESCRIPTION
Home-page: https://github.com/thombashi/grsched
Author: Tsuyoshi Hombashi
Author-email: tsuyoshi.hombashi@gmail.com
License: MIT License
Project-URL: Documentation, https://grsched.rtfd.io/
Project-URL: Source, https://github.com/thombashi/grsched
Project-URL: Tracker, https://github.com/thombashi/grsched/issues
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Information Technology
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
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: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Terminals
Requires-Python: >=3.5
Description-Content-Type: text/x-rst
Requires-Dist: appconfigpy (<2,>=1.0.1)
Requires-Dist: click (<8,>=6.2)
Requires-Dist: DateTimeRange (<2,>=1.0.0)
Requires-Dist: envinfopy (<1,>=0.0.3)
Requires-Dist: loguru (<1,>=0.4.1)
Requires-Dist: pytablewriter (<1,>=0.58.0)
Requires-Dist: pytablewriter-altrow-theme (<1,>=0.0.2)
Requires-Dist: retryrequests (<1,>=0.0.2)
Requires-Dist: tcolorpy (<1,>=0.0.8)
Provides-Extra: test
Requires-Dist: pytest (>=6.0.1) ; extra == 'test'
Requires-Dist: pytest-md-report (>=0.1) ; extra == 'test'
Requires-Dist: subprocrunner (<2,>=1.2.1) ; extra == 'test'

.. contents:: **grsched**
   :backlinks: top
   :depth: 2


Summary
============================================
.. image:: https://badge.fury.io/py/grsched.svg
    :target: https://badge.fury.io/py/grsched
    :alt: PyPI package version

.. image:: https://img.shields.io/pypi/pyversions/grsched.svg
    :target: https://pypi.org/project/grsched
    :alt: Supported Python versions

.. image:: https://img.shields.io/pypi/implementation/grsched.svg
    :target: https://pypi.org/project/grsched
    :alt: Supported Python implementations

.. image:: https://github.com/thombashi/grsched/workflows/Tests/badge.svg
    :target: https://github.com/thombashi/grsched/actions?query=workflow%3ATests
    :alt: Linux/macOS/Windows CI status


A tool to show Garoon schedule at terminals.


Installation
============================================
::

    pip install grsched


Usage
============================================

::

    $ grsched configure
    subdomain []: <input>
    basic auth info (base64 encoded 'login-name:passowrd'): <input>
    $ grsched events
    ...
    $ grsched show next
    ...


Command help
----------------------------
::

    Usage: grsched [OPTIONS] COMMAND [ARGS]...

      common cmd help

    Options:
      --version      Show the version and exit.
      --debug        For debug print.
      -q, --quiet    Suppress execution log messages.
      -v, --verbose
      -h, --help     Show this message and exit.

    Commands:
      configure  Setup configurations of the tool.
      events     List events.
      show       Show specific event(s).
      users      List users.
      version    Show version information

::

    Usage: grsched events [OPTIONS]

      List events.

    Options:
      --user USER_ID    user id of the target. defaults to the login user.
      --since DATETIME  datetime.
      -h, --help        Show this message and exit.

      Issue tracker: https://github.com/thombashi/grsched/issues

::

    Usage: grsched show [OPTIONS] [EVENT_IDS]...

      Show specific event(s). EVENT_IDS must be space-separated IDs of events to
      be shown. You can also use a special specifier "next" to show the next
      upcoming event.

    Options:
      --user USER_ID  user id of the target. defaults to the login user.
      -h, --help      Show this message and exit.

      Issue tracker: https://github.com/thombashi/grsched/issues


Dependencies
============================================
- Python 3.5+
- `Python package dependencies (automatically installed) <https://github.com/thombashi/grsched/network/dependencies>`__


