gtk-stream 0.7__py3-none-any.whl → 0.8__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- gtk_stream/__init__.py +0 -1
- gtk_stream/_version.py +16 -0
- gtk_stream/application.py +3 -2
- gtk_stream/command_line.py +9 -8
- gtk_stream/common.py +30 -2
- gtk_stream/documents/__init__.py +1 -0
- gtk_stream/documents/classes/Button.py +2 -2
- gtk_stream/documents/classes/Document.py +3 -2
- gtk_stream/documents/classes/Dropdown.py +1 -1
- gtk_stream/documents/classes/Entry.py +28 -0
- gtk_stream/documents/classes/Switch.py +1 -1
- gtk_stream/parser.py +21 -9
- {gtk_stream-0.7.dist-info → gtk_stream-0.8.dist-info}/METADATA +1 -1
- gtk_stream-0.8.dist-info/RECORD +30 -0
- gtk_stream-0.7.dist-info/RECORD +0 -28
- {gtk_stream-0.7.dist-info → gtk_stream-0.8.dist-info}/WHEEL +0 -0
- {gtk_stream-0.7.dist-info → gtk_stream-0.8.dist-info}/entry_points.txt +0 -0
- {gtk_stream-0.7.dist-info → gtk_stream-0.8.dist-info}/top_level.txt +0 -0
gtk_stream/__init__.py
CHANGED
gtk_stream/_version.py
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
# file generated by setuptools_scm
|
2
|
+
# don't change, don't track in version control
|
3
|
+
TYPE_CHECKING = False
|
4
|
+
if TYPE_CHECKING:
|
5
|
+
from typing import Tuple, Union
|
6
|
+
VERSION_TUPLE = Tuple[Union[int, str], ...]
|
7
|
+
else:
|
8
|
+
VERSION_TUPLE = object
|
9
|
+
|
10
|
+
version: str
|
11
|
+
__version__: str
|
12
|
+
__version_tuple__: VERSION_TUPLE
|
13
|
+
version_tuple: VERSION_TUPLE
|
14
|
+
|
15
|
+
__version__ = version = '0.8'
|
16
|
+
__version_tuple__ = version_tuple = (0, 8)
|
gtk_stream/application.py
CHANGED
@@ -20,8 +20,9 @@ from .common import printEvent
|
|
20
20
|
from .properties import parse_property, get_prop_type
|
21
21
|
|
22
22
|
class GtkStreamApp(Gtk.Application):
|
23
|
-
def __init__(self, name = None, **kwargs):
|
23
|
+
def __init__(self, logger, name = None, **kwargs):
|
24
24
|
super().__init__(**kwargs)
|
25
|
+
self.logger = logger
|
25
26
|
if name != None:
|
26
27
|
GLib.set_application_name(name)
|
27
28
|
self.namedWidgets = { }
|
@@ -66,7 +67,7 @@ class GtkStreamApp(Gtk.Application):
|
|
66
67
|
win.set_default_size(int(width), int(height))
|
67
68
|
self.namedWindows[id] = win
|
68
69
|
win.set_child(document.render())
|
69
|
-
win.connect('close-request', printEvent('close-request', id))
|
70
|
+
win.connect('close-request', printEvent(self.logger, 'close-request', id))
|
70
71
|
win.present()
|
71
72
|
return False
|
72
73
|
self.run_when_idle(cb)
|
gtk_stream/command_line.py
CHANGED
@@ -16,22 +16,25 @@
|
|
16
16
|
|
17
17
|
import io
|
18
18
|
import xml.sax as sax
|
19
|
-
import signal
|
20
19
|
import sys
|
20
|
+
import os
|
21
21
|
|
22
22
|
from .parser import GtkStreamXMLHandler
|
23
|
+
from .common import Logger, LogLevel
|
23
24
|
from . import GLib
|
24
25
|
|
26
|
+
logLevel = LogLevel.__dict__.get(os.environ.get('GTK_STREAM_LOGLEVEL', 'WARN'), LogLevel.WARN)
|
27
|
+
|
28
|
+
logger = Logger(logLevel)
|
29
|
+
|
25
30
|
class GtkStreamErrorHandler(sax.handler.ErrorHandler):
|
26
31
|
def error(self, exc):
|
27
|
-
print("Error", file=sys.stderr)
|
28
32
|
raise exc
|
29
33
|
def fatalError(self, exc):
|
30
|
-
print("Fatal error", file=sys.stderr)
|
31
34
|
raise exc
|
32
35
|
|
33
36
|
def main():
|
34
|
-
handler = GtkStreamXMLHandler()
|
37
|
+
handler = GtkStreamXMLHandler(logger)
|
35
38
|
errHandler = GtkStreamErrorHandler()
|
36
39
|
parser = sax.make_parser()
|
37
40
|
parser.setContentHandler(handler)
|
@@ -39,7 +42,5 @@ def main():
|
|
39
42
|
try:
|
40
43
|
parser.parse(io.FileIO(0, 'r', closefd=False))
|
41
44
|
except Exception as e:
|
42
|
-
|
43
|
-
|
44
|
-
GLib.idle_add(quit)
|
45
|
-
print(f"Done with exception : {e}\n", file=sys.stderr)
|
45
|
+
logger.error("Done with exception : %s", e)
|
46
|
+
handler.quit_application()
|
gtk_stream/common.py
CHANGED
@@ -15,6 +15,7 @@
|
|
15
15
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
16
16
|
|
17
17
|
import sys
|
18
|
+
from enum import Enum
|
18
19
|
|
19
20
|
def _data_str_default(*args):
|
20
21
|
return ''
|
@@ -23,13 +24,40 @@ def _data_str_by(get_data):
|
|
23
24
|
return ":"+get_data(*args)
|
24
25
|
return ret
|
25
26
|
|
26
|
-
def printEvent(event, id, retval = None, get_data = None):
|
27
|
+
def printEvent(logger, event, id, retval = None, get_data = None):
|
27
28
|
data_str = _data_str_default if get_data == None else _data_str_by(get_data)
|
28
29
|
def ret(*args):
|
29
30
|
try:
|
30
31
|
print("{}:{}{}".format(id,event,data_str(*args)), file=sys.stdout)
|
31
32
|
sys.stdout.flush()
|
32
33
|
except Exception as e:
|
33
|
-
|
34
|
+
logger.error("Exception when writing an event: %s", e)
|
34
35
|
return retval
|
35
36
|
return ret
|
37
|
+
|
38
|
+
class LogLevel(Enum):
|
39
|
+
DEBUG = 0
|
40
|
+
INFO = 1
|
41
|
+
WARN = 2
|
42
|
+
ERROR = 3
|
43
|
+
|
44
|
+
class Logger:
|
45
|
+
def __init__(self, level = LogLevel.WARN, stderr = sys.stderr):
|
46
|
+
self.stderr = stderr
|
47
|
+
self.level = level
|
48
|
+
self.debug = self._initLogger(LogLevel.DEBUG)
|
49
|
+
self.info = self._initLogger(LogLevel.INFO)
|
50
|
+
self.warn = self._initLogger(LogLevel.WARN)
|
51
|
+
self.error = self._initLogger(LogLevel.ERROR)
|
52
|
+
def flush(self):
|
53
|
+
self.stderr.flush()
|
54
|
+
|
55
|
+
def _initLogger(self, level):
|
56
|
+
if self.level.value <= level.value:
|
57
|
+
def ret(fmt, *args):
|
58
|
+
print((f"[{level.name}]: {fmt}") % args, file=self.stderr)
|
59
|
+
return ret
|
60
|
+
else:
|
61
|
+
def ret(*args):
|
62
|
+
pass
|
63
|
+
return ret
|
gtk_stream/documents/__init__.py
CHANGED
@@ -8,6 +8,7 @@ from .classes.Separator import Separator
|
|
8
8
|
from .classes.Button import Button, LinkButton
|
9
9
|
from .classes.Dropdown import Dropdown, Item
|
10
10
|
from .classes.Switch import Switch
|
11
|
+
from .classes.Entry import Entry
|
11
12
|
|
12
13
|
from .classes.Box import Box, BoxPrepend
|
13
14
|
from .classes.FlowBox import FlowBox, FlowBoxPrepend
|
@@ -24,7 +24,7 @@ class Button(Document):
|
|
24
24
|
super().__init__(app, id = id, **kwargs)
|
25
25
|
def render_raw(self):
|
26
26
|
button = Gtk.Button()
|
27
|
-
button.connect('clicked', printEvent('clicked', self.id))
|
27
|
+
button.connect('clicked', printEvent(self.app.logger, 'clicked', self.id))
|
28
28
|
return button
|
29
29
|
def insert_child(self, w, d):
|
30
30
|
w.set_child(d.render())
|
@@ -35,7 +35,7 @@ class LinkButton(Button):
|
|
35
35
|
super().__init__(app, id=id, **kwargs)
|
36
36
|
def render_raw(self):
|
37
37
|
button = Gtk.LinkButton()
|
38
|
-
button.connect('activate-link', printEvent('clicked', self.id, True))
|
38
|
+
button.connect('activate-link', printEvent(self.app.logger, 'clicked', self.id, True))
|
39
39
|
return button
|
40
40
|
def insert_child(self, w, d):
|
41
41
|
w.set_child(d.render())
|
@@ -33,8 +33,9 @@ class Document:
|
|
33
33
|
def set_properties(self, w):
|
34
34
|
self.app.nameWidget(self.id, w)
|
35
35
|
for (p,v) in self.props.items():
|
36
|
-
|
37
|
-
|
36
|
+
val = v(self.app)
|
37
|
+
self.app.logger.debug("Setting property '%s' to '%s' in widget %s", p, val, self.__class__)
|
38
|
+
w.set_property(p, val)
|
38
39
|
w.insert_child = lambda d: self.insert_child(w, d)
|
39
40
|
def render(self):
|
40
41
|
w = self.render_raw()
|
@@ -59,7 +59,7 @@ class Dropdown(Document):
|
|
59
59
|
|
60
60
|
ret = Gtk.DropDown(model=model, expression=Gtk.PropertyExpression.new(_ItemObject, None, 'item_value'), factory=factory)
|
61
61
|
|
62
|
-
ret.connect('notify::selected-item', printEvent('selected', self.id, get_data = lambda w,_: w.get_selected_item().value))
|
62
|
+
ret.connect('notify::selected-item', printEvent(self.app.logger, 'selected', self.id, get_data = lambda w,_: w.get_selected_item().value))
|
63
63
|
return ret
|
64
64
|
def insert_child(self, w, d):
|
65
65
|
pass
|
@@ -0,0 +1,28 @@
|
|
1
|
+
# Gtk-Stream : A stream-based GUI protocol
|
2
|
+
# Copyright (C) 2024 Marc Coiffier
|
3
|
+
#
|
4
|
+
# This program is free software: you can redistribute it and/or modify
|
5
|
+
# it under the terms of the GNU General Public License as published by
|
6
|
+
# the Free Software Foundation, either version 3 of the License, or
|
7
|
+
# (at your option) any later version.
|
8
|
+
#
|
9
|
+
# This program is distributed in the hope that it will be useful,
|
10
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
11
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
12
|
+
# GNU General Public License for more details.
|
13
|
+
#
|
14
|
+
# You should have received a copy of the GNU General Public License
|
15
|
+
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
16
|
+
|
17
|
+
from ... import Gtk
|
18
|
+
from ...common import printEvent
|
19
|
+
from .. import Document
|
20
|
+
|
21
|
+
class Entry(Document):
|
22
|
+
__g_class__ = Gtk.Entry
|
23
|
+
def __init__(self, app, id, **kwargs):
|
24
|
+
super().__init__(app, id = id, **kwargs)
|
25
|
+
def render_raw(self):
|
26
|
+
entry = Gtk.Entry()
|
27
|
+
entry.connect('changed', printEvent(self.app.logger, 'changed', self.id, get_data = lambda _: entry.get_text()))
|
28
|
+
return entry
|
@@ -26,7 +26,7 @@ class Switch(Document):
|
|
26
26
|
self.managed = parse_property('gboolean', managed)(app)
|
27
27
|
def render_raw(self):
|
28
28
|
ret = Gtk.Switch()
|
29
|
-
ret.connect('state-set', printEvent('switch', self.id,
|
29
|
+
ret.connect('state-set', printEvent(self.app.logger, 'switch', self.id,
|
30
30
|
retval = self.managed,
|
31
31
|
get_data = lambda _,state: "on" if state else "off"))
|
32
32
|
return ret
|
gtk_stream/parser.py
CHANGED
@@ -47,17 +47,29 @@ WIDGET_DOCUMENTS = {
|
|
47
47
|
'scrolled-window' : docs.ScrolledWindow,
|
48
48
|
'stack' : docs.Stack,
|
49
49
|
'flow-box' : docs.FlowBox,
|
50
|
-
'flow-box-prepend': docs.FlowBoxPrepend
|
50
|
+
'flow-box-prepend': docs.FlowBoxPrepend,
|
51
|
+
'entry' : docs.Entry
|
51
52
|
}
|
52
53
|
|
53
54
|
class GtkStreamXMLHandler(sax.ContentHandler):
|
54
|
-
def __init__(self):
|
55
|
+
def __init__(self, logger):
|
56
|
+
self.logger = logger
|
55
57
|
self.transition_enter = self.transE_conn
|
56
58
|
self.transition_leave = self.transL_final
|
57
59
|
self.transition_chars = self.ignore_chars
|
58
60
|
self.namedWidgets = { }
|
59
61
|
self.windows = { }
|
60
62
|
|
63
|
+
def quit_application(self):
|
64
|
+
def cb():
|
65
|
+
self.logger.info("Quitting app")
|
66
|
+
self.app.quit()
|
67
|
+
GLib.idle_add(cb)
|
68
|
+
self.logger.info("Waiting for app to terminate")
|
69
|
+
self.app_thread.join()
|
70
|
+
self.logger.info("App terminated")
|
71
|
+
sys.exit(0)
|
72
|
+
|
61
73
|
def setNamed(self, attrs, ):
|
62
74
|
if 'id' in attrs:
|
63
75
|
self.namedWidgets[attrs['id']] = widget
|
@@ -82,20 +94,20 @@ class GtkStreamXMLHandler(sax.ContentHandler):
|
|
82
94
|
def transE_conn(self, name, attrs):
|
83
95
|
match name:
|
84
96
|
case 'application':
|
85
|
-
self.app = GtkStreamApp(**attrs)
|
97
|
+
self.app = GtkStreamApp(self.logger, **attrs)
|
86
98
|
def on_activate(a):
|
87
99
|
a.hold()
|
88
100
|
self.app.connect('activate', on_activate)
|
89
101
|
def appMain():
|
90
102
|
self.app.run([])
|
91
|
-
threading.Thread(target = appMain)
|
103
|
+
self.app_thread = threading.Thread(target = appMain)
|
104
|
+
self.app_thread.start()
|
105
|
+
|
92
106
|
def on_sigint(a,b):
|
93
|
-
|
94
|
-
|
95
|
-
self.app.quit()
|
96
|
-
sys.exit(0)
|
97
|
-
GLib.idle_add(cb)
|
107
|
+
self.logger.info("SIGINT received")
|
108
|
+
self.quit_application()
|
98
109
|
signal.signal(signal.SIGINT, on_sigint)
|
110
|
+
|
99
111
|
self.transition_enter = self.transE_message
|
100
112
|
self.transition_leave = self.transL_tag('application', self.transE_final, self.transL_final)
|
101
113
|
case _:
|
@@ -0,0 +1,30 @@
|
|
1
|
+
gtk_stream/__init__.py,sha256=y6JLknVFexWrSo_Zl7-TXrPR6EQ5XVMeFO1bUzLN9Lg,98
|
2
|
+
gtk_stream/_version.py,sha256=h5n78EXo879PK26kXI5GISCkixORDd-2bYdny3F_ook,406
|
3
|
+
gtk_stream/application.py,sha256=gOsJv6AUizfQZrwNe9LxVz9dOKScxzw97XO3lRTmxRs,3886
|
4
|
+
gtk_stream/command_line.py,sha256=Ej4mmPiuYjr5-1JrvjGK0BDitKUCfVEI9uHp1p_FAr4,1520
|
5
|
+
gtk_stream/common.py,sha256=xdscxYgBg_Ux6iyk26gB-AMSgoUIqlZUPgso5YS_gKE,2106
|
6
|
+
gtk_stream/parser.py,sha256=d3JH0I5I9MSCSnfpMtbCaWfnKZzY5XzNKZQ6skH96lw,8392
|
7
|
+
gtk_stream/properties.py,sha256=r_zxYIBe5g8SGueuhtf5CIAWesmm2tXv6llh6657a74,2374
|
8
|
+
gtk_stream/documents/__init__.py,sha256=53kBShNAFtbwpYvOVdHJRHfSYF5yrT6RNS6Tl5TYkco,783
|
9
|
+
gtk_stream/documents/classes/Box.py,sha256=d01o2-JQ3-k0VjvvY8E7mly-u_f1v1NqYz1IDjHZLUo,1381
|
10
|
+
gtk_stream/documents/classes/Button.py,sha256=0Cs5DOt-FoDVLWIktJHuH6OasI58TNI0Gs3uIKJDj2o,1563
|
11
|
+
gtk_stream/documents/classes/Document.py,sha256=drWy-2HzgmpxSmRR27uIydlTJbaYTiRJPWwpELXrGSk,2135
|
12
|
+
gtk_stream/documents/classes/Dropdown.py,sha256=1azU_iHbr_-099wj0_TDfDfZ5xKyh9xLFd5GvbNMw14,2443
|
13
|
+
gtk_stream/documents/classes/Entry.py,sha256=MuhoUMAKKSj24KA77VCqBtedE_lStMrXvR-3wB9amSw,1137
|
14
|
+
gtk_stream/documents/classes/FlowBox.py,sha256=UoVYS2j_osOV-IgbVoaqluTBCiaXus5dq2e9qhAu2Xo,1225
|
15
|
+
gtk_stream/documents/classes/Frame.py,sha256=zAZvsT-YTZMijsgk7p0YVf6siAmFoCCSXouZo9XDpsA,1222
|
16
|
+
gtk_stream/documents/classes/Grid.py,sha256=jDJ9U1GJZ45hi1VvPsCwFILN7CwEkgjqYqhTzMdtX9o,1249
|
17
|
+
gtk_stream/documents/classes/Label.py,sha256=bBNBTvGs6fM8uLf4EDb2Ro8FmCeS27cnU1Ao-44nRYs,1023
|
18
|
+
gtk_stream/documents/classes/Paned.py,sha256=q1goKJMWBg1d3hS0eanPBxzBqLB-Pz5hUnH9N-RXXh8,1392
|
19
|
+
gtk_stream/documents/classes/Picture.py,sha256=kqrlGPeMrqjzeyKzjbMJschQA2akJI0ZXd4PbEfmGPY,1018
|
20
|
+
gtk_stream/documents/classes/ProgressBar.py,sha256=NPJtP3qaKiZUEAYEHZk4FEoWSFn2KVorI2SVb8cDnW0,966
|
21
|
+
gtk_stream/documents/classes/ScrolledWindow.py,sha256=WaTPgz6GBC-hjH83SQT2OGUdCapHAgO3xEmSMJZ8q70,1041
|
22
|
+
gtk_stream/documents/classes/Separator.py,sha256=uw_EgAKs_6pNA8nrOLzruIlJfk4uaogB0p_jeoY0PHM,960
|
23
|
+
gtk_stream/documents/classes/Stack.py,sha256=YA6NDzZL2u4Ko8GXtx8Or-jEWGMCEw2cC1HNkAMRw-8,1030
|
24
|
+
gtk_stream/documents/classes/Switch.py,sha256=OLCWWNeVyNrk4Tu3JDe64FqsLhedh3dDzKDKne2CyDw,1382
|
25
|
+
gtk_stream/documents/classes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
26
|
+
gtk_stream-0.8.dist-info/METADATA,sha256=890j69yfLxhmPbS9Scl27K4p0n_BtKdSA5mc6Bxn2Rw,804
|
27
|
+
gtk_stream-0.8.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
28
|
+
gtk_stream-0.8.dist-info/entry_points.txt,sha256=PmhKTb4MMQM6dN2HJcoDSMI8L0lZIFIlFn-BgdfPDpo,60
|
29
|
+
gtk_stream-0.8.dist-info/top_level.txt,sha256=vE9zfHGe9Ke7FSe0wBK2WYJI-BpcQNu6xDC3Cu5O8rQ,11
|
30
|
+
gtk_stream-0.8.dist-info/RECORD,,
|
gtk_stream-0.7.dist-info/RECORD
DELETED
@@ -1,28 +0,0 @@
|
|
1
|
-
gtk_stream/__init__.py,sha256=pDhUSN4AYNsP8_tilU1zmDCYdiv7ak4PE1TW0qFrDlg,99
|
2
|
-
gtk_stream/application.py,sha256=g95IbeV2fjKf55bRqBCl9EpdiA-sR9XHmp6BMGZBAbo,3836
|
3
|
-
gtk_stream/command_line.py,sha256=6Yj6NV12cqlnSE5ZHTjNqxE6ZtosuWAiJm66awpJ2H8,1503
|
4
|
-
gtk_stream/common.py,sha256=wjByU_xhzgCKJFSkEr0gNsi2dqv38kA9_2DodRRrBw4,1310
|
5
|
-
gtk_stream/parser.py,sha256=9AfSOb-T7O98A-XIH16eBBC6eA0jsFmEVi3F19kAiGY,8063
|
6
|
-
gtk_stream/properties.py,sha256=r_zxYIBe5g8SGueuhtf5CIAWesmm2tXv6llh6657a74,2374
|
7
|
-
gtk_stream/documents/__init__.py,sha256=_y2h6kINZGuYibRgfgVwtmZGmSdIBHZP0TUB182Ado8,741
|
8
|
-
gtk_stream/documents/classes/Box.py,sha256=d01o2-JQ3-k0VjvvY8E7mly-u_f1v1NqYz1IDjHZLUo,1381
|
9
|
-
gtk_stream/documents/classes/Button.py,sha256=NoDuAwd2XqXY8ZvyOg9xeKIru71JBi4ZFS3Oe6P478Q,1529
|
10
|
-
gtk_stream/documents/classes/Document.py,sha256=m_N7UCxHmdlQ34OvP91EvUEdl40CzuRngeJRj9w3dPU,2109
|
11
|
-
gtk_stream/documents/classes/Dropdown.py,sha256=NUUQ24yrJomlwcXWgm73kEsAsy4Eej6udg77HFBgiZs,2426
|
12
|
-
gtk_stream/documents/classes/FlowBox.py,sha256=UoVYS2j_osOV-IgbVoaqluTBCiaXus5dq2e9qhAu2Xo,1225
|
13
|
-
gtk_stream/documents/classes/Frame.py,sha256=zAZvsT-YTZMijsgk7p0YVf6siAmFoCCSXouZo9XDpsA,1222
|
14
|
-
gtk_stream/documents/classes/Grid.py,sha256=jDJ9U1GJZ45hi1VvPsCwFILN7CwEkgjqYqhTzMdtX9o,1249
|
15
|
-
gtk_stream/documents/classes/Label.py,sha256=bBNBTvGs6fM8uLf4EDb2Ro8FmCeS27cnU1Ao-44nRYs,1023
|
16
|
-
gtk_stream/documents/classes/Paned.py,sha256=q1goKJMWBg1d3hS0eanPBxzBqLB-Pz5hUnH9N-RXXh8,1392
|
17
|
-
gtk_stream/documents/classes/Picture.py,sha256=kqrlGPeMrqjzeyKzjbMJschQA2akJI0ZXd4PbEfmGPY,1018
|
18
|
-
gtk_stream/documents/classes/ProgressBar.py,sha256=NPJtP3qaKiZUEAYEHZk4FEoWSFn2KVorI2SVb8cDnW0,966
|
19
|
-
gtk_stream/documents/classes/ScrolledWindow.py,sha256=WaTPgz6GBC-hjH83SQT2OGUdCapHAgO3xEmSMJZ8q70,1041
|
20
|
-
gtk_stream/documents/classes/Separator.py,sha256=uw_EgAKs_6pNA8nrOLzruIlJfk4uaogB0p_jeoY0PHM,960
|
21
|
-
gtk_stream/documents/classes/Stack.py,sha256=YA6NDzZL2u4Ko8GXtx8Or-jEWGMCEw2cC1HNkAMRw-8,1030
|
22
|
-
gtk_stream/documents/classes/Switch.py,sha256=bLOkyAy_v2T_Gli9c6TAhnUJcqhbnxbD9oswPdTAsGo,1365
|
23
|
-
gtk_stream/documents/classes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
24
|
-
gtk_stream-0.7.dist-info/METADATA,sha256=ReGnW0Nugu54Bbmm4GMDzE0vxxoZBk1Mfy8BQQPzv4c,804
|
25
|
-
gtk_stream-0.7.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
26
|
-
gtk_stream-0.7.dist-info/entry_points.txt,sha256=PmhKTb4MMQM6dN2HJcoDSMI8L0lZIFIlFn-BgdfPDpo,60
|
27
|
-
gtk_stream-0.7.dist-info/top_level.txt,sha256=vE9zfHGe9Ke7FSe0wBK2WYJI-BpcQNu6xDC3Cu5O8rQ,11
|
28
|
-
gtk_stream-0.7.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|