Skip to content

Instantly share code, notes, and snippets.

View Prx001's full-sized avatar
🗻
Just need to climb the mountain I made its' routes before.

Parsa.py Prx001

🗻
Just need to climb the mountain I made its' routes before.
View GitHub Profile
# from: https://doc.qt.io/qt-5/qtcharts-nesteddonuts-example.html
import functools
import random
from PyQt5.QtChart import *
from PyQt5.QtGui import *
from PyQt5.QtCore import *
from PyQt5.QtWidgets import *
class Widget(QWidget):
@chipolux
chipolux / qt_kinetic_scroll.py
Created October 19, 2015 22:10
Simple Kinetic Scroll Example Using PyQt (Only Works On Qt5)
import sys
from PyQt5.QtWidgets import (
QApplication,
QFormLayout,
QGridLayout,
QLabel,
QScrollArea,
QScroller,
QWidget,