Get Mystery Box with random crypto!

Python Universe

Logo of telegram channel pythontg — Python Universe P
Logo of telegram channel pythontg — Python Universe
Channel address: @pythontg
Categories: Technologies
Language: English
Subscribers: 2.57K
Description from channel

Everything you need to know about Python programming.
Admin: @haraisen
Feedback: @pythontg_feedbackbot

Ratings & Reviews

4.50

2 reviews

Reviews can be left only by registered users. All reviews are moderated by admins.

5 stars

1

4 stars

1

3 stars

0

2 stars

0

1 stars

0


The latest Messages 4

2021-07-23 12:23:22
#quiz
1.2K views09:23
Open / Comment
2021-07-22 14:10:28Top 5 Python GUI Libraries

A Graphical User Interface (GUI) is the first thing your user sees and interacts with when he opens your application or website. A user interface usually includes a host of visual elements like icons, buttons, graphics, displayed text, and several other forms of input, like checkbox, text input boxes, and such. The goal behind this post is to help you to find the right framework for building interactive GUIs with the several GUI frameworks Python has to offer.

PyQt5
The PyQt package is built around the Qt framework, which is a cross-platform framework used for creating numerous applications for various platforms. It also offers the QtGui and the QtDesigner module, which provide numerous visual elements that the developer can implement with a simple drag and drop.

Tkinter
Tkinter was created to equip modern developers with a standard interface to the Tk GUI toolkit with its Python bindings. In Tkinter’s world, most of the visual elements that we’re familiar with are called widgets, and each of these widgets offers a different level of customizability.

Kivy
Kivy is an open-source GUI framework for building some of the most intuitive user interfaces encompassing multi-touch applications that implement Natural User Interface (NUI). With Kivy, interface designers can code once and deploy to multiple platforms.

wxPython
wxPython allows Python developers to create native user interfaces that add zero additional overhead to the application. The cross-platform capabilities of wxPython allow deployment to platforms like Windows, Mac OS, Linux, and Unix-based systems with little to no modifications.

PyGUI
PyGUI is a graphical application cross-platform framework for Unix, Macintosh and Windows. Compared to some other GUI frameworks, PyGUI is by far the simplest and lightweight of them all. PyGUI inserts very less code between the GUI platform and Python application, hence the display of the application usually displays the natural GUI of the platform.

#materials #gui
1.6K views11:10
Open / Comment
2021-07-20 14:02:15
#quiz
1.0K views11:02
Open / Comment
2021-07-17 15:18:28
Working with PDF files in Python

PyPDF2
is a pure-python PDF library capable of splitting, merging together, cropping, and transforming the pages of PDF files. It can also add custom data, viewing options, and passwords to PDF files. It can retrieve text and metadata from PDFs as well as merge entire files together.

Installation
pip install PyPDF2

Docs
GitHub
[Tutorial] How to Work With a PDF in Python

#pypdf2 #pdf
625 views12:18
Open / Comment
2021-07-15 20:01:49
#quiz
791 views17:01
Open / Comment
2021-07-15 18:28:16
Python Pandas For Your Grandpa

Pandas
is a fast, powerful, flexible and easy to use open source data analysis and manipulation tool, built on top of the Python programming language. Start your pandas journey with "Python Pandas For Your Grandpa" series – so easy, your grandpa could learn it!

1. Promo [YouTube]
2. Introduction [YouTube]
3. Series Creation [YouTube]
...
44. Challenge: Concerts [YouTube]

YouTube Playlist

#materials #pandas #datascience
856 views15:28
Open / Comment
2021-07-13 11:48:52
Python → .exe

Your Python code would be more useful if it was available to a wide range of people – this would include non-technical users who have never used a command prompt or terminal. With PyInstaller you can easily convert a Python file (.py) to an executable standalone application (.exe).

Installation
pip install pyinstaller

PyInstaller is designed to worked in a command prompt or terminal environment. You would simply compile your Python code by typing the code below in your terminal:
pyinstaller your_python_code.py
You can also slightly modify it by adding the onefile option. This creates one giant executable file instead of creating a lot of files which are mixed with your compiled executable:
pyinstaller your_python_code.py --onefile

Homepage
PyInstaller Manual

#pyinstaller
616 views08:48
Open / Comment
2021-07-12 21:15:52
Practice your Python skills directly in Chrome Browser

PyQuickie is a chrome extension where you can practice your python coding skills easily and hassle free. No login required and with just one click you can improve your coding and problem solving skills while still being able to enjoy browsing through facebook and other web activities.

Features
Importing Python builtin Modules Work.
Working python IDLE.
Python keywords highlighting.
Python Tabbing Feature in textarea.
Questions are ranked by level of difficulty: easy, medium, and hard.

Chrome Extension

#materials #tools
971 viewsedited  18:15
Open / Comment