my eye

__init__.py

Raw

"""
Tools for a metamodern web environment.

## User agent tools

Simple interface, simple automate.

## Web application framework

Simple interface, simple deploy.

"""

import sys

if len(sys.argv) > 1 and sys.argv[1] != "run":
    from gevent import monkey

    monkey.patch_all()

import mf
from dns import resolver as dns
from webagt import ConnectionError, get

from . import host
from .framework import *  # noqa
from .markdown import render as mkdn
from .response import Status  # noqa
from .response import (
    OK,
    Accepted,
    BadRequest,
    Conflict,
    Created,
    Forbidden,
    Found,
    Gone,
    MethodNotAllowed,
    MovedPermanently,
    MultiStatus,
    NoContent,
    NotFound,
    PermanentRedirect,
    SeeOther,
    Unauthorized,
)
from .templating import template, templates

__all__ = [
    "mf",
    "dns",
    "mkdn",
    "get",
    "ConnectionError",
    "template",
    "templates",
    "OK",
    "Accepted",
    "BadRequest",
    "Conflict",
    "Created",
    "Forbidden",
    "Found",
    "Gone",
    "MethodNotAllowed",
    "MultiStatus",
    "NoContent",
    "NotFound",
    "PermanentRedirect",
    "SeeOther",
    "Unauthorized",
]


abba = application("foobar")


@abba.control("")
class Front:
    def get(self):
        return "fnord"