An Extendable Python Web Framework
Project description
- What is Axe?
Axe is an extremely extendable web framework for Python based on `Werkzeug`.
It help developer keep project easy to extend and test when project grows.
Unlike Flask, there is no **Thread-Local** variables like `flask.request`, `flask.g`.
All variable are injected into view function through function name inspired by `py.test fixture`.
**Warning**: It's still experimental and has many buggy.
- Example
from axe import Axe
import os
app = Axe()
@app.ext
def config():
return {'system': os.name}
def index(config):
return config.get('system', 'Unknown')
app.build({'/': index})
if __name__ == '__main__':
app.run_simple()
- Where can I get help?
You can ask any question in [Github Issue](https://github.com/soasme/axe/issues) :)
Read documentation here: http://axe.rtfd.org
Axe is an extremely extendable web framework for Python based on `Werkzeug`.
It help developer keep project easy to extend and test when project grows.
Unlike Flask, there is no **Thread-Local** variables like `flask.request`, `flask.g`.
All variable are injected into view function through function name inspired by `py.test fixture`.
**Warning**: It's still experimental and has many buggy.
- Example
from axe import Axe
import os
app = Axe()
@app.ext
def config():
return {'system': os.name}
def index(config):
return config.get('system', 'Unknown')
app.build({'/': index})
if __name__ == '__main__':
app.run_simple()
- Where can I get help?
You can ask any question in [Github Issue](https://github.com/soasme/axe/issues) :)
Read documentation here: http://axe.rtfd.org
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Axe-0.0.4.tar.gz
(3.7 kB
view details)
File details
Details for the file Axe-0.0.4.tar.gz
.
File metadata
- Download URL: Axe-0.0.4.tar.gz
- Upload date:
- Size: 3.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 462fa22792f2c0709b69f6a2f4804ab60ef2e73f38f5cd18057893f7967fd1b6 |
|
MD5 | 6c6e403f2c5c51abafdd430be8ccf843 |
|
BLAKE2b-256 | 9b8c2ffdfe1f6094b1d01d76b3649a9a32ee0f82a8bcbfc9d0a41cd3b0eef160 |