|
|
|
|
LEADER |
00000cam a2200000Ia 4500 |
001 |
OR_ocn599824079 |
003 |
OCoLC |
005 |
20231017213018.0 |
006 |
m o d |
007 |
cr unu|||||||| |
008 |
100405s2009 caua o 001 0 eng d |
010 |
|
|
|a 2009517713
|
040 |
|
|
|a UMI
|b eng
|e pn
|c UMI
|d CEF
|d OCLCQ
|d DEBSZ
|d N$T
|d OCLCQ
|d OCLCF
|d OCLCQ
|d IDEBK
|d OCLCO
|d YDXCP
|d EBLCP
|d OCLCO
|d OCLCQ
|d OCLCO
|d OCLCQ
|d OCLCO
|d FEM
|d OCLCQ
|d OCLCO
|d WYU
|d VT2
|d OCLCQ
|d LVT
|d CZL
|d UKBTH
|d OCLCO
|d OCLCQ
|d OCLCO
|
019 |
|
|
|a 773210032
|a 780424397
|a 968074503
|a 968993706
|a 1062930623
|a 1103264695
|a 1129361961
|a 1153018613
|a 1159616323
|a 1295596114
|a 1302267275
|
020 |
|
|
|a 9780596802462
|
020 |
|
|
|a 0596802463
|
020 |
|
|
|a 9780596551322
|q (electronic bk.)
|
020 |
|
|
|a 0596551320
|q (electronic bk.)
|
020 |
|
|
|a 9780596555801
|
020 |
|
|
|a 0596555806
|
020 |
|
|
|z 9780596800697
|q (pbk.)
|
020 |
|
|
|z 059680069X
|q (pbk.)
|
020 |
|
|
|a 1306814227
|
020 |
|
|
|a 9781306814225
|
024 |
8 |
|
|a 9780596802462
|
029 |
1 |
|
|a DEBSZ
|b 355422980
|
029 |
1 |
|
|a DEBSZ
|b 39627529X
|
029 |
1 |
|
|a AU@
|b 000062567569
|
035 |
|
|
|a (OCoLC)599824079
|z (OCoLC)773210032
|z (OCoLC)780424397
|z (OCoLC)968074503
|z (OCoLC)968993706
|z (OCoLC)1062930623
|z (OCoLC)1103264695
|z (OCoLC)1129361961
|z (OCoLC)1153018613
|z (OCoLC)1159616323
|z (OCoLC)1295596114
|z (OCoLC)1302267275
|
037 |
|
|
|a CL0500000062
|b Safari Books Online
|
050 |
|
4 |
|a TK5105.8885.G643
|b S48 2009
|
072 |
|
7 |
|a COM
|x 060160
|2 bisacsh
|
082 |
0 |
4 |
|a 006.7/6
|2 22
|
049 |
|
|
|a UAMI
|
100 |
1 |
|
|a Severance, Charles R.
|
245 |
1 |
0 |
|a Using Google App Engine /
|c Charles Severance.
|
246 |
3 |
0 |
|a Google App Engine
|
250 |
|
|
|a 1st ed.
|
260 |
|
|
|a [Sebastopol, Calif.] :
|b [O'Reilly],
|c [2009]
|
300 |
|
|
|a 1 online resource (xviii, 241 pages) :
|b illustrations
|
336 |
|
|
|a text
|b txt
|2 rdacontent
|
337 |
|
|
|a computer
|b c
|2 rdamedia
|
338 |
|
|
|a online resource
|b cr
|2 rdacarrier
|
347 |
|
|
|a text file
|2 rda
|
588 |
0 |
|
|a Print version record.
|
505 |
0 |
|
|a Table of Contents; Preface; Who Should Read This Book?; What's in This Book?; Teaching with This Book; Conventions Used in This Book; Using Code Examples; Safari® Books Online; Comments and Questions; Acknowledgments; Chapter 1. Programming on the Web; The Request/Response Cycle; What Is Google App Engine?; What Is a "Cloud"?; Why Did Google Build App Engine and Give It Away for Free?; What Is the Google Infrastructure Cloud?; Enter the Application Engine; Your Application Must Be a Good Citizen in the Google Cloud; How the Cloud Runs Your Application; Why You Really Want to Run in the Cloud.
|
505 |
8 |
|
|a The Simplest App Engine ApplicationSummary; Exercises; Chapter 2. HTML and CSS; A Brief History of HTML and CSS; HyperText Markup Language (HTML); A Well-Formed HTML Document; Validating Your HTML; HyperText Links (Anchor Tags); Multiple Files; Lists in HTML; Specifying Styles Using CSS; Styling Tags with CSS; Exerting More Control over Markup; Validating CSS; Tools to Help You Work with CSS; Building the Navigation Menu; The CSS Box Model; Adding Navigation Hints for Users; Summary; Exercises; Chapter 3. Python; What Is Programming?; About Python; Installing Python.
|
505 |
8 |
|
|a The Essence of ProgrammingInput, Processing, and Output; Conditional Steps: A Number-Guessing Web Application; Variables and Expressions; Naming Variables; Constants; Handling Text Data Using Strings; Using the String Library; Types and Conversion; Variables with Many Values at the Same Time: Lists; Repeated Code: Loops; Python's Backpack: Dictionaries; Looping Through a Dictionary; Stored and Reused Code: Python Functions; Turning Traceback to Our Advantage Using Try and Except; Object-Oriented Python; Comments in Python; The Tao of Programming; Summary; Exercises.
|
505 |
8 |
|
|a Chapter 4. Sending Data to Your ApplicationMaking an HTTP Request; Hacking the HTTP Protocol; The HTTP Protocol Standards; Watching HTTP in Action; HTML: Building a Form; Sending Form Data to the Server Using POST; Handling Form Data in the App Engine Server; Sending Form Data to the Server Using GET; App Engine Log; Looking at All the Data Available on an HTTP Request; Advanced: Multipart POST Data with File Upload; Summary; Exercises; Chapter 5. The App Engine webapp Framework; A Trivial App Engine Application; An Equivalent Trivial webapp Application; The Handler Callback Pattern.
|
505 |
8 |
|
|a Looking at the Handler CodeWhat Is "self" and Why Is It There?; Number Guessing Using the webapp Framework; Web Server Logs; Summary; Exercises; Chapter 6. Templates; Template Syntax; Using the Templates from Python; The Number-Guessing Game Using Templates; Abstraction and Separation of Concerns: "Model View Controller"; Building a Multiscreen Application; Static Files in App Engine; Referencing Static Files; Generalizing Template Lookup with Multiple Templates; Extending Base Templates; Conditional Processing Templates; Replacing More Than One Block in the Base Template.
|
520 |
|
|
|a Build exciting, scalable web applications quickly and confidently using Google App Engine and this book, even if you have little or no experience in programming or web development. App Engine is perhaps the most appealing web technology to appear in the last year, providing an easy-to-use application framework with basic web tools. While Google's own tutorial assumes significant experience, Using Google App Engine will help anyone get started with this platform. By the end of this book, you'll know how to build complete, interactive applications and deploy them to the cloud using the same serv.
|
542 |
|
|
|f Copyright © O'Reilly Media, Inc.
|g 2009
|
546 |
|
|
|a English.
|
590 |
|
|
|a O'Reilly
|b O'Reilly Online Learning: Academic/Public Library Edition
|
630 |
0 |
0 |
|a Google Apps.
|
630 |
0 |
0 |
|a Google.
|
630 |
0 |
7 |
|a Google Apps.
|2 blmlsh
|
630 |
0 |
7 |
|a Google.
|2 blmlsh
|
630 |
0 |
7 |
|a Google
|2 fast
|
630 |
0 |
7 |
|a Google Apps
|2 fast
|
650 |
|
0 |
|a Application software.
|
650 |
|
0 |
|a Web site development
|x Computer programs.
|
650 |
|
0 |
|a HTML (Document markup language)
|
650 |
|
0 |
|a Cascading style sheets.
|
650 |
|
0 |
|a Python (Computer program language)
|
650 |
|
0 |
|a Web sites
|x Authoring programs.
|
650 |
|
6 |
|a Logiciels d'application.
|
650 |
|
6 |
|a Feuilles de style en cascade.
|
650 |
|
6 |
|a HTML (Langage de balisage)
|
650 |
|
6 |
|a Python (Langage de programmation)
|
650 |
|
6 |
|a Sites Web
|x Systèmes-auteur.
|
650 |
|
7 |
|a HTML.
|2 aat
|
650 |
|
7 |
|a COMPUTERS
|x Web
|x Web Programming.
|2 bisacsh
|
650 |
|
7 |
|a Application software.
|2 blmlsh
|
650 |
|
7 |
|a Web site development
|x Computer programs.
|2 blmlsh
|
650 |
|
7 |
|a HTML (Document markup language)
|2 blmlsh
|
650 |
|
7 |
|a Cascading style sheets.
|2 blmlsh
|
650 |
|
7 |
|a Python (Computer program language)
|2 blmlsh
|
650 |
|
7 |
|a Application software
|2 fast
|
650 |
|
7 |
|a Cascading style sheets
|2 fast
|
650 |
|
7 |
|a HTML (Document markup language)
|2 fast
|
650 |
|
7 |
|a Python (Computer program language)
|2 fast
|
650 |
|
7 |
|a Web site development
|x Computer programs
|2 fast
|
776 |
0 |
8 |
|i Print version: Severance, Charles R.
|t Using Google App Engine.
|d [Sebastopol, Calif.] :
|b O'Reilly,
|c [©2009]
|z 9780596800697
|w (OCoLC)465693965
|
856 |
4 |
0 |
|u https://learning.oreilly.com/library/view/~/9780596802462/?ar
|z Texto completo (Requiere registro previo con correo institucional)
|
938 |
|
|
|a ProQuest Ebook Central
|b EBLB
|n EBL443470
|
938 |
|
|
|a EBSCOhost
|b EBSC
|n 414956
|
938 |
|
|
|a ProQuest MyiLibrary Digital eBook Collection
|b IDEB
|n cis28418063
|
938 |
|
|
|a YBP Library Services
|b YANK
|n 7407950
|
938 |
|
|
|a YBP Library Services
|b YANK
|n 7488844
|
994 |
|
|
|a 92
|b IZTAP
|