Skip to main content

The lean workflow automation framework for machines with heart

Project description

joeflow

The lean workflow automation framework for machines with heart.

a hand drawn robot

Joeflow is a free workflow automation framework designed to bring simplicity to complex workflows. Joeflow written in Python based on the world famous Django web framework.

Here is a little sample of what a process written in joeflow may look like:

class WelcomeProcess(Process):
    user = models.ForeignKey(
        settings.AUTH_USER_MODEL,
        on_delete=models.CASCADE,
        blank=True, null=True,
    )

    start = tasks.StartView(fields=['user'])

    def has_user(self, task):
        if self.user_id is None:
            return []
        else:
            return [self.send_welcome_email]

    def send_welcome_email(self, task):
        self.user.email_user(
            subject='Welcome',
            message='Hello %s!' % self.user.get_short_name(),
        )

    edges = (
        (start, has_user),
        (has_user, send_welcome_email),
    )

Design Principles

Common sense is better than convention

Joeflow does not follow any academic modeling notation developed by a poor PhD student who actually never worked a day in their life. Businesses are already complex which is why Joeflow is rather simple. There are only two types of tasks – human & machine – as well as edges to connect them. It’s so simple a toddler (or your CEO) could design a workflow.

Lean Automation (breaking the rules)

Things don’t always go according to plan especially when humans are involved. Even the best workflow can’t cover all possible edge cases. Joeflow embraces that fact. It allows uses to interrupt a process at any given point and modify it’s current state. All while tracking all changes. This allows developers to automate the main cases and users handle manually exceptions. This allows you businesses to ship prototypes and MVPs of workflows. Improvements can be shipped in multiple iterations without disrupting the business.

People

Joeflow is build with all users in mind. Managers should be able to develop better processes. Users should able to interact with the tasks every single day. And developers should be able to rapidly develop and test new features.

Free

Joeflow is open source and collaboratively developed by industry leaders in automation and digital innovation.

Photo by rawpixel.com from Pexels

Download files

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

Source Distribution

joeflow-0.2.0.tar.gz (122.3 kB view details)

Uploaded Source

Built Distribution

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

joeflow-0.2.0-py2.py3-none-any.whl (19.0 kB view details)

Uploaded Python 2Python 3

File details

Details for the file joeflow-0.2.0.tar.gz.

File metadata

  • Download URL: joeflow-0.2.0.tar.gz
  • Upload date:
  • Size: 122.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for joeflow-0.2.0.tar.gz
Algorithm Hash digest
SHA256 864c85685221ff565c6bb1060512cea9bff3ad35097ec168a028f865b13ef260
MD5 d1c907a7c127ac4943bd4e4bbc53b7d8
BLAKE2b-256 e8eb53b3083058329f50895061fd187815e36703c5264ab33a66c23e554a6643

See more details on using hashes here.

File details

Details for the file joeflow-0.2.0-py2.py3-none-any.whl.

File metadata

  • Download URL: joeflow-0.2.0-py2.py3-none-any.whl
  • Upload date:
  • Size: 19.0 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for joeflow-0.2.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 69ed0faa51801ed5ffaaa44abc7938f69ddffde10f4c93cf19c96c62d0358ee4
MD5 da95f3e610357b14f981ae31bed843fb
BLAKE2b-256 5fcad31e57ae881c6a1f2704d749b7702b0f9c223bdd8dc7634020dd3e045578

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