Personnaliser

OK

Oh appli days ! 20€ et 80€ offerts* sur l'application Rakuten dès 159€ et 899€ d'achat avec le code : APP20 et APP80

En profiter

Python Projects - Cassell, Laura

Note : 0

0 avis
  • Soyez le premier à donner un avis

Vous en avez un à vendre ?

Vendez-le-vôtre

58,44 €

Produit Neuf

  • Ou 14,61 € /mois

    • Livraison à 0,01 €
    • Livré entre le 20 juillet et le 3 août
    Voir les modes de livraison

    RiaChristie

    PRO Vendeur favori

    4,9/5 sur + de 1 000 ventes

    Brand new, In English, Fast shipping from London, UK; Tout neuf, en anglais, expédition rapide depuis Londres, Royaume-Uni;ria9781118908662_dbm

    Publicité
     
    Vous avez choisi le retrait chez le vendeur à
    • Payez directement sur Rakuten (CB, PayPal, 4xCB...)
    • Récupérez le produit directement chez le vendeur
    • Rakuten vous rembourse en cas de problème

    Gratuit et sans engagement

    Félicitations !

    Nous sommes heureux de vous compter parmi nos membres du Club Rakuten !

    En savoir plus

    Retour

    Horaires

        Note :


        Avis sur Python Projects Format Broché  - Livre

        Note : 0 0 avis sur Python Projects Format Broché  - Livre

        Les avis publiés font l'objet d'un contrôle automatisé de Rakuten.


        Présentation Python Projects Format Broché

         - Livre

        Livre - Cassell, Laura - 01/11/2014 - Broché - Langue : Anglais

        . .

      • Auteur(s) : Cassell, Laura - Gauld, Alan
      • Editeur : John Wiley & Sons
      • Langue : Anglais
      • Parution : 01/11/2014
      • Format : Moyen, de 350g à 1kg
      • Nombre de pages : 384.0
      • Expédition : 719
      • Dimensions : 23.5 x 19.1 x 2.1
      • ISBN : 111890866X



      • Résumé :
        A guide to completing Python projects for those ready to take their skills to the next level

        Python Projects is the ultimate resource for the Python programmer with basic skills who is ready to move beyond tutorials and start building projects.

        The preeminent guide to bridge the gap between learning and doing, this book walks readers through the where and how of real-world Python programming with practical, actionable instruction. With a focus on real-world functionality, Python Projects details the ways that Python can be used to complete daily tasks and bring efficiency to businesses and individuals alike.

        Python Projects is written specifically for those who know the Python syntax and lay of the land, but may still be intimidated by larger, more complex projects. The book provides a walk-through of the basic set-up for an application and the building and packaging for a library, and explains in detail the functionalities related to the projects. Topics include:

        *How to maximize the power of the standard library modules
        *Where to get third party libraries, and the best practices for utilization
        *Creating, packaging, and reusing libraries within and across projects
        *Building multi-layered functionality including networks, data, and user interfaces
        *Setting up development environments and using virtualenv, pip, and more

        Written by veteran Python trainers, the book is structured for easy navigation and logical progression that makes it ideal for individual, classroom, or corporate training.

        For Python developers looking to apply their skills to real-world challenges, Python Projects is a goldmine of information and expert insight.
        ...

        Biographie:

        Laura Cassell is the founder of PyLadies Atlanta. She taught Python and JavaScript for Big Nerd Ranch, and is now an engineering manager for the Python team at New Relic.

        Alan Gauld is an enterprise architect working in the telecommunications and customer service industries. He has used Python since 1998, and is a moderator and active participant in the python-tutor mailing list.

        Wrox guides are crafted to make learning programming languages and technologies easier than you think. Written by programmers for programmers, they provide a structured, tutorial format that will guide you through all the techniques involved.

        ...

        Sommaire:

        INTRODUCTION xxv

        CHAPTER 1: REVIEWING CORE PYTHON 1

        Exploring the Python Language and the Interpreter 2

        Reviewing the Python Data Types 3

        Numeric Types: Integer and Float 4

        The Boolean Type 5

        The None Type 6

        Collection Types 6

        Strings 7

        Bytes and ByteArrays 8

        Tuples 10

        Lists 10

        Dictionaries 12

        Sets 13

        Using Python Control Structures 15

        Structuring Your Program 15

        Using Sequences, Blocks and Comments 16

        Selecting an Execution Path 17

        Iteration 18

        Handling Exceptions 20

        Managing Context 21

        Getting Data In and Out of Python 21

        Interacting with Users 21

        Using Text Files 23

        Extending Python 24

        Defining and Using Functions 24

        Generator Functions 26

        Lambda Functions 27

        Defining and Using Classes and Objects 28

        Creating and Using Modules and Packages 33

        Using and Creating Modules 33

        Using and Creating Packages 34

        Creating an Example Package 36

        Using Third?Party Packages 42

        Summary 43

        CHAPTER 2: SCRIPTING WITH PYTHON 47

        Accessing the Operating System 48

        Obtaining Information about Users and Their Computer 49

        Obtaining Information about the Current Process 53

        Managing Other Programs 55

        Managing Subprocesses More Effectively 58

        Obtaining Information about Files (and Devices) 60

        Navigating and Manipulating the File system 62

        Plumbing the Directory Tree Depths 69

        Working with Dates and Times 72

        Using the time Module 72

        Introducing the datetime Module 75

        Introducing the calendar Module 76

        Handling Common File Formats 76

        Using Comm?Separated Values 76

        Working with Confi g Files 83

        Working with XML and HTML Files 86

        Parsing XML Files 86

        Parsing HTML Files 89

        Accessing Native APIs with ctypes and pywin32 93

        Accessing the Operating System Libraries 94

        Using ctypes with Windows 95

        Using ctypes on Linux 96

        Accessing a Windows Application Using COM 96

        Automating Tasks Involving Multiple Applications 98

        Using Python First 98

        Using Operating System Utilities 98

        Using Data Files 98

        Using a Third?Party Module 99

        Interacting with Subprocesses via a CLI 99

        Using Web Services for Server?Based Applications 99

        Using a Native Code API 100

        Using GUI Robotics 100

        Summary 100

        CHAPTER 3: MANAGING DATA 103

        Storing Data Using Python 104

        Using DBM as a Persistent Dictionary 104

        Using Pickle to Store and Retrieve Objects 109

        Accessing Objects with shelve 111

        Analyzing Data with Python 116

        Analyzing Data Using Built?In Features of Python 116

        Analyzing Data with ittertools 119

        Utility Functions 119

        Data Processing Functions 121

        Taming the Vagaries of groupby() 122

        Using itertools to Analyze LendyDB Data 124

        Managing Data Using SQL 125

        Relational Database Concepts 126

        Structured Query Language 127

        Creating Tables 128

        Inserting Data 129

        Reading Data 130

        Modifying Data 133

        Linking Data across Tables 134

        Digging Deeper into Data Constraints 134

        Revisiting SQLite Field Types 135

        Modeling Relationships with Constraints 136

        Many?to?Many Relationships 140

        Migrating LendyDB to an SQL Database 143

        Accessing SQL from Python 143

        Using SQL Connections 143

        Using a Cursor 143

        Creating the LendyDB SQL Database 145

        Inserting Test Data 146

        Creating a LendyDB API 148

        Exploring Ot...

        Détails de conformité du produit

        Consulter les détails de conformité de ce produit (

        Personne responsable dans l'UE

        )
        Le choixNeuf et occasion
        Minimum5% remboursés
        Le service clientsÀ votre écoute
        LinkedinFacebookTwitterInstagramYoutubePinterestTiktok
        visavisa
        mastercardmastercard
        klarnaklarna
        paypalpaypal
        floafloa
        americanexpressamericanexpress
        Rakuten Logo
        • Rakuten Kobo
        • Rakuten TV
        • Rakuten Viber
        • Rakuten Viki
        • Plus de services
        • À propos de Rakuten
        Rakuten.com