Cargando…

Python GUI programming cookbook : over 80 object-oriented recipes to help you create mind-blowing GUIs in Python /

Over 80 object-oriented recipes to help you create mind-blowing GUIs in Python About This Book Use object-oriented programming to develop amazing GUIs in Python Create a working GUI project as a central resource for developing your Python GUIs Packed with easy-to-follow recipes to help you develop c...

Descripción completa

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Meier, Burkhard (Autor)
Formato: Electrónico eBook
Idioma:Inglés
Publicado: Birmingham, UK : Packt Publishing, 2015.
Colección:Quick answers to common problems.
Temas:
Acceso en línea:Texto completo
Texto completo

MARC

LEADER 00000cam a2200000Ii 4500
001 EBSCO_ocn932304454
003 OCoLC
005 20231017213018.0
006 m o d
007 cr unu||||||||
008 151216s2015 enka o 001 0 eng d
040 |a UMI  |b eng  |e rda  |e pn  |c UMI  |d N$T  |d DEBBG  |d DEBSZ  |d COO  |d VT2  |d OCLCF  |d CEF  |d WYU  |d UAB  |d RDF  |d TEFOD  |d OCLCO  |d OCLCQ  |d QGK  |d OCLCO 
019 |a 1259219752 
020 |a 9781785287480  |q (electronic bk.) 
020 |a 1785287486  |q (electronic bk.) 
020 |a 1785283758 
020 |a 9781785283758 
029 1 |a DEBBG  |b BV043968475 
029 1 |a DEBSZ  |b 485789752 
029 1 |a GBVCP  |b 882848089 
035 |a (OCoLC)932304454  |z (OCoLC)1259219752 
037 |a CL0500000691  |b Safari Books Online 
037 |a 541D3398-51D5-4D2F-8E3F-34A303C9C0D4  |b OverDrive, Inc.  |n http://www.overdrive.com 
050 4 |a QA76.9.U83 
072 7 |a COM  |x 051240  |2 bisacsh 
082 0 4 |a 005.13/3  |2 23 
049 |a UAMI 
100 1 |a Meier, Burkhard,  |e author. 
245 1 0 |a Python GUI programming cookbook :  |b over 80 object-oriented recipes to help you create mind-blowing GUIs in Python /  |c Burkhard Meier. 
246 3 |a Python graphical user interface programming cookbook 
264 1 |a Birmingham, UK :  |b Packt Publishing,  |c 2015. 
300 |a 1 online resource (1 volume) :  |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 
490 1 |a Quick answers to common problems 
588 |a Description based on online resource; title from cover page (Safari, viewed December 15, 2015). 
500 |a Includes index. 
505 0 |a Cover ; Copyright; Credits; About the Author; About the Reviewers; www.PacktPub.com; Table of Contents; Preface; Chapter 1: Creating the GUI Form and Adding Widgets; Introduction; Creating our first Python GUI; Preventing the GUI from being resized; Adding a label to the GUI form; Creating buttons and changing their text property; Text box widgets; Setting the focus to a widget and disabling widgets; Combo box widgets; Creating a check button with different initial states; Using radio button widgets; Using scrolled text widgets; Adding several widgets in a loop; Chapter 2: Layout Management 
505 8 |a IntroductionArranging several labels within a label frame widget; Using padding to add space around widgets; How widgets dynamically expand the GUI; Aligning the GUI widgets by embedding frames within frames; Creating menu bars; Creating tabbed widgets; Using the grid layout manager; Chapter 3: Look and Feel Customization; Introduction; Creating message boxes -- information, warning, and error; How to create independent message boxes; How to create the title of a tkinter window form; Changing the icon of the main root window; Using a spin box control 
505 8 |a Relief, sunken, and raised appearance of widgetsCreating tooltips using Python; How to use the canvas widget; Chapter 4: Data and Classes; Introduction; How to use StringVar(); How to get data from a widget; Using module-level global variables; How coding in classes can improve the GUI; Writing callback functions; Creating reusable GUI components; Chapter 5: Matplotlib Charts; Introduction; Creating beautiful charts using Matplotlib; Matplotlib -- downloading modules using pip; Matplotlib -- downloading modules with whl extensions; Creating our first chart; Placing labels on charts 
505 8 |a How to give the chart a legendScaling charts; Adjusting the scale of charts dynamically; Chapter 6: Threads and Networking; Introduction; How to create multiple threads; Starting a thread; Stopping a thread; How to use queues; Passing queues among different modules; Using dialog widgets to copy files to your network; Using TCP/IP to communicate via networks; Using URLOpen to read data from websites; Chapter 7: Storing Data in Our MySQL Database via Our GUI; Introduction; Connecting to a MySQL database from Python; Configuring the MySQL connection; Designing the Python GUI database 
505 8 |a Using the SQL INSERT commandUsing the SQL UPDATE command; Using the SQL DELETE command; Storing and retrieving data from our MySQL database; Chapter 8: Internationalization and Testing; Introduction; Displaying widget text in different languages; Changing the entire GUI language all at once; Localizing the GUI; Preparing the GUI for internationalization; How to design a GUI in an agile fashion; Do we need to test the GUI code?; Setting debug watches; Configuring different debug output levels; Creating self-testing code using Python's __main__ section; Creating robust GUIs using unit tests 
520 |a Over 80 object-oriented recipes to help you create mind-blowing GUIs in Python About This Book Use object-oriented programming to develop amazing GUIs in Python Create a working GUI project as a central resource for developing your Python GUIs Packed with easy-to-follow recipes to help you develop code using the latest released version of Python Who This Book Is For If you are a Python programmer with intermediate level knowledge of GUI programming and want to learn how to create beautiful, effective, and responsive GUIs using the freely available Python GUI frameworks, this book is for you. What You Will Learn Create amazing GUIs with Python's built-in Tkinter module Customize the GUIs by using layout managers to arrange the GUI widgets Advance to an object-oriented programming style using Python Develop beautiful charts using the free Matplotlib Python module Use threading in a networked environment to make the GUIs responsive Discover ways to connect the GUIs to a database Understand how unit tests can be created and internationalize the GUI Extend the GUIs with free Python frameworks using best practices In Detail Python is a multi-domain, interpreted programming language. It is a widely used general-purpose, high-level programming language. It is often used as a scripting language because of its forgiving syntax and compatibility with a wide variety of different eco-systems. Its flexible syntax enables developers to write short scripts while at the same time, they can use object-oriented concepts to develop very large projects. Python GUI Programming Cookbook follows a task-based approach to help you create beautiful and very effective GUIs with the least amount of code necessary. This book uses the simplest programming style, using the fewest lines of code to create a GUI in Python, and then advances to using object-oriented programming in later chapters. If you are new to object-oriented programming (OOP), this book will teach you how to take advantage of the OOP coding style in the context of creating GUIs written in Python. Throughout the book, you will develop an entire GUI application, building recipe upon recipe, connecting the GUI to a database. In the later chapters, you will explore additional Python GUI frameworks, using best practices. You will also learn how to use threading to ensure your GUI doesn't go unresponsive. By the end of the book, you will be an expert in Python GUI programming to develop a common set of GUI applic... 
590 |a eBooks on EBSCOhost  |b EBSCO eBook Subscription Academic Collection - Worldwide 
590 |a O'Reilly  |b O'Reilly Online Learning: Academic/Public Library Edition 
650 0 |a Graphical user interfaces (Computer systems)  |x Programming. 
650 0 |a Python (Computer program language) 
650 0 |a Object-oriented programming (Computer science) 
650 6 |a Interfaces graphiques (Informatique)  |x Programmation. 
650 6 |a Python (Langage de programmation) 
650 6 |a Programmation orientée objet (Informatique) 
650 7 |a COMPUTERS / Software Development & Engineering / Systems Analysis & Design  |2 bisacsh 
650 7 |a Object-oriented programming (Computer science)  |2 fast 
650 7 |a Python (Computer program language)  |2 fast 
776 |z 1-78528-375-8 
830 0 |a Quick answers to common problems. 
856 4 0 |u https://ebsco.uam.elogim.com/login.aspx?direct=true&scope=site&db=nlebk&AN=1105601  |z Texto completo 
856 4 0 |u https://learning.oreilly.com/library/view/~/9781785283758/?ar  |z Texto completo 
938 |a EBSCOhost  |b EBSC  |n 1105601 
994 |a 92  |b IZTAP