Op werkdagen voor 23:00 besteld, morgen in huis Gratis verzending vanaf €20

Python 3 Standard Library by Example, The

E-book Engels 2017 9780134291178
Verwachte levertijd ongeveer 9 werkdagen

Samenvatting

This is the eBook of the printed book and may not include any media, website access codes, or print supplements that may come packaged with the bound book.

Master the Powerful Python 3 Standard Library through Real Code Examples 

“The genius of Doug’s approach is that with 15 minutes per week, any motivated programmer can learn the Python Standard Library. Doug’s guided tour will help you flip the switch to fully power-up Python’s batteries.”

–Raymond Hettinger, Distinguished Python Core Developer

 The Python 3 Standard Library contains hundreds of modules for interacting with the operating system, interpreter, and Internet–all extensively tested and ready to jump-start application development. Now, Python expert Doug Hellmann introduces every major area of the Python 3.x library through concise source code and output examples. Hellmann’s examples fully demonstrate each feature and are designed for easy learning and reuse.

 

You’ll find practical code for working with text, data structures, algorithms, dates/times, math, the file system, persistence, data exchange, compression, archiving, crypto, processes/threads, networking, Internet capabilities, email, developer and language tools, the runtime, packages, and more. Each section fully covers one module, with links to additional resources, making this book an ideal tutorial and reference.

 

The Python 3 Standard Library by Example introduces Python 3.x’s new libraries, significant functionality changes, and new layout and naming conventions. Hellmann also provides expert porting guidance for moving code from 2.x Python standard library modules to their Python 3.x equivalents. Manipulate text with string, textwrap, re (regular expressions), and difflib Use data structures: enum, collections, array, heapq, queue, struct, copy, and more Implement algorithms elegantly and concisely with functools, itertools, and contextlib Handle dates/times and advanced mathematical tasks Archive and data compression Understand data exchange and persistence, including json, dbm, and sqlite Sign and verify messages cryptographically Manage concurrent operations with processes and threads Test, debug, compile, profile, language, import, and package tools Control interaction at runtime with interpreters or the environment

Specificaties

ISBN13:9780134291178
Taal:Engels
Bindwijze:e-book

Lezersrecensies

Wees de eerste die een lezersrecensie schrijft!

Inhoudsopgave

