PyQt progress bar used for loading
Project description
pyqt-loading-progressbar
PyQt animated progress bar used for loading
There are two types of animation - dynamic, fade.
Animation is set to dynamic by default.
You can set it with setAnimationType(type: str)
. You can give 'dynamic' or 'fade' to type
argument.
Requirements
- PyQt5 >= 5.8
Setup
python -m pip install pyqt-loading-progressbar
Example
Code Sample
from PyQt5.QtWidgets import QMainWindow, QApplication, QVBoxLayout, QLabel, QWidget
from pyqt_loading_progressbar.loadingProgressBar import LoadingProgressBar
class MainWindow(QMainWindow):
def __init__(self):
super().__init__()
self.__initUi()
def __initUi(self):
bar = LoadingProgressBar()
# bar.setAnimationType('fade') - if you want to set animation type to fade
lay = QVBoxLayout()
lay.addWidget(QLabel('Loading...'))
lay.addWidget(bar)
mainWidget = QWidget()
mainWidget.setLayout(lay)
self.setCentralWidget(mainWidget)
if __name__ == "__main__":
import sys
app = QApplication(sys.argv)
w = MainWindow()
w.show()
app.exec_()
Result
Dynamic
Fade
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pyqt-loading-progressbar-0.0.2.tar.gz
.
File metadata
- Download URL: pyqt-loading-progressbar-0.0.2.tar.gz
- Upload date:
- Size: 3.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/0.0.0 CPython/3.7.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b615ccb596f62f132cac220f206f57da38a2c4a4f60ffd4f748a21cbe55aa561 |
|
MD5 | b343a1de8de862ae358269a4cc40f03b |
|
BLAKE2b-256 | 1a84a292edd4711f9306512c3509c8753244ca89b5b2a74986634e1c19ab1d44 |
File details
Details for the file pyqt_loading_progressbar-0.0.2-py3-none-any.whl
.
File metadata
- Download URL: pyqt_loading_progressbar-0.0.2-py3-none-any.whl
- Upload date:
- Size: 3.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/0.0.0 CPython/3.7.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e02ecf71d3e5e9c617e299e9a542f0d5d0de9dae9e5dbaa9cb2a8667a47df159 |
|
MD5 | f25422be926217b06127bfeedc2a09d2 |
|
BLAKE2b-256 | 4eac2d8af6f3462d5377fb108b51bc64b90879605ba014320377112dc90af1cf |