alice1017 / coadlib

Console Application Development Library

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

coadlib - Console Application Development Library

Coadlib is a python library for develop console application.

Co nsole A pplication D evelopment Library

Application classes

Application

The base application class.

Supported encoding, IO, etc.

params

  • name - application name
  • desc - applicationi description
  • version - application version
  • padding - the width size from left side of terminal window to string area.
  • margin - the height size from top side of terminal window to string area.
  • encoding - application encoding. by default, the program decides encoding by your platform.

main methods

  • write(msg) - print message too stream with new line.
  • write_error(msg) - print error message to stream with new line.
  • write_usage() - generate usage message from application name, version, description, and print it.
  • exit(status) - exit application with status code.

InteractiveApplication

Inherited the application class, added new methods to input message from user.

params

The Application class params:

  • name
  • desc
  • version
  • padding
  • margin

new param:

  • suffix - the suffix letter placed after an input string.

main methods

  • input_console(msg, valuetype, validate=True) - display input console with suffix, supported validate.

InteractiveLoopApplication

The InteractiveLoopApplication provides a decorator for looping to function.

params

Parameters are same of InteractiveApplication class.

main methods

  • loop - The decorator

variables

  • app. STATUS__CONTINUE - Continue the loop when returns this var
  • app. STATUS__EXIT - Break the loop when returns this var

example

from coadlib.apps import InteractiveLoopApplication

app = InteractiveLoopApplication(
    name="calcuation program",
    desc="please input number, and return total.",
    version="1.0", padding=4, margin=3, suffix=" > "
)

app.total = 0


@app.loop
def main():

    response = app.input_console("number", int, validate=False)

    if response == "":
        app.write("total: {:,}".format(app.total))
        return app.STATUS_EXIT

    else:
        try:
            app.total += int(response)
            return app.STATUS_CONTINUE

        except:
            app.write_error("Error: incorrect data.")
            return app.STATUS_CONTINUE


if __name__ == "__main__":

    app.write_usage()
    main()

CHANGELOG

version 0.1.2

  • Changed app parametor from 'prefix' to 'suffix' in InteractiveApplication, and InteractiveLoopApplication.
  • Compliant with pep8

version 0.1.1

  • Package renamed: 'ConsoleADL' -> 'coadlib'
  • Use decorator in InteractiveLoopApplication.
  • Wroute README.md
  • To more easy import, the applications in app.py.

About

Console Application Development Library

License:MIT License


Languages

Language:Python 100.0%