<p style="margin:0px;">Introduction xxxi</p> <p style="margin:0px;">Acknowledgments xxxiii</p> <p style="margin:0px;">About the Author xxxv</p> <p style="margin:0px;">&nbsp;</p> <p style="margin:0px;">Chapter 1: Text 1</p> <p style="margin:0px;">1.1 string: Text Constants and Templates 1</p> <p style="margin:0px;">1.2 textwrap: Formatting Text Paragraphs 7</p> <p style="margin:0px;">1.3 re: Regular Expressions 13</p> <p style="margin:0px;">1.4 difflib: Compare Sequences 58</p> <p style="margin:0px;">&nbsp;</p> <p style="margin:0px;">Chapter 2: Data Structures 65</p> <p style="margin:0px;">2.1 enum: Enumeration Type 66</p> <p style="margin:0px;">2.2 collections: Container Data Types 75</p> <p style="margin:0px;">2.3 array: Sequence of Fixed-Type Data 98</p> <p style="margin:0px;">2.4 heapq: Heap Sort Algorithm 103</p> <p style="margin:0px;">2.5 bisect: Maintain Lists in Sorted Order 109</p> <p style="margin:0px;">2.6 queue: Thread-Safe FIFO Implementation 111</p> <p style="margin:0px;">2.7 struct: Binary Data Structures 117</p> <p style="margin:0px;">2.8 weakref: Impermanent References to Objects 121</p> <p style="margin:0px;">2.9 copy: Duplicate Objects 130</p> <p style="margin:0px;">2.10 pprint: Pretty-Print Data Structures 136</p> <p style="margin:0px;">&nbsp;</p> <p style="margin:0px;">Chapter 3: Algorithms 143</p> <p style="margin:0px;">3.1 functools: Tools for Manipulating Functions 143</p> <p style="margin:0px;">3.2 itertools: Iterator Functions 163</p> <p style="margin:0px;">3.3 operator: Functional Interface to Built-in Operators 183</p> <p style="margin:0px;">3.4 contextlib: Context Manager Utilities 191</p> <p style="margin:0px;">&nbsp;</p> <p style="margin:0px;">Chapter 4: Dates and Times 211</p> <p style="margin:0px;">4.1 time: Clock Time 211</p> <p style="margin:0px;">4.2 datetime: Date and Time Value Manipulation 221</p> <p style="margin:0px;">4.3 calendar: Work with Dates 233</p> <p style="margin:0px;">&nbsp;</p> <p style="margin:0px;">Chapter 5: Mathematics 239</p> <p style="margin:0px;">5.1 decimal: Fixed- and Floating-Point Math 239</p> <p style="margin:0px;">5.2 fractions: Rational Numbers 250</p> <p style="margin:0px;">5.3 random: Pseudorandom Number Generators 254</p> <p style="margin:0px;">5.4 math: Mathematical Functions 264</p> <p style="margin:0px;">5.5 statistics: Statistical Calculations 290</p> <p style="margin:0px;">&nbsp;</p> <p style="margin:0px;">Chapter 6: The File System 295</p> <p style="margin:0px;">6.1 os.path: Platform-Independent Manipulation of Filenames 296</p> <p style="margin:0px;">6.2 pathlib: File System Paths as Objects 305</p> <p style="margin:0px;">6.3 glob: Filename Pattern Matching 319</p> <p style="margin:0px;">6.4 fnmatch: Unix-Style Glob Pattern Matching 323</p> <p style="margin:0px;">6.5 linecache: Read Text Files Efficiently 326</p> <p style="margin:0px;">6.6 tempfile: Temporary File System Objects 330</p> <p style="margin:0px;">6.7 shutil: High-Level File Operations 337</p> <p style="margin:0px;">6.8 filecmp: Compare Files 351</p> <p style="margin:0px;">6.9 mmap: Memory-Map Files 361</p> <p style="margin:0px;">6.10 codecs: String Encoding and Decoding 365</p> <p style="margin:0px;">6.11 io: Text, Binary, and Raw Stream I/O Tools 390</p> <p style="margin:0px;">&nbsp;</p> <p style="margin:0px;">Chapter 7: Data Persistence and Exchange 395</p> <p style="margin:0px;">7.1 pickle: Object Serialization 396</p> <p style="margin:0px;">7.2 shelve: Persistent Storage of Objects 405</p> <p style="margin:0px;">7.3 dbm: Unix Key–Value Databases 408</p> <p style="margin:0px;">7.4 sqlite3: Embedded Relational Database 412</p> <p style="margin:0px;">7.5 xml.etree.ElementTree: XML Manipulation API 445</p> <p style="margin:0px;">7.6 csv: Comma-Separated Value Files 466</p> <p style="margin:0px;">&nbsp;</p> <p style="margin:0px;">Chapter 8: Data Compression and Archiving 477</p> <p style="margin:0px;">8.1 zlib: GNU zlib Compression 477</p> <p style="margin:0px;">8.2 gzip: Read and Write GNU zip Files 486</p> <p style="margin:0px;">8.3 bz2: bzip2 Compression 491</p> <p style="margin:0px;">8.4 tarfile: Tar Archive Access 503</p> <p style="margin:0px;">8.5 zipfile: ZIP Archive Access 511</p> <p style="margin:0px;">&nbsp;</p> <p style="margin:0px;">Chapter 9: Cryptography 523</p> <p style="margin:0px;">9.1 hashlib: Cryptographic Hashing 523</p> <p style="margin:0px;">9.2 hmac: Cryptographic Message Signing and Verification 528</p> <p style="margin:0px;">&nbsp;</p> <p style="margin:0px;">Chapter 10: Concurrency with Processes, Threads, and Coroutines 535</p> <p style="margin:0px;">10.1 subprocess: Spawning Additional Processes 535</p> <p style="margin:0px;">10.2 signal: Asynchronous System Events 553</p> <p style="margin:0px;">10.3 threading: Manage Concurrent Operations Within a Process 560</p> <p style="margin:0px;">10.4 multiprocessing: Manage Processes Like Threads 586</p> <p style="margin:0px;">10.5 asyncio: Asynchronous I/O, Event Loop, and Concurrency Tools 617</p> <p style="margin:0px;">10.6 concurrent.futures: Manage Pools of Concurrent Tasks 677</p> <p style="margin:0px;">&nbsp;</p> <p style="margin:0px;">Chapter 11: Networking 687</p> <p style="margin:0px;">11.1 ipaddress: Internet Addresses 687</p> <p style="margin:0px;">11.2 socket: Network Communication 693</p> <p style="margin:0px;">11.3 selectors: I/O Multiplexing Abstractions 724</p> <p style="margin:0px;">11.4 select: Wait for I/O Efficiently 728</p> <p style="margin:0px;">11.5 socketserver: Creating Network Servers 742</p> <p style="margin:0px;">&nbsp;</p> <p style="margin:0px;">Chapter 12: The Internet 753</p> <p style="margin:0px;">12.1 urllib.parse: Split URLs into Components 753</p> <p style="margin:0px;">12.2 urllib.request: Network Resource Access 761</p> <p style="margin:0px;">12.3 urllib.robotparser: Internet Spider Access Control 773</p> <p style="margin:0px;">12.4 base64: Encode Binary Data with ASCII 776</p> <p style="margin:0px;">12.5 http.server: Base Classes for Implementing Web Servers 781</p> <p style="margin:0px;">12.6 http.cookies: HTTP Cookies 790</p> <p style="margin:0px;">12.7 webbrowser: Displays Web Pages 796</p> <p style="margin:0px;">12.8 uuid: Universally Unique Identifiers 797</p> <p style="margin:0px;">12.9 json: JavaScript Object Notation 803</p> <p style="margin:0px;">12.10 xmlrpc.client: Client Library for XML-RPC 816</p> <p style="margin:0px;">12.11 xmlrpc.server: An XML-RPC Server 827</p> <p style="margin:0px;">&nbsp;</p> <p style="margin:0px;">Chapter 13: Email 841</p> <p style="margin:0px;">13.1 smtplib: Simple Mail Transfer Protocol Client 841</p> <p style="margin:0px;">13.2 smtpd: Sample Mail Servers 847</p> <p style="margin:0px;">13.3 mailbox: Manipulate Email Archives 852</p> <p style="margin:0px;">13.4 imaplib: IMAP4 Client Library 864</p> <p style="margin:0px;">&nbsp;</p> <p style="margin:0px;">Chapter 14: Application Building Blocks 887</p> <p style="margin:0px;">14.1 argparse: Command-Line Option and Argument Parsing 888</p> <p style="margin:0px;">14.2 getopt: Command-Line Option Parsing 916</p> <p style="margin:0px;">14.3 readline: The GNU readline Library 922</p> <p style="margin:0px;">14.4 getpass: Secure Password Prompt 935</p> <p style="margin:0px;">14.5 cmd: Line-Oriented Command Processors 938</p> <p style="margin:0px;">14.6 shlex: Parse Shell-Style Syntaxes 951</p> <p style="margin:0px;">14.7 configparser: Work with Configuration Files 960</p> <p style="margin:0px;">14.8 logging: Report Status, Error, and Informational Messages 980</p> <p style="margin:0px;">14.9 fileinput: Command-Line Filter Framework 986</p> <p style="margin:0px;">14.10 atexit: Program Shutdown Callbacks 993</p> <p style="margin:0px;">14.11 sched: Timed Event Scheduler 998</p> <p style="margin:0px;">&nbsp;</p> <p style="margin:0px;">Chapter 15: Internationalization and Localization 1003</p> <p style="margin:0px;">15.1 gettext: Message Catalogs 1003</p> <p style="margin:0px;">15.2 locale: Cultural Localization API 1012</p> <p style="margin:0px;">&nbsp;</p> <p style="margin:0px;">Chapter 16: Developer Tools 1023</p> <p style="margin:0px;">16.1 pydoc: Online Help for Modules 1024</p> <p style="margin:0px;">16.2 doctest: Testing Through Documentation 1026</p> <p style="margin:0px;">16.3 unittest: Automated Testing Framework 1051</p> <p style="margin:0px;">16.4 trace: Follow Program Flow 1069</p> <p style="margin:0px;">16.5 traceback: Exceptions and Stack Traces 1078</p> <p style="margin:0px;">16.6 cgitb: Detailed Traceback Reports 1089</p> <p style="margin:0px;">16.7 pdb: Interactive Debugger 1101</p> <p style="margin:0px;">16.8 profile and pstats: Performance Analysis 1140</p> <p style="margin:0px;">16.9 timeit: Time the Execution of Small Bits of Python Code 1148</p> <p style="margin:0px;">16.10 tabnanny: Indentation Validator 1153</p> <p style="margin:0px;">16.11 compileall: Byte-Compile Source Files 1155</p> <p style="margin:0px;">16.12 pyclbr: Class Browser 1160</p> <p style="margin:0px;">16.13 venv: Create Virtual Environments 1163</p> <p style="margin:0px;">16.14 ensurepip: Install the Python Package Installer 1167</p> <p style="margin:0px;">&nbsp;</p> <p style="margin:0px;">Chapter 17: Runtime Features 1169</p> <p style="margin:0px;">17.1 site: Site-wide Configuration 1169</p> <p style="margin:0px;">17.2 sys: System-Specific Configuration 1178</p> <p style="margin:0px;">17.3 os: Portable Access to Operating System–Specific Features 1227</p> <p style="margin:0px;">17.4 platform: System Version Information 1246</p> <p style="margin:0px;">17.5 resource: System Resource Management 1251</p> <p style="margin:0px;">17.6 gc: Garbage Collector 1254</p> <p style="margin:0px;">17.7 sysconfig: Interpreter Compile-Time Configuration 1270</p> <p style="margin:0px;">&nbsp;</p> <p style="margin:0px;">Chapter 18: Language Tools 1279</p> <p style="margin:0px;">18.1 warnings: Non-fatal Alerts 1279</p> <p style="margin:0px;">18.2 abc: Abstract Base Classes 1287</p> <p style="margin:0px;">18.3 dis: Python Byte-Code Disassembler 1296</p> <p style="margin:0px;">18.4 inspect: Inspect Live Objects 1311</p> <p style="margin:0px;">Chapter 19: Modules and Packages 1329</p> <p style="margin:0px;">19.1 importlib: Python’s Import Mechanism 1329</p> <p style="margin:0px;">19.2 pkgutil: Package Utilities 1334</p> <p style="margin:0px;">19.3 zipimport: Load Python Code from ZIP Archives 1344</p> <p style="margin:0px;">&nbsp;</p> <p style="margin:0px;">Appendix A: Porting Notes 1351</p> <p style="margin:0px;">A.1 References 1351</p> <p style="margin:0px;">A.2 New Modules 1352</p> <p style="margin:0px;">A.3 Renamed Modules 1352</p> <p style="margin:0px;">A.4 Removed Modules 1354</p> <p style="margin:0px;">A.5 Deprecated Modules 1355</p> <p style="margin:0px;">A.6 Summary of Changes to Modules 1356</p> <p style="margin:0px;"><br></p> <p style="margin:0px;">Appendix B: Outside of the Standard Library 1367</p> <p style="margin:0px;">B.1 Text 1367</p> <p style="margin:0px;">B.2 Algorithms 1367</p> <p style="margin:0px;">B.3 Dates and Times 1368</p> <p style="margin:0px;">B.4 Mathematics 1368</p> <p style="margin:0px;">B.5 Data Persistence and Exchange 1368</p> <p style="margin:0px;">B.6 Cryptography 1369</p> <p style="margin:0px;">B.7 Concurrency with Processes, Threads, and Coroutines 1369</p> <p style="margin:0px;">B.8 The Internet 1369</p> <p style="margin:0px;">B.9 Email 1370</p> <p style="margin:0px;">B.10 Application Building Blocks 1370</p> <p style="margin:0px;">B.11 Developer Tools 1371</p> <p style="margin:0px;">&nbsp;</p> <p style="margin:0px;">Index of Python Modules 1373</p> <p style="margin:0px;">Index 1375</p>

Managementboek Top 100

Rubrieken

Populaire producten

    Personen

      Trefwoorden

        Python 3 Standard Library by Example, The