You can edit almost every page by Creating an account. Otherwise, see the FAQ.

Spyce (software)

From EverybodyWiki Bios & Wiki


Spyce
Engine
    Website{{URL|example.com|optional display text}}

    Search Spyce (software) on Amazon.

    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.[1][2][3][4][5][6]

    Common Spyce embedding methods[edit]

    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 ([[ and ]])

    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):
       [[for x in xrange(3): { ]]
       <b>Hello, </b>
       [[} ]]
      

      or

       <% for x in xrange(3): { %>
       <b>Hello, </b>
       <% } %>
      
    3. Expressions evaluation
      <b>I am [[= 5*3 ]] 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[edit]

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

    Requirements[edit]

    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[edit]

    Some use of "" in your query was not closed by a matching "".Some use of "" in your query was not closed by a matching "".

    References[edit]

    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. Search this book on

    External links[edit]


    This article "Spyce (software)" is from Wikipedia. The list of its authors can be seen in its historical and/or the page Edithistory:Spyce (software). Articles copied from Draft Namespace on Wikipedia could be seen on the Draft Namespace of Wikipedia and not main one.

    Page kept on Wikipedia This page exists already on Wikipedia.