<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.3.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>AjaxLine Books &#187; Python</title>
	<link>http://books.ajaxline.com</link>
	<description>WebProgramming books</description>
	<pubDate>Fri, 14 Dec 2007 19:06:03 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.1</generator>
	<language>en</language>
			<item>
		<title>Python Cookbook</title>
		<link>http://books.ajaxline.com/2007/12/07/python-cookbook/</link>
		<comments>http://books.ajaxline.com/2007/12/07/python-cookbook/#comments</comments>
		<pubDate>Fri, 07 Dec 2007 05:00:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://books.ajaxline.com/2007/12/07/python-cookbook/</guid>
		<description><![CDATA[Portable, powerful, and a breeze to use, Python is the popular open source object-oriented programming language used for both standalone programs and scripting applications. It is now being used by an increasing number of major organizations, including NASA and Google. Updated for Python 2.4, The Python Cookbook, 2nd Edition offers a wealth of useful code [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://books.ajaxline.com/wp-content/uploads/2007/12/pythoncookbook.thumbnail.jpg">Portable, powerful, and a breeze to use, Python is the popular open source object-oriented programming language used for both standalone programs and scripting applications. It is now being used by an increasing number of major organizations, including NASA and Google. Updated for Python 2.4, The Python Cookbook, 2nd Edition offers a wealth of useful code for all Python programmers, not just advanced practitioners. Like its predecessor, the new edition provides solutions to problems that Python programmers face everyday. It now includes over 200 recipes that range from simple tasks, such as working with dictionaries and list comprehensions, to complex tasks, such as monitoring a network and building a templating system. This revised version also includes new chapters on topics such as time, money, and metaprogramming. Here&#8217;s a list of additional topics covered:</p>
<p>    * Manipulating text<br />
    * Searching and sorting<br />
    * Working with files and the filesystem<br />
    * Object-oriented programming<br />
    * Dealing with threads and processes<br />
    * System administration<br />
    * Interacting with databases<br />
    * Creating user interfaces<br />
    * Network and web programming<br />
    * Processing XML<br />
    * Distributed programming<br />
    * Debugging and testing</p>
<p>Another advantage of The Python Cookbook, 2nd Edition is its trio of authors&#8211;three well-known Python programming experts, who are highly visible on email lists and in newsgroups, and speak often at Python conferences. With scores of practical examples and pertinent background information, The Python Cookbook, 2nd Edition is the one source you need if you&#8217;re looking to build efficient, flexible, scalable, and well-integrated systems.</p>
<p>Book Info<br />
A collection of problems, solutions, and practical examples written by Python programmers in the style of the popular Perl Cookbook. Anyone interested in Python programming will want this wealth of practical advice, snippets of code, and patterns of program design.</p>
]]></content:encoded>
			<wfw:commentRss>http://books.ajaxline.com/2007/12/07/python-cookbook/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Learning Python, 3rd Edition</title>
		<link>http://books.ajaxline.com/2007/12/07/learning-python-3rd-edition/</link>
		<comments>http://books.ajaxline.com/2007/12/07/learning-python-3rd-edition/#comments</comments>
		<pubDate>Fri, 07 Dec 2007 04:42:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://books.ajaxline.com/2007/12/07/learning-python-3rd-edition/</guid>
		<description><![CDATA[The authors of Learning Python show you enough essentials of the Python scripting language to enable you to begin solving problems right away, then reveal more powerful aspects of the language one at a time. This approach is sure to appeal to programmers and system administrators who have urgent problems and a preference for learning [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://books.ajaxline.com/wp-content/uploads/2007/12/learningpython.jpg">The authors of Learning Python show you enough essentials of the Python scripting language to enable you to begin solving problems right away, then reveal more powerful aspects of the language one at a time. This approach is sure to appeal to programmers and system administrators who have urgent problems and a preference for learning by semi-guided experimentation.</p>
<p>First off, Learning Python shows the relationships among Python scripts and their interpreter (in a mostly platform-neutral way). Then, the authors address the mechanics of the language itself, providing illustrations of how Python conceives of numbers, strings, and other objects as well as the operators you use to work with them. Dictionaries, lists, tuples, and other data structures specific to Python receive plenty of attention including complete examples.</p>
<p>Authors Mark Lutz and David Ascher build on that fundamental information in their discussions of functions and modules, which evolve into coverage of namespaces, classes, and the object-oriented aspects of Python programming. There&#8217;s also information on creating graphical user interfaces (GUIs) for Python applications with Tkinter.</p>
<p>In addition to its careful expository prose, Learning Python includes exercises that both test your Python skills and help reveal more elusive truths about the language. &#8211;This text refers to an out of print or unavailable edition of this title.</p>
<p>Book Description<br />
Portable, powerful, and a breeze to use, Python is ideal for both standalone programs and scripting applications. With this hands-on book, you can master the fundamentals of the core Python language quickly and efficiently, whether you&#8217;re new to programming or just new to Python. Once you finish, you will know enough about the language to use it in any application domain you choose.</p>
<p>Learning Python is based on material from author Mark Lutz&#8217;s popular training courses, which he&#8217;s taught over the past decade. Each chapter is a self-contained lesson that helps you thoroughly understand a key component of Python before you continue. Along with plenty of annotated examples, illustrations, and chapter summaries, every chapter also contains Brain Builder, a unique section with practical exercises and review quizzes that let you practice new skills and test your understanding as you go.</p>
<p>This book covers:</p>
<p>    * Types and Operations &#8212; Python&#8217;s major built-in object types in depth: numbers, lists, dictionaries, and more</p>
<p>    * Statements and Syntax &#8212; the code you type to create and process objects in Python, along with Python&#8217;s general syntax model</p>
<p>    * Functions &#8212; Python&#8217;s basic procedural tool for structuring and reusing code</p>
<p>    * Modules &#8212; packages of statements, functions, and other tools organized into larger components</p>
<p>    * Classes and OOP &#8212; Python&#8217;s optional object-oriented programming tool for structuring code for customization and reuse</p>
<p>    * Exceptions and Tools &#8212; exception handling model and statements, plus a look at development tools for writing larger programs</p>
<p>Learning Python gives you a deep and complete understanding of the language that will help you comprehend any application-level examples of Python that you later encounter. If you&#8217;re ready to discover what Google and YouTube see in Python, this book is the best way to get started.</p>
]]></content:encoded>
			<wfw:commentRss>http://books.ajaxline.com/2007/12/07/learning-python-3rd-edition/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Beginning Python: From Novice to Professional</title>
		<link>http://books.ajaxline.com/2006/04/05/beginning-python-from-novice-to-professional/</link>
		<comments>http://books.ajaxline.com/2006/04/05/beginning-python-from-novice-to-professional/#comments</comments>
		<pubDate>Wed, 05 Apr 2006 18:19:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Python]]></category>

		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://books.ajaxline.com/?p=29</guid>
		<description><![CDATA[ 
Beginning Python: From Novice to Professional by Magnus Lie Hetland
Publisher: Apress (September 26, 2005)
640 pages; Language: English; ISBN: 159059519X
Beginning Python: From Novice to Professional is the most comprehensive book on the Python ever written. Based on Practical Python, this newly revised book is both an introduction and practical reference for a swath of Python-related [...]]]></description>
			<content:encoded><![CDATA[<p align="center"><a id="more-148"> <img width="240" height="240" border="0" id="prodImage" alt="Beginning Python: From Novice to Professional (Beginning: From Novice to Professional)" src="http://images.amazon.com/images/P/159059519X.01._AA240_SCLZZZZZZZ_.jpg" /></a></p>
<p>Beginning Python: From Novice to Professional by Magnus Lie Hetland<br />
Publisher: Apress (September 26, 2005)<br />
640 pages; Language: English; ISBN: 159059519X</p>
<p>Beginning Python: From Novice to Professional is the most comprehensive book on the Python ever written. Based on Practical Python, this newly revised book is both an introduction and practical reference for a swath of Python-related programming topics, including addressing language internals, database integration, network programming, and web services. Advanced topics, such as extending Python and packaging/distributing Python applications, are also covered. Ten different projects illustrate the concepts introduced in the book. You will learn how to create a P2P file-sharing application and a web-based bulletin board, and how to remotely edit web-based documents and create games. Author Magnus Lie Hetland is an authority on Python and previously authored Practical Python. He also authored the popular online guide, Instant Python Hacking, on which both books are based. <a id="more-148" /></p>
<p><a id="more-148"> </a><a id="more-148"> </a> <a id="more-148"> </a><a id="more-148">Download: </a><a href="http://www.realcoding.net/knigi/down/index.php?act=view&#038;id=142">Beginning Python: From Novice to Professional</a> 6.22 Mb</p>
]]></content:encoded>
			<wfw:commentRss>http://books.ajaxline.com/2006/04/05/beginning-python-from-novice-to-professional/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
