This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import socket | |
from time import sleep | |
import psutil | |
from attrdict import AttrDict | |
from blighty import CanvasGravity, TextAlign | |
from blighty.legacy import Graph | |
from blighty.x11 import Canvas, start_event_loop | |
from requests import get |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from math import pi as PI | |
import psutil | |
from attrdict import AttrDict | |
from blighty import CanvasGravity, TextAlign | |
from blighty.legacy import Graph | |
from blighty.x11 import Canvas, start_event_loop | |
from fonts import Fonts |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from math import pi as PI | |
import psutil | |
from attrdict import AttrDict | |
from blighty import CanvasGravity, TextAlign | |
from blighty.legacy import Graph | |
from blighty.x11 import Canvas, start_event_loop | |
from fonts import Fonts |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
""" | |
This file is part of "blighty" which is released under GPL. | |
See file LICENCE or go to http://www.gnu.org/licenses/ for full license | |
details. | |
blighty is a desktop widget creation and management library for Python 3. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--+--------------------------------------------------------------------------+ | |
-- Class Constructor. | |
-- | |
-- Supports single inheritance. To define a new class use as | |
-- | |
-- A = class() | |
-- | |
-- To define a class B that inherits from A, use as | |
-- | |
-- B = class(A) |
NewerOlder