Diff for "PythonRecipes"


Differences between revisions 3 and 4
Revision 3 as of 2007-09-07 12:37:34
Size: 672
Editor: ip24-252-57-14
Comment:
Revision 4 as of 2007-09-07 17:31:44
Size: 1584
Editor: 89
Comment: Created page
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
##master-page:Unknown-Page
##master-date:Unknown-Date
##acl MoinPagesEditorGroup:read,write,delete,revert All:read
#format wiki
#language en
'''''Note:''''' ''This page is still under construction, check back later.''
== Template for Help Pages ==
Python is a High-Level, Interpreted, Object Orianted Language, that was made for readability and simplicity. To learn more about Python, check out [https://help.ubuntu.com/community/WelcomeToPython?highlight=%28Python%29 WelcomeToPython]
#title Python Recipes
Line 10: Line 3:
=== Hello, World! ===
Here is a simple HelloWorld Program written using the GTK(The Gimp Toolkit). Code is explained at the bottom.
{{{
xxx
}}}
Python is a programming language which makes it easy to create anything from small, useful tools to full-sized applications. The good news is that Ubuntu has excellent support for Python right out of the box. The great news is that you can get started right away using the advice and sample code in these Python recipes!
Line 16: Line 5:
=== Display ===
xxx
The aim of these recipes is to provide examples of useful Python code which you can use to learn more about Python, and to provide code which you can use as ''building blocks'' for writing your own software. All of the example code is distributed under a free software license, so you can use it in your own projects.

[:WelcomeToPython:Welcome to Python]

== Graphical Applications ==

Most graphical software in Ubuntu uses GTK, the GIMP Tool''''''Kit. Python has excellent support for GTK through the PyGTK bindings.

 * [:PythonRecipes/HelloWorld:Hello World!] - The simplest graphical application you can write, Hello World is an easy-to-follow example of a graphical application
 * [:PythonRecipes/GTKBasics:GTK Basics] - Basic information on how GTK works and what all of the technical terms mean
 * [:PythonRecipes/WebBrowser:Simple Web Browser] - Thanks to the GtkMozEmbed widget, it's easy to write a simple web browser application

== Packaging and distribution ==

 * [:PythonRecipes/DebianPackage:Creating a Debian Package]
 * Publishing packages on Launchpad using your Personal Package Archive

== Documentation and other supporting material ==

 * Writing man pages
 * Writing a DocBook user guide

Python is a programming language which makes it easy to create anything from small, useful tools to full-sized applications. The good news is that Ubuntu has excellent support for Python right out of the box. The great news is that you can get started right away using the advice and sample code in these Python recipes!

The aim of these recipes is to provide examples of useful Python code which you can use to learn more about Python, and to provide code which you can use as building blocks for writing your own software. All of the example code is distributed under a free software license, so you can use it in your own projects.

[:WelcomeToPython:Welcome to Python]

Graphical Applications

Most graphical software in Ubuntu uses GTK, the GIMP ToolKit. Python has excellent support for GTK through the PyGTK bindings.

  • [:PythonRecipes/HelloWorld:Hello World!] - The simplest graphical application you can write, Hello World is an easy-to-follow example of a graphical application

  • [:PythonRecipes/GTKBasics:GTK Basics] - Basic information on how GTK works and what all of the technical terms mean

  • [:PythonRecipes/WebBrowser:Simple Web Browser] - Thanks to the GtkMozEmbed widget, it's easy to write a simple web browser application

Packaging and distribution

Documentation and other supporting material

  • Writing man pages
  • Writing a DocBook user guide

PythonRecipes (last edited 2012-07-05 14:27:51 by cpc3-nmal4-0-0-cust858)