Skip to main content

Web framework to create Dojo apps.

Project description

About 'pyojo' app development
-----------------------------

This is yet another framework to help develop web applicattions
with python. The difference is that it is oriented to create
applications with The Dojo Toolkit, trying to facilitate a set
of wrappers to generate the javascript sent to the client and
providing help to work with the AMD loader.

Pyojo provides decorators to set up the route map and assign
some functions or classes to certain URLs, but it also can be
used creating python modules in a folder structure, where the
name of the module defines the content type, and the returned
value of a function named GET, POST, PUT or DELETE is the
response.

The minimal "Hello World":

import pyojo
from pyojo import server

@pyojo.route("/")
def Home():
return "Hello World!"

server.main()


A basic example with javascript:

import pyojo

#Redirect to index.html
@pyojo.route("/")
def Home(request):
return request.static("index.html")

And then a couple of modules at ./srv (the default folder) will
handle this request:

srv/index_html.py:

def GET(request):
return '''<html>
<body><script src='main.js'></body>
</html>'''

srv/main_js.py:

def GET(request):
return "alert('Hello World!');"

But the real power is in the pyojo.js modules, offering a set
of code generation utilities for your Dojo application.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyojo-0.0.2.zip (203.4 kB view details)

Uploaded Source

Built Distribution

pyojo-0.0.2-py2.7.egg (229.7 kB view details)

Uploaded Egg

File details

Details for the file pyojo-0.0.2.zip.

File metadata

  • Download URL: pyojo-0.0.2.zip
  • Upload date:
  • Size: 203.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for pyojo-0.0.2.zip
Algorithm Hash digest
SHA256 9257563431d117cf3be4cb4dfa7976cc0cefaf70d465a2009e016b01ded631ac
MD5 3e71f11b899f5f2b8299ba1e32425585
BLAKE2b-256 522b6c3c6c2352b15054c3f3fbdfcaf0027ba6a9467aa8c931c98a1cf758e2ca

See more details on using hashes here.

File details

Details for the file pyojo-0.0.2-py2.7.egg.

File metadata

  • Download URL: pyojo-0.0.2-py2.7.egg
  • Upload date:
  • Size: 229.7 kB
  • Tags: Egg
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for pyojo-0.0.2-py2.7.egg
Algorithm Hash digest
SHA256 443b2d2ee5086e206ffd0ca489238220d5f18f044df451503a43acb151077934
MD5 71b726144f4b5d067fceca8ddef42f70
BLAKE2b-256 4c74c2d530d737b6ba3d8d0c2c4e3407430df9d55e59cfab1d3e0173469e3b4d

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page