Python Standard Library is an essential guide for serious Python programmers. Python is a modular language that imports most useful operations from the standard library (basic support modules; operating system interfaces; network protocols; file formats; data conversions; threads and processes; and data storage). You can't really program in Python without using it. In this book, author Fredrik Lundh, creator of the Python Imaging Library (PIL), delivers tested, accurate documentation of all the modules in the Python Standard Library, along with over 300 annotated example scripts using the modules.Python Standard Library renders this valuable information in a clean, easy-to-read format, yet doesn't talk down to readers. This accurate and complete reference documentation is for the Python programmer who wants the facts and little else.The book is based on the author's work with the Python newsgroup: he reviewed more than 2500 questions and answers to that newsgroup in order to make sure the book covered what Python users really wanted to know. An earlier version of this book has been available electronically for over a year, so the material has been tested by Python programmers in real-life applications.This version of Python Standard Library covers all the new modules and related information for Python 2.0, the first new major release of Python in four years.
Le informazioni nella sezione "Riassunto" possono far riferimento a edizioni diverse di questo titolo.
Fredrik Lundh is a principal of Secret Labs, Inc., the creators of PythonWorks, an integrated development environment (IDE) for Python. He is an expert on the use of Python with images and graphics and is also the creator of the Python Imaging Library (PIL). He is an active member of the Python community and a frequent contributor to the Python newsgroups.
Preface; About This Book; Conventions Used in This Book; About the Examples; How to Contact Us; Chapter 1: Core Modules; 1.1 Introduction; 1.2 The _ _builtin_ _ Module; 1.3 The exceptions Module; 1.4 The os Module; 1.5 The os.path Module; 1.6 The stat Module; 1.7 The string Module; 1.8 The re Module; 1.9 The math Module; 1.10 The cmath Module; 1.11 The operator Module; 1.12 The copy Module; 1.13 The sys Module; 1.14 The atexit Module; 1.15 The time Module; 1.16 The types Module; 1.17 The gc Module; Chapter 2: More Standard Modules; 2.1 Overview; 2.2 The fileinput Module; 2.3 The shutil Module; 2.4 The tempfile Module; 2.5 The StringIO Module; 2.6 The cStringIO Module; 2.7 The mmap Module; 2.8 The UserDict Module; 2.9 The UserList Module; 2.10 The UserString Module; 2.11 The traceback Module; 2.12 The errno Module; 2.13 The getopt Module; 2.14 The getpass Module; 2.15 The glob Module; 2.16 The fnmatch Module; 2.17 The random Module; 2.18 The whrandom Module; 2.19 The md5 Module; 2.20 The sha Module; 2.21 The crypt Module; 2.22 The rotor Module; 2.23 The zlib Module; 2.24 The code Module; Chapter 3: Threads and Processes; 3.1 Overview; 3.2 The threading Module; 3.3 The Queue Module; 3.4 The thread Module; 3.5 The commands Module; 3.6 The pipes Module; 3.7 The popen2 Module; 3.8 The signal Module; Chapter 4: Data Representation; 4.1 Overview; 4.2 The array Module; 4.3 The struct Module; 4.4 The xdrlib Module; 4.5 The marshal Module; 4.6 The pickle Module; 4.7 The cPickle Module; 4.8 The copy_reg Module; 4.9 The pprint Module; 4.10 The repr Module; 4.11 The base64 Module; 4.12 The binhex Module; 4.13 The quopri Module; 4.14 The uu Module; 4.15 The binascii Module; Chapter 5: File Formats; 5.1 Overview; 5.2 The xmllib Module; 5.3 The xml.parsers.expat Module; 5.4 The sgmllib Module; 5.5 The htmllib Module; 5.6 The htmlentitydefs Module; 5.7 The formatter Module; 5.8 The ConfigParser Module; 5.9 The netrc Module; 5.10 The shlex Module; 5.11 The zipfile Module; 5.12 The gzip Module; Chapter 6: Mail and News Message Processing; 6.1 Overview; 6.2 The rfc822 Module; 6.3 The mimetools Module; 6.4 The MimeWriter Module; 6.5 The mailbox Module; 6.6 The mailcap Module; 6.7 The mimetypes Module; 6.8 The packmail Module; 6.9 The mimify Module; 6.10 The multifile Module; Chapter 7: Network Protocols; 7.1 Overview; 7.2 The socket Module; 7.3 The select Module; 7.4 The asyncore Module; 7.5 The asynchat Module; 7.6 The urllib Module; 7.7 The urlparse Module; 7.8 The cookie Module; 7.9 The robotparser Module; 7.10 The ftplib Module; 7.11 The gopherlib Module; 7.12 The httplib Module; 7.13 The poplib Module; 7.14 The imaplib Module; 7.15 The smtplib Module; 7.16 The telnetlib Module; 7.17 The nntplib Module; 7.18 The SocketServer Module; 7.19 The BaseHTTPServer Module; 7.20 The SimpleHTTPServer Module; 7.21 The CGIHTTPServer Module; 7.22 The cgi Module; 7.23 The webbrowser Module; Chapter 8: Internationalization; 8.1 The locale Module; 8.2 The unicodedata Module; 8.3 The ucnhash Module; Chapter 9: Multimedia Modules; 9.1 Overview; 9.2 The imghdr Module; 9.3 The sndhdr module; 9.4 The whatsound Module; 9.5 The aifc Module; 9.6 The sunau Module; 9.7 The sunaudio Module; 9.8 The wave Module; 9.9 The audiodev Module; 9.10 The winsound Module; 9.11 The colorsys Module; Chapter 10: Data Storage; 10.1 Overview; 10.2 The anydbm Module; 10.3 The whichdb Module; 10.4 The shelve Module; 10.5 The dbhash Module; 10.6 The dbm Module; 10.7 The dumbdbm Module; 10.8 The gdbm Module; Chapter 11: Tools and Utilities; 11.1 The dis Module; 11.2 The pdb Module; 11.3 The bdb Module; 11.4 The profile Module; 11.5 The pstats Module; 11.6 The tabnanny Module; Chapter 12: Platform-Specific Modules; 12.1 Overview; 12.2 The fcntl Module; 12.3 The pwd Module; 12.4 The grp Module; 12.5 The nis Module; 12.6 The curses Module; 12.7 The termios Module; 12.8 The tty Module; 12.9 The resource Module; 12.10 The syslog Module; 12.11 The msvcrt Module; 12.12 The nt Module; 12.13 The _winreg Module; 12.14 The posix Module; Chapter 13: Implementation Support Modules; 13.1 The dospath Module; 13.2 The macpath Module; 13.3 The ntpath Module; 13.4 The posixpath Module; 13.5 The strop Module; 13.6 The imp Module; 13.7 The new Module; 13.8 The pre Module; 13.9 The sre Module; 13.10 The py_compile Module; 13.11 The compileall Module; 13.12 The ihooks Module; 13.13 The linecache Module; 13.14 The macurl2path Module; 13.15 The nturl2path module; 13.16 The tokenize Module; 13.17 The keyword Module; 13.18 The parser Module; 13.19 The symbol Module; 13.20 The token Module; Chapter 14: Other Modules; 14.1 Overview; 14.2 The pyclbr Module; 14.3 The filecmp Module; 14.4 The cmd Module; 14.5 The rexec Module; 14.6 The Bastion Module; 14.7 The readline Module; 14.8 The rlcompleter Module; 14.9 The statvfs Module; 14.10 The calendar Module; 14.11 The sched Module; 14.12 The statcache Module; 14.13 The grep Module; 14.14 The dircache Module; 14.15 The dircmp Module; 14.16 The cmp Module; 14.17 The cmpcache Module; 14.18 The util Module; 14.19 The soundex Module; 14.20 The timing Module; 14.21 The posixfile Module; 14.22 The bisect Module; 14.23 The knee Module; 14.24 The tzparse Module; 14.25 The regex Module; 14.26 The regsub Module; 14.27 The reconvert Module; 14.28 The regex_syntax Module; 14.29 The find Module; Colophon;
Le informazioni nella sezione "Su questo libro" possono far riferimento a edizioni diverse di questo titolo.
EUR 3,31 per la spedizione in U.S.A.
Destinazione, tempi e costiGRATIS per la spedizione in U.S.A.
Destinazione, tempi e costiDa: HPB-Red, Dallas, TX, U.S.A.
paperback. Condizione: Good. Connecting readers with great books since 1972! Used textbooks may not include companion materials such as access codes, etc. May have some wear or writing/highlighting. We ship orders daily and Customer Service is our top priority! Codice articolo S_380184665
Quantità: 1 disponibili
Da: Better World Books, Mishawaka, IN, U.S.A.
Condizione: Good. Used book that is in clean, average condition without any missing pages. Codice articolo 4029056-6
Quantità: 1 disponibili
Da: Better World Books, Mishawaka, IN, U.S.A.
Condizione: Good. Former library book; may include library markings. Used book that is in clean, average condition without any missing pages. Codice articolo 4730379-75
Quantità: 2 disponibili
Da: Better World Books: West, Reno, NV, U.S.A.
Condizione: Good. Former library book; may include library markings. Used book that is in clean, average condition without any missing pages. Codice articolo 4730379-75
Quantità: 1 disponibili
Da: ThriftBooks-Atlanta, AUSTELL, GA, U.S.A.
Paperback. Condizione: Fair. No Jacket. Readable copy. Pages may have considerable notes/highlighting. ~ ThriftBooks: Read More, Spend Less 1.16. Codice articolo G0596000960I5N00
Quantità: 1 disponibili
Da: ThriftBooks-Atlanta, AUSTELL, GA, U.S.A.
Paperback. Condizione: Good. No Jacket. Pages can have notes/highlighting. Spine may show signs of wear. ~ ThriftBooks: Read More, Spend Less 1.16. Codice articolo G0596000960I3N00
Quantità: 1 disponibili
Da: HPB Inc., Dallas, TX, U.S.A.
paperback. Condizione: Very Good. Connecting readers with great books since 1972! Used books may not include companion materials, and may have some shelf wear or limited writing. We ship orders daily and Customer Service is our top priority! Codice articolo S_430851633
Quantità: 1 disponibili
Da: Better World Books Ltd, Dunfermline, Regno Unito
Condizione: Good. Ships from the UK. Former library book; may include library markings. Used book that is in clean, average condition without any missing pages. Codice articolo 4730379-75
Quantità: 1 disponibili
Da: medimops, Berlin, Germania
Condizione: very good. Gut/Very good: Buch bzw. Schutzumschlag mit wenigen Gebrauchsspuren an Einband, Schutzumschlag oder Seiten. / Describes a book or dust jacket that does show some signs of wear on either the binding, dust jacket or pages. Codice articolo M00596000960-V
Quantità: 1 disponibili
Da: Book Broker, Berlin, Germania
Condizione: Sehr gut. First Edition, ed. 300 S. Alle Bücher & Medienartikel von Book Broker sind stets in gutem & sehr gutem gebrauchsfähigen Zustand. Die Ausgabe des gelieferten Exemplars kann um bis zu 10 Jahre vom angegebenen Veröffentlichungsjahr abweichen und es kann sich um eine abweichende Auflage handeln. Unser Produktfoto entspricht dem hier angebotenen Artikel, dieser weist folgende Merkmale auf: Helle/saubere Seiten in fester Bindung. Leichte Gebrauchsspuren. Datenträger ohne Kratzer. Sprache: Englisch Gewicht in Gramm: 517 Taschenbuch, Maße: 17.78 cm x 2.06 cm x 23.34 cm. Codice articolo 661426268
Quantità: 1 disponibili