Skip to content

Latest commit

 

History

History
32 lines (26 loc) · 825 Bytes

README.md

File metadata and controls

32 lines (26 loc) · 825 Bytes

Keystone Is...

  • An easy-to learn Python web framework
  • That puts templates first
  • That builds on high quality components
  • That will only take minutes to learn
  • That encourages best practices

Keystone in 30 seconds or less

$ mkdir helloworld
$ cat << EOF > helloworld/index.ks
name = 'World'
----
<!doctype html>
<html>
  <head>
    <title>Welcome to Keystone</title>
  </head>
  <body>
    <p>Hello, {{name}}</p>
  </body>
</html>
EOF
$ keystone helloworld
$ open http://localhost:5000/

helloworld.png


Build Status