Misplaced Pages

Spyce (software)

Article snapshot taken from Wikipedia with creative commons attribution-sharealike license. Give it a read and then ask your questions in the chat. We can research this topic together.
This article needs additional citations for verification. Please help improve this article by adding citations to reliable sources. Unsourced material may be challenged and removed.
Find sources: "Spyce" software – news · newspapers · books · scholar · JSTOR (May 2021) (Learn how and when to remove this message)
Websitespyce.sourceforge.net Edit this at Wikidata

Spyce is technology similar to PHP that can be used to embed Python code into webpages. Spyce is free software, distributed under a BSD-style licence, with some additional restrictions about documentation notices.

Common Spyce embedding methods

Since Python uses indentation to determine the beginning and end of a block, Spyce includes several ways to embed Python code. Shown below are the three most common ways. Spyce supports ASP/JSP-style delimiters (<% and %>) as well as double braces (])

  1. Python 'chunks' (multiple Python statements with traditional indentation):
    It's <b>[[\
    from time import asctime, localtime
    print(asctime(localtime()))
    ]]</b> right now!
    

    or

    It's <b><%\
    from time import asctime, localtime
    print(asctime(localtime()))
    %></b> right now!
    
  2. Individual statements within delimiters (indentation not required):
     ]
     <b>Hello, </b>
     ]
    

    or

     <% for x in xrange(3): { %>
     <b>Hello, </b>
     <% } %>
    
  3. Expressions evaluation
    <b>I am ] years old.</b>

    or

    <b>I am <%= 5*3 %> years old.</b>

The techniques above can be freely mixed and embedded in any HTML document.

Any legal Python code can be embedded and any Python module can be imported, which makes it especially suited for writing very robust applications (using exception handling and unit testing single modules individually).

Features

Some other features include custom tags (ala JSP), spyce lambdas and active handlers (reminiscent of ASP).

Requirements

Spyce brings Python's standard library and the programming language itself to the web. The minimum requirement is a working Python installation (it ships with a standalone web server written in Python that can be used during development), although it can be used in conjunction with several web servers such as Apache and IIS in a variety of ways.

Configuration is done using Python modules that are imported by the web server during initialization, so all that is really required to get started with Spyce is basic knowledge of Python.

See also

References

  1. Spyce - Python Server Pages (PSP)
  2. Petreley, Nicholas (2002-11-11). "PHP and Python Hit Prime Time". Computerworld. Retrieved 2021-10-03.
  3. "Release (#25976) - Spyce - Python Server Pages - OSDN". osdn.net. Retrieved 2021-10-03.
  4. "SPYCE - Python Server Pages". www.onworks.net. Retrieved 2021-10-03.
  5. "Spyce Development Tips and Techniques". Neotitans Technologies Inc. Retrieved 2021-10-03.
  6. Lutz, Mark; Ascher, David (2003-12-23). Learning Python. "O'Reilly Media, Inc.". ISBN 978-0-596-55193-3.

External links

Web frameworks
.NET
C++
ColdFusion
Common Lisp
Haskell
Java
JavaScript
Perl
PHP
Python
Ruby
Rust
Scala
Smalltalk
Other languages


Stub icon

This programming-language-related article is a stub. You can help Misplaced Pages by expanding it.

Categories: