Skip to main content

A python application framework

Project description

jaraf


Just another rakish application framework.

Overview


JARAF is an application framework, which just just a fancy name for a collection of python code that can help jumpstart the development of command-line tools and applications, providing a developer is willing to follow a few rules and conventions to use the framework.

The framework itself is fairly straighforward to use. An application will inherit from a base application class named jaraf.App and implement one required method (jaraf.App.main()). From there, the application can optionally implement a number of other prescribed methods to set up and customize itself. For example, an application that needs custom command-line arguments will implement the jaraf.App.add_arguments() and jaraf.App.process_arguments() methods.

A lot of simple applications will probably only ever need the jaraf.App class, but for more complex applications, additional features are provided through mixin classes.

Application Base Class


The application base class, jaraf.App, is a virtual base class that must be inherited by an application in order to use the framework. It provides some basic features useful to most command-line applications. This includes exception handling to prevent an application from abruptly exiting, a best-effort exit code, logging methods, and built-in command-line arguments to set various parameters.

It has one virtual method named :meth:jaraf.App.main() that must be implemented. A minimalist application need only implement this one method to use the framework. However, there are other virtual methods that can be implemented and public methods that can be overloaded that enable developers to further customize an application.

Here's the obligatory starting example:

from jaraf import App

class HelloWorldApp(App):
    def main(self):
        self.log.info("Hello, World!")
        raise RuntimeError("Aaand goodbye...")

if __name__ == "__main__":
    app = HelloWorldApp()
    app.run()

When saved to file named hello_world.py and run, it will print something like the following output to the terminal::

2018-04-10 22:00:10,379 INFO ---------------------------------------------------------------
2018-04-10 22:00:10,379 INFO STARTING hello_world.py
2018-04-10 22:00:10,379 INFO Hello, World!
2018-04-10 22:00:10,379 ERROR Unhandled exception: Aaand goodbye...
2018-04-10 22:00:10,379 ERROR > Traceback (most recent call last):
2018-04-10 22:00:10,379 ERROR >   File "/lib/python/jaraf/app/__init__.py", line 218, in run
2018-04-10 22:00:10,379 ERROR >     self.main()
2018-04-10 22:00:10,379 ERROR >   File "./hello_world.py", line 5, in main
2018-04-10 22:00:10,379 ERROR >     raise RuntimeError("Aaand goodbye...")
2018-04-10 22:00:10,379 ERROR > RuntimeError: Aaand goodbye...
2018-04-10 22:00:10,379 INFO FINISHED hello_world.py
2018-04-10 22:00:10,379 INFO - Exit status: 1

It's an underwhelming example to be sure, but for a few lines of code, we get a timestamped output format (even the stack trace is properly formatted) and logged callouts for the start, finish and exit status of our applications. Plus if you bring up the help text with hello_world.py -h, you'll see a handful of options that were automatically added to our application.

Mixins


Mixins provide additional functionality to an application through multiple inheritance with each mixin class usually providing just a narrow feature set. The philosophy here is that applications should not be bloated by code that is never going to be run. Instead, an application should be able to selectively load just the functionality it needs.

For example, to add support for logging to a file, an application class could be defined like so:

from jaraf import App
from jaraf.mixin.cron import CronMixin
from jaraf.mixin.logfile import LogfileMixin

class HelloWorldApp(LogfileMixin, App):
    # Class definition follows...

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

jaraf-0.2.1.tar.gz (11.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

jaraf-0.2.1-py3-none-any.whl (12.7 kB view details)

Uploaded Python 3

File details

Details for the file jaraf-0.2.1.tar.gz.

File metadata

  • Download URL: jaraf-0.2.1.tar.gz
  • Upload date:
  • Size: 11.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.1.1 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.5

File hashes

Hashes for jaraf-0.2.1.tar.gz
Algorithm Hash digest
SHA256 c985f10bd5cbc718831f4d43ce29f6c47f138e157b24af5a81883ab65eba21a8
MD5 c4f85c4b490e0303bffbd286a5da5c03
BLAKE2b-256 356ff591fa8134c0838abae88d4a53beefc6364cf73da09d00c160c4b6821ee1

See more details on using hashes here.

File details

Details for the file jaraf-0.2.1-py3-none-any.whl.

File metadata

  • Download URL: jaraf-0.2.1-py3-none-any.whl
  • Upload date:
  • Size: 12.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.1.1 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.5

File hashes

Hashes for jaraf-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 c257b7f2fcdefc7aaaa0e33446cf3c3940361fda4bf087fb13c7a81424cae3df
MD5 6209b1348a33f86c5a0eb27ab88f7b4b
BLAKE2b-256 5c10986072a6434419cbadc0c3e0e11e3a3560e18c4770403a9dd978f09dd877

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page