disputio
clone your own copy | download snapshot

Snapshots | iceberg

Inside this repository

rce_wsgi.py
text/x-python

Download raw (300 bytes)

import bobo

import sys
import os

sys.dont_write_bytecode = True
rootpath = os.path.dirname(__file__)
dirs = ['', 'disputio']

for d in dirs:
    path = rootpath + d
    if path not in sys.path:
        sys.path.append(path)
        

application = bobo.Application(bobo_resources="disputio.routes")