Skip to main content

A simple way to link strings to functions

Project description

String-routing

Connect strings to functions. Best usage with input commands.

Usage

import route

sr = route.StringRouter()  # Construct the string router

@sr.route("login")
def login():
    print("Running login...")

To run the login function with the command:

command = input("Command: ") # Input command for example
sr.trigger(command) # <- will run the command if it has a link
Command: login

Running login...

Typing:

print(sr)

Will ouput:

{'login': <function login at 0xPOINTER>}

For each of the links connected

Supported by

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