Skip to main content

Swinf is a simple micro-framework for small web application and has no dependencies other than the Python Standard Liberaty.

It offers a built-in HTTP Server, and a simple route binding mechanism.

Commands

run command : swinf-admin.py startproject newproject and swinf will create a project directory.

Inside current project directory, there are a main.py and three subdirectories:

controller:

containing controllers.

view:

containing view template files.

subdirecties:

    static/: contains static files

    static/images: images here

    static/style: css files here

    static/script: js files here

    static/files: other static files here

model:

you can put your database controlling code here.

You can add some controllers in controller directory and run main.py, and it will work.

Template

Currently, swinf have a simple template engine called SimpleTemplate.

the tpl syntax follows below

<!-- in a tpl file -->

{%
# multiline code

def bold_wrapper(txt):
    return "<b>" + txt + "</b>"
endef
%}

%% # sigleline code
%% if name:
<h1> hello {{name}}!</h1>
%% else:
<h1> Hello World!</h1>
%% endif

<ul>
%% for i in range(100):
    <li>no: {{i}}</li>
%% endfor
</ul>

To use the template, you can use code like below:

from swinf.template import template
# pass tpl source
html = template("<h1>hello {{name}}", name='world')

# pass a tpl file
html = template(path='index.tpl', name='world')

Example

In swinf, there is no urls.py-like config file, instead, there are two simple route-config ways:

  • A Bottle.py like route binding mechanism

from swinf.swinf import run
from swinf.selector import route

# a simple controller
@route('/hello/:name')
def hello(name):
    return '<h1>Hello %s!</h1>' % name.title()

run(host='localhost', port=8080)
  • Much simpler route binding mechanism

# module1.py
from swinf.selector import handler

# --------- your code here -----------

@handler("GET")
def hello():
    return '<h1>Hello</h1>'

@handler("GET")
def world():
    return '<h1>World</h1>'

This will will automatically bind route /module1/hello to handler controller.module1.hello and /module1/world to handler controller.module1.world.

You don’t have to add routes manully.

Release files for swinf 0.0.5

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Built distribution (wheel)

Table of built distributions (wheels) for swinf 0.0.5
File Interpreter ABI Platform
swinf-0.0.5.tar.gz Details

Release files / swinf-0.0.5.tar.gz

Download URL swinf-0.0.5.tar.gz
Size 29.1 kB
Tags Source
SHA-256 checksum
How to use checksums
f963cf0ea0cca7265aeec72c17ca6487b0eb95c91fe9b7e4bef664f15b3f239f
BLAKE2b-256 checksum
How to use checksums
143acd456d0969c4982b522b3e07a11b3d168725b01e2f0d75d02912681ecfa7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release history Release notifications | RSS feed

This release

0.0.5 This release

1 release file

0.0.4

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page