Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 85840f3

Browse files
authored
README file added
1 parent 56c26a3 commit 85840f3

File tree

1 file changed

+112
-2
lines changed

1 file changed

+112
-2
lines changed

README.md

+112-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,112 @@
1-
# Qt5-Python-GUI-Programming-Cookbook
2-
Qt5 Python GUI Programming Cookbook, published by Packt
1+
# Qt5 Python GUI Programming Cookbook
2+
3+
<a href="https://www.packtpub.com/application-development/qt5-python-gui-programming-cookbook?utm_source=github&utm_medium=repository&utm_campaign=9781788831000 "><img src="https://d1ldz4te4covpm.cloudfront.net/sites/default/files/imagecache/ppv4_main_book_cover/B09894_cover.png" alt="Qt5 Python GUI Programming Cookbook" height="256px" align="right"></a>
4+
5+
This is the code repository for [Qt5 Python GUI Programming Cookbook](https://www.packtpub.com/application-development/qt5-python-gui-programming-cookbook?utm_source=github&utm_medium=repository&utm_campaign=9781788831000 ), published by Packt.
6+
7+
** Building responsive and powerful cross-platform applications with PyQt**
8+
9+
## What is this book about?
10+
PyQt is one of the best cross-platform interface toolkits currently available; it's stable, mature, and completely native. If you want control over all aspects of UI elements, PyQt is what you need. This book will guide you through every concept necessary to create fully functional GUI applications using PyQt, with only a few lines of code.
11+
12+
This book covers the following exciting features:
13+
Use basic Qt components, such as a radio button, combo box, and sliders
14+
Use QSpinBox and sliders to handle different signals generated on mouse clicks
15+
Work with different Qt layouts to meet user interface requirements
16+
Create custom widgets and set up customizations in your GUI
17+
Perform asynchronous I/O operations and thread handling in the Python GUI
18+
Employ network concepts, internet browsing, and Google Maps in UI
19+
Use graphics rendering and implement animation in your GUI
20+
Make your GUI application compatible with Android and iOS devices
21+
22+
If you feel this book is for you, get your [copy](https://www.amazon.com/dp/1-788-83100-4) today!
23+
24+
<a href="https://www.packtpub.com/?utm_source=github&utm_medium=banner&utm_campaign=GitHubBanner"><img src="https://raw.githubusercontent.com/PacktPublishing/GitHub/master/GitHub.png"
25+
alt="https://www.packtpub.com/" border="5" /></a>
26+
27+
## Instructions and Navigations
28+
All of the code is organized into folders. For example, Chapter02.
29+
30+
The code will look like the following:
31+
```
32+
import sys
33+
from PyQt5.QtWidgets import QDialog, QApplication
34+
from demoCalendar import *
35+
class MyForm(QDialog):
36+
def __init__(self):
37+
super().__init__()
38+
self.ui = Ui_Dialog()
39+
self.ui.setupUi(self)
40+
self.ui.calendarWidget.selectionChanged.connect
41+
(self.dispdate)
42+
self.show()
43+
def dispdate(self):
44+
self.ui.dateEdit.setDate(self.ui.calendarWidget.
45+
selectedDate())
46+
if __name__=="__main__":
47+
app = QApplication(sys.argv)
48+
w = MyForm()
49+
w.show()
50+
sys.exit(app.exec_())
51+
```
52+
53+
**Following is what you need for this book:**
54+
If you’re an intermediate Python programmer wishing to enhance your coding skills by writing powerful GUIs in Python using PyQT, this is the book for you.
55+
56+
With the following software and hardware list you can run all code files present in the book (Chapter 1-13).
57+
### Software and Hardware List
58+
| Chapter | Software required | OS required |
59+
| -------- | ------------------------------------ | ----------------------------------- |
60+
| 1-8,10-12 | Python 3.5.0 | Windows, Mac OS X, and Linux (Any) |
61+
| 1-8, 10-12 | PyQt5 version 5.6 | Windows, Mac OS X, and Linux (Any) |
62+
| 9 | SQLite 3 | Windows, Mac OS X, and Linux (Any) |
63+
| 9 | DB Browser for SQLite | Windows, Mac OS X, and Linux (Any) |
64+
| 13 | QPython | Windows, Mac OS X, and Linux (Any) |
65+
| 13 | Cython | Windows, Mac OS X, and Linux (Any) |
66+
| 13 | Kivy | Windows, Mac OS X, and Linux (Any) |
67+
| 13 | Oracle VM VirtualBox | Windows, Mac OS X, and Linux (Any) |
68+
| 13 | Kivy Buildozer VM | Windows, Mac OS X, and Linux (Any) |
69+
| 13 | XCode and libraries | Windows, Mac OS X, and Linux (Any) |
70+
71+
We also provide a PDF file that has color images of the screenshots/diagrams used in this book. [Click here to download it](https://www.packtpub.com/sites/default/files/downloads/Qt5PythonGUIProgrammingCookbook_ColorImages.pdf).
72+
73+
### Related products
74+
* Computer Vision with OpenCV 3 and Qt5: Build visually appealing, multithreaded, cross-platform computer vision applications Paperback – January 2, 2018 [[Packt]](https://www.amazon.com/Computer-Vision-OpenCV-multithreaded-cross-platform/dp/178847239X/ref=sr_1_1?ie=UTF8&qid=1532586055&sr=8-1&keywords=Computer+Vision+with+OpenCV+3+and+Qt5&dpID=51Z4u1hLAzL&preST=_SX218_BO1,204,203,200_QL40_&dpSrc=srch&utm_source=github&utm_medium=repository&utm_campaign=) [[Amazon]](https://www.amazon.com/dp/1-788-47239-X)
75+
76+
* Qt 5 Projects: Develop cross-platform applications with modern UIs using the powerful Qt framework Paperback – February 23, 2018 [[Packt]](https://www.amazon.com/Qt-Projects-cross-platform-applications-framework/dp/1788293886/ref=sr_1_2_sspa?s=books&ie=UTF8&qid=1532586126&sr=1-2-spons&keywords=Qt+5+Projects&psc=1&utm_source=github&utm_medium=repository&utm_campaign=) [[Amazon]](https://www.amazon.com/dp/)
77+
78+
* [[Packt]]() [[Amazon]](https://www.amazon.com/dp/)
79+
80+
* [[Packt]]() [[Amazon]](https://www.amazon.com/dp/)
81+
82+
## Get to Know the Author
83+
**BM Harwani**
84+
is the founder and owner of Microchip Computer Education (MCE), based in Ajmer, India. He graduated with a BE in computer engineering from the University of Pune and also has a C level (masters diploma in computer technology) from DOEACC, Government of India. Having been involved in the teaching field for over 20 years, he has developed the art of explaining even the most complicated topics in a straightforward and easily understandable fashion. He is also a renowned speaker and the author of several books. To learn more, visit his blog, a site that helps programmers.
85+
86+
****
87+
0
88+
89+
****
90+
0
91+
92+
****
93+
0
94+
95+
****
96+
0
97+
98+
## Other books by the authors
99+
[]()
100+
101+
[]()
102+
103+
[]()
104+
105+
[]()
106+
107+
[]()
108+
109+
### Suggestions and Feedback
110+
[Click here](https://docs.google.com/forms/d/e/1FAIpQLSdy7dATC6QmEL81FIUuymZ0Wy9vH1jHkvpY57OiMeKGqib_Ow/viewform) if you have any feedback or suggestions.
111+
112+

0 commit comments

Comments
 (0)