Metadata-Version: 2.1
Name: galaxie-shell
Version: 0.2.2
Summary: Galaxie Shell is a autonomous shell ready for CI and low tech OS
Home-page: https://gitlab.com/Tuuux/galaxie-shell
Author: Tuuux
Author-email: tuxa@rtnp.org
License: GNU General Public License v3 or later (GPLv3+)
Project-URL: Read the Docs, https://galaxie-shell.readthedocs.io/
Project-URL: GitLab, https://gitlab.com/Tuuux/galaxie-shell
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Description-Content-Type: text/x-rst; charset=UTF-8
License-File: LICENSE

.. image:: https://codecov.io/gl/Tuuux/galaxie-shell/branch/master/graph/badge.svg?token=MK6WWGAL5M
   :target: https://codecov.io/gl/Tuuux/galaxie-shell

.. image:: https://readthedocs.org/projects/galaxie-shell/badge/?version=latest
   :target: https://galaxie-shell.readthedocs.io/en/latest/?badge=latest
   :alt: Documentation Status

GLXSH - Galaxie Shell
=====================

.. figure::  https://galaxie-shell.readthedocs.io/en/latest/_images/logo_galaxie.png
   :align:   center

Make you own thing !!!

Galaxie Shell is a Reliable Event Logging Protocol (`RELP <https://en.wikipedia.org/wiki/Reliable_Event_Logging_Protocol>`_) write with `python <https://www.python.org/>`_ based on top of `cmd2 <https://github.com/python-cmd2/cmd2>`_ it self build on top of python builtins `cmd <https://docs.python.org/3/library/cmd.html>`_.

The project provide a application class name ``GLXShell`` oriented unix SHELL. The goal is to permit everyone to start they own project around a SHELL as UI.

The Galaxie Shell use a plugin name ``builtins plugin`` it try to integrate python version of `GNU Core Utils <https://www.maizure.org/projects/decoded-gnu-coreutils/>`_ command's set.

Links
-----
  GitLab: https://gitlab.com/Tuuux/galaxie-shell/

  Read the Doc: https://galaxie-shell.readthedocs.io/

  PyPI: https://pypi.org/project/galaxie-shell/

  PyPI Test: https://test.pypi.org/project/galaxie-shell/

All ready implemented features
------------------------------
* History files respect the Freedesktop requirements
* All unknown command's are send to the sub shell system
* Capability to build a **one-file** static binary file
* Can load a script file as argument
* Can execute command from passing arguments
* Interactive shell when call without arguments
* Plugins Manager
* Builtins Plugin (arch, cat, cd, mkdir, pwd, rmdir, uname, which, etc ...)
* Permit to start you own project with the GLXShell class

Application
------------
* Use on front of a [Unikernel](https://fr.wikipedia.org/wiki/Unikernel)
* Use on front of a minimal `Alpine Linux <https://alpinelinux.org/>`_ or `OpenWrt <https://openwrt.org/>`_
* Simplify CI CD
* Project starter

Installation via pip
--------------------

.. code:: bash

    pip install galaxie-shell

Installation via pip (test)
---------------------------

.. code:: bash

    pip install -i https://test.pypi.org/simple/ galaxie-shell


Next Step:
----------

Now you can the start the **glxsh** entry point

.. code:: bash

  $> glxsh
  ******************************* GLXSHELL V0.2 *******************************


  GNU GENERAL PUBLIC LICENSE V3 OR LATER (GPLV3+)
  LOADER #1 SMP DEBIAN 4.19.146-1 (2020-09-17)
  EXEC (VENV) PYTHON 3.7.3
  31.36GB RAM SYSTEM
  18.29GB FREE
  NO HOLOTAPE FOUND
  LOAD PLUGINS(1): BUILTINS 0.2A

  (venv) user@host:~/galaxie-shell $
  >

or use the python package

.. code-block:: python

  #!/usr/bin/env python

  import os
  import sys
  import argparse

  from GLXShell.libs.shell import GLXShell

  def main(argv=None):
      """Run when invoked from the operating system shell"""

      glxsh_parser = argparse.ArgumentParser(description="Commands as arguments")
      glxsh_parser.add_argument(
          "command",
          nargs="?",
          help="optional commands or file to run, if no commands given, enter an interactive shell",
      )
      glxsh_parser.add_argument(
          "command_args",
          nargs=argparse.REMAINDER,
          help="if commands is not a file use optional arguments for commands",
      )

      args = glxsh_parser.parse_args(argv)

      shell = GLXShell()
      shell.name = "supershell"
      shell.version = "0.1a"
      shell.authors = ["authors1"]
      shell.license = "WTFPL v2 - https://en.wikipedia.org/wiki/WTFPL"
      shell.description = "SuperShell example"

      sys_exit_code = 0
      if args.command:
          if os.path.isfile(args.command):
              # we have file to execute
              shell.onecmd_plus_hooks("@{command}".format(command=args.command))
          else:
              # we have a commands, run it and then exit
              shell.onecmd_plus_hooks(
                  "{command} {args}".format(
                      command=args.command, args=" ".join(args.command_args)
                  )
              )

      else:
          # we have no commands, drop into interactive mode
          sys_exit_code = shell.cmdloop()

      return sys_exit_code


  if __name__ == "__main__":
      sys.exit(main())


Builtins Plugin implemented implemented command's
-------------------------------------------------
* arch
* `cat <https://galaxie-shell.readthedocs.io/en/latest/mans/cat.html>`_
* `cd <https://galaxie-shell.readthedocs.io/en/latest/mans/cd.html>`_
* mkdir
* `pwd <https://galaxie-shell.readthedocs.io/en/latest/mans/pwd.html>`_
* rmdir
* `sleep <https://galaxie-shell.readthedocs.io/en/latest/mans/sleep.html>`_
* uname
* which

Roadmap
-------
* implement the core util's
* plugins installation system based on pip
* permit **&&** and **||**
* deal with **env** and **export**
* deal with exit code
* better one-file binary distribution

