RinUI 0.0.9.post1__py3-none-any.whl → 0.0.9.1__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.
RinUI/__init__.py CHANGED
@@ -1,4 +1,4 @@
1
1
  from .core import *
2
2
 
3
- __version__ = "0.0.9"
3
+ __version__ = "0.0.9.1"
4
4
  __author__ = "RinLit"
@@ -0,0 +1,115 @@
1
+ import QtQuick 2.15
2
+ import QtQuick.Controls.Basic 2.15
3
+ import QtQuick.Layouts 2.15
4
+ import "../../themes"
5
+ import "../../components"
6
+
7
+ Button {
8
+ id: timePickerButton
9
+
10
+ property string amText: qsTr("AM")
11
+ property string pmText: qsTr("PM")
12
+ property string hourText: qsTr("hour")
13
+ property string minuteText: qsTr("minute")
14
+
15
+ // 是否使用24小时制
16
+ property bool use24Hour: false
17
+
18
+ property alias hour: pickerView.value1
19
+ property alias minute: pickerView.value2
20
+ property alias hourSystem: pickerView.value3
21
+
22
+ implicitWidth: 250
23
+ padding: 0
24
+
25
+ // 获取 / 设置时间 // Get / Set time (hh:mm)
26
+ // 获取 / 设置时间 (hh:mm)
27
+ property string time: {
28
+ if (!pickerView.gotData) return ""
29
+ let h = parseInt(hour)
30
+ if (!use24Hour) {
31
+ if (hourSystem === pmText && h < 12) h += 12
32
+ if (hourSystem === amText && h === 12) h = 0
33
+ }
34
+ let hh = h < 10 ? "0" + h : "" + h
35
+ let mm = parseInt(minute)
36
+ let mmStr = mm < 10 ? "0" + mm : "" + mm
37
+ return hh + ":" + mmStr
38
+ }
39
+
40
+ function setTime(hhmm) {
41
+ if (!hhmm || typeof hhmm !== "string" || !hhmm.match(/^\d{2}:\d{2}$/)) return
42
+
43
+ let parts = hhmm.split(":")
44
+ let h = parseInt(parts[0])
45
+ let m = parseInt(parts[1])
46
+
47
+ if (h >= 0 && h < 24 && m >= 0 && m < 60) {
48
+ if (use24Hour) {
49
+ pickerView.value1 = h.toString()
50
+ pickerView.value2 = m.toString()
51
+ pickerView.value3 = undefined
52
+ } else {
53
+ pickerView.value1 = ((h % 12 === 0) ? 12 : h % 12).toString()
54
+ pickerView.value2 = m.toString()
55
+ pickerView.value3 = h >= 12 ? pmText : amText
56
+ }
57
+ pickerView.gotData = true
58
+ }
59
+ }
60
+
61
+ // 重写按钮结果
62
+ contentItem: RowLayout {
63
+ anchors.fill: parent
64
+ spacing: 0
65
+
66
+ Text {
67
+ Layout.fillWidth: true
68
+ Layout.maximumWidth: use24Hour ? timePickerButton.implicitWidth / 2 : timePickerButton.implicitWidth / 3
69
+ color: pickerView.gotData ? Theme.currentTheme.colors.textColor
70
+ : Theme.currentTheme.colors.textSecondaryColor
71
+ horizontalAlignment: Text.AlignHCenter
72
+ verticalAlignment: Text.AlignVCenter
73
+
74
+ text: pickerView.gotData ? pickerView.value1 : hourText
75
+ }
76
+ ToolSeparator {
77
+ implicitHeight: 32
78
+ }
79
+ Text {
80
+ Layout.fillWidth: true
81
+ Layout.maximumWidth: use24Hour ? timePickerButton.implicitWidth / 2 : timePickerButton.implicitWidth / 3
82
+ color: pickerView.gotData ? Theme.currentTheme.colors.textColor
83
+ : Theme.currentTheme.colors.textSecondaryColor
84
+ horizontalAlignment: Text.AlignHCenter
85
+ verticalAlignment: Text.AlignVCenter
86
+
87
+ text: pickerView.gotData ? pickerView.value2 : minuteText
88
+ }
89
+ ToolSeparator {
90
+ implicitHeight: 32
91
+ visible: !use24Hour
92
+ }
93
+ Text {
94
+ Layout.fillWidth: true
95
+ Layout.maximumWidth: timePickerButton.implicitWidth / 3
96
+ color: pickerView.gotData ? Theme.currentTheme.colors.textColor
97
+ : Theme.currentTheme.colors.textSecondaryColor
98
+ horizontalAlignment: Text.AlignHCenter
99
+ verticalAlignment: Text.AlignVCenter
100
+
101
+ text: pickerView.gotData ? pickerView.value3 : amText
102
+ visible: !use24Hour
103
+ }
104
+ }
105
+
106
+ onClicked: pickerView.open()
107
+
108
+ PickerView {
109
+ id: pickerView
110
+ width: parent.width
111
+
112
+ model1: use24Hour ? 24 : 12
113
+ model3: use24Hour ? undefined : [amText, pmText]
114
+ }
115
+ }
@@ -42,7 +42,21 @@ RowLayout {
42
42
  Item {
43
43
  Layout.fillWidth: true
44
44
  Layout.fillHeight: true
45
- // clip: true
45
+
46
+ // 导航栏展开自动收起
47
+ MouseArea {
48
+ id: collapseCatcher
49
+ anchors.fill: parent
50
+ z: 1
51
+ hoverEnabled: true
52
+ acceptedButtons: Qt.AllButtons
53
+
54
+ visible: !navigationBar.collapsed && navigationBar.isNotOverMinimumWidth()
55
+
56
+ onClicked: {
57
+ navigationBar.collapsed = true
58
+ }
59
+ }
46
60
 
47
61
  Rectangle {
48
62
  id: appLayer
@@ -25,6 +25,47 @@ ScrollBar {
25
25
  horizontalPadding : horizontal ? 15 : 3
26
26
  enabled: size < 1.0
27
27
 
28
+ // 控制按钮 / Control Button //
29
+ ToolButton {
30
+ background: Item {} // 无背景
31
+
32
+ width: 15
33
+ height: 15
34
+ size: 8
35
+ color: Theme.currentTheme.colors.textSecondaryColor
36
+ icon.name: vertical ? "ic_fluent_triangle_up_20_filled" : "ic_fluent_triangle_left_20_filled"
37
+ anchors {
38
+ top: vertical ? parent.top : undefined
39
+ left: horizontal ? parent.left : undefined
40
+ horizontalCenter: vertical ? parent.horizontalCenter : undefined
41
+ verticalCenter: horizontal ? parent.verticalCenter : undefined
42
+ }
43
+ onClicked: scrollBar.decrease()
44
+
45
+ visible: scrollBar.size < 1.0
46
+ opacity: background.opacity
47
+ }
48
+
49
+ ToolButton {
50
+ background: Item {} // 无背景
51
+
52
+ width: 15
53
+ height: 15
54
+ size: 8
55
+ color: Theme.currentTheme.colors.textSecondaryColor
56
+ icon.name: vertical ? "ic_fluent_triangle_down_20_filled" : "ic_fluent_triangle_right_20_filled"
57
+ anchors {
58
+ bottom: vertical ? parent.bottom : undefined
59
+ right: horizontal ? parent.right : undefined
60
+ horizontalCenter: vertical ? parent.horizontalCenter : undefined
61
+ verticalCenter: horizontal ? parent.verticalCenter : undefined
62
+ }
63
+ onClicked: scrollBar.increase()
64
+
65
+ visible: scrollBar.size < 1.0
66
+ opacity: background.opacity
67
+ }
68
+
28
69
 
29
70
  // 内容 / Content //
30
71
  contentItem: Item {
RinUI/core/launcher.py CHANGED
@@ -73,7 +73,6 @@ class RinUIWindow:
73
73
  raise FileNotFoundError(f"Cannot find RinUI module: {rinui_import_path}")
74
74
 
75
75
  # 主题管理器
76
-
77
76
  self.engine.rootContext().setContextProperty("ThemeManager", self.theme_manager)
78
77
  try:
79
78
  self.engine.load(self.qml_path)
@@ -84,7 +83,6 @@ class RinUIWindow:
84
83
  raise RuntimeError(f"Error loading QML file: {self.qml_path}")
85
84
 
86
85
  # 窗口设置
87
-
88
86
  self.root_window = self.engine.rootObjects()[0]
89
87
 
90
88
  self.theme_manager.set_window(self.root_window)
RinUI/themes/utils.qml CHANGED
@@ -5,9 +5,10 @@ import "../themes"
5
5
  import "../utils"
6
6
 
7
7
  QtObject {
8
- property string fontFamily: "Segoe UI" // 默认字体
8
+ property string fontFamily: Qt.application.font.family // 默认字体
9
9
  property string iconFontFamily: FontIconLoader.name
10
10
  property string fontIconSource: Qt.resolvedUrl("../assets/fonts/FluentSystemIcons-Resizable.ttf") // 字体图标路径
11
+ property string fontIconIndexSource: Qt.resolvedUrl("../assets/fonts/FluentSystemIcons-Index.js") // 字体图标索引路径
11
12
  property var fontIconIndex: Icons.FluentIcons // 字体图标索引
12
13
 
13
14
  property color primaryColor: "#605ed2" // 默认主题色
@@ -23,6 +24,6 @@ QtObject {
23
24
  property int progressBarAnimationSpeed: 1550 // 进度条动画速度 (ms)
24
25
 
25
26
  function loadFontIconIndex() {
26
- Qt.include("assets/fonts/FluentSystemIcons-Index.js");
27
+ Qt.include(fontIconIndexSource);
27
28
  }
28
29
  }
@@ -151,7 +151,9 @@ ApplicationWindow {
151
151
  if (p.x >= width - b) e |= Qt.RightEdge
152
152
  if (p.y < b) e |= Qt.TopEdge
153
153
  if (p.y >= height - b) e |= Qt.BottomEdge
154
- baseWindow.startSystemResize(e)
154
+ if (e !== 0) {
155
+ baseWindow.startSystemResize(e)
156
+ }
155
157
  }
156
158
  }
157
159
  }
@@ -40,7 +40,7 @@ With simple configuration, you can quickly develop elegant UI interfaces in the
40
40
 
41
41
  You can install RinUI via pip: (coming soon, but now you can install via test-pypi)
42
42
  ```bash
43
- pip install RinUI # if RinUI in pypi
43
+ pip install RinUI
44
44
  ```
45
45
 
46
46
  Import RinUI in your QML file:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: RinUI
3
- Version: 0.0.9.post1
3
+ Version: 0.0.9.1
4
4
  Summary: A Fluent Design-like UI library for Qt Quick (QML) based on PySide6
5
5
  Author-email: RinLit <lintu233_qwq@icloud.com>
6
6
  Classifier: Programming Language :: Python :: 3
@@ -55,7 +55,7 @@ With simple configuration, you can quickly develop elegant UI interfaces in the
55
55
 
56
56
  You can install RinUI via pip: (coming soon, but now you can install via test-pypi)
57
57
  ```bash
58
- pip install RinUI # if RinUI in pypi
58
+ pip install RinUI
59
59
  ```
60
60
 
61
61
  Import RinUI in your QML file:
@@ -1,4 +1,4 @@
1
- RinUI/__init__.py,sha256=Nl2GyJthlwetZo1lceCM_ONPAjp9-oGVd9EgamdTQyA,69
1
+ RinUI/__init__.py,sha256=NfnWWrObwBEIy8xDAMVeUIGDaYj87hjcKAiuEHwDys0,71
2
2
  RinUI/qmldir,sha256=m2jK729cnWNe-Kn9ppOcSWy0KH1Y2_Poym2RxI1OPdI,3181
3
3
  RinUI/__pycache__/__init__.cpython-38.pyc,sha256=BD69Qj3x4AzO9vVspY2mwz62BRUzS1px8JgieZLSJ3I,220
4
4
  RinUI/assets/fonts/FluentSystemIcons-Index.js,sha256=XCgcjUnuZjdsjXUu37llGDpQW8sSJbxwmh-hG6UTB2A,258677
@@ -9,7 +9,7 @@ RinUI/components/ContextMenu.qml,sha256=8pLS_fXVFn7uFfx3gz0Bd1SvPMXryeYv1GnU3VlL
9
9
  RinUI/components/FocusIndicator.qml,sha256=R54F-CtUEeNmtoFmCX2Wo-7dom6MAhiWqN8vFapzUPo,926
10
10
  RinUI/components/IconWidget.qml,sha256=pJtNZYWxde-2_e0rALv_jZNByNx1Oir4wJ8hWmdKrns,1736
11
11
  RinUI/components/Indicator.qml,sha256=yIC96KZo6vhXE1aEX7wz2m2iwb8KXBWCqgxKrsLomT8,2627
12
- RinUI/components/ScrollBar.qml,sha256=kY3wIuLTN11isQlhzPUPJdDEfGhkoaLdOS62Own-Le4,5660
12
+ RinUI/components/ScrollBar.qml,sha256=01Qo9eAYRzEQhIU4oD2E7lCLdFGCmekhO32z-DCqo4o,7118
13
13
  RinUI/components/ScrollView.qml,sha256=S6GuZm9lptsZduH-xVDGKkS3BqGqi8EmyiBFvbVFAgM,275
14
14
  RinUI/components/Shadow.qml,sha256=YmVgAPAIY69ur57EDMDKMihx6ucI973SWyff01L8r0s,1638
15
15
  RinUI/components/qmldir,sha256=EBA8y0QoGI9-ed0DAl-q8AY_m3CAMH76OVob0Xx2rug,2197
@@ -23,6 +23,7 @@ RinUI/components/BasicInput/Slider.qml,sha256=XJ0gXqHrBffF0PNDpx7TWxFTyZ7NAOxLU8
23
23
  RinUI/components/BasicInput/Switch.qml,sha256=6CMQKKAs7tdIT_bdTplUk50bS7ywunYtqfT2v2sOhrI,3359
24
24
  RinUI/components/BasicInput/ToggleButton.qml,sha256=y3bm0agSYT1v4Jzs_-JgAFNf5b_oBzliUyL6QChM6rA,210
25
25
  RinUI/components/BasicInput/ToolButton.qml,sha256=jz2-ddMGdFQIoPHCwOIVbYsp6mRwZgAGrowNHs8P3QU,953
26
+ RinUI/components/DateAndTime/DatePicker.qml,sha256=KKOVLvKPm5moYIZaRxesRzi9v2pAK5xypCIfDda7N_Q,3844
26
27
  RinUI/components/DateAndTime/PickerView.qml,sha256=rE7XbDhWKsERYFIgFGk5hsWz-5nR8pH3siotoyjS7Jg,7040
27
28
  RinUI/components/DateAndTime/TimePicker.qml,sha256=KKOVLvKPm5moYIZaRxesRzi9v2pAK5xypCIfDda7N_Q,3844
28
29
  RinUI/components/DialogsAndFlyouts/Dialog.qml,sha256=KIIswm78ly6BK37wfb5mg26CjpGr-ehp0YdTpo902io,2759
@@ -49,7 +50,7 @@ RinUI/components/Navigation/ErrorPage.qml,sha256=uQ3UBby1vP6-SBjw1_7aU6hRNXmcqNd
49
50
  RinUI/components/Navigation/NavigationBar.qml,sha256=RR8PjDNl0lqfwcvnx0EvooAnVx4db6Q8o1L03ghzdlE,5075
50
51
  RinUI/components/Navigation/NavigationItem.qml,sha256=YzveFBTT4I-NVF40NSVD3GCOgP0qdK3aWMA_3IGxuP0,5947
51
52
  RinUI/components/Navigation/NavigationSubItem.qml,sha256=Xap5EX41SWPOIzvd9FmTR4-zJIwHTe2OvestK_j_jso,3041
52
- RinUI/components/Navigation/NavigationView.qml,sha256=iXGJmQmkvwdRuDV7F0cFVq2Z2J0yrp7eZYmaTFDr82k,7029
53
+ RinUI/components/Navigation/NavigationView.qml,sha256=IQCan4K2NaU6lSH0RmgCZNv1JT2StciJAxsoSXNH9ck,7422
53
54
  RinUI/components/Navigation/SelectorBar.qml,sha256=ivxG2N0vHKRQ0anRRF9HFlvHlODH34ZOh_hVWuieG2E,1835
54
55
  RinUI/components/StatusAndInfo/InfoBadge.qml,sha256=AmyrUwPLP62x83mFlZu6aio7DFOtVK6mKhPVMVBjpQw,2457
55
56
  RinUI/components/StatusAndInfo/InfoBar.qml,sha256=Z18svV2ktCeB5xyUF0ZwgQBQ4yYYftX790DhOmFaC4Y,7557
@@ -64,11 +65,11 @@ RinUI/components/Utils/Blur.qml,sha256=HXChzMeBTrNUl-ZZkKN1d2s3L0Yq6b14WsvUjUpPn
64
65
  RinUI/config/rin_ui.json,sha256=rDCS0TVFt1VowGlcW_jqOM81DWwkV7S8Z5rae2p4TSk,149
65
66
  RinUI/core/__init__.py,sha256=lm9MTtS7ZrvwpRDXatPehvJSnLPKnet4MY3R5T69kxM,147
66
67
  RinUI/core/config.py,sha256=n8PLI_t7vpM5kbywmcNgw7tixGgIgf4p8C2eaQk2KDs,3116
67
- RinUI/core/launcher.py,sha256=ZmVux1nluuNNM6hFnfx-txdOPL6P2Qgv2OyswXa9AhM,5164
68
+ RinUI/core/launcher.py,sha256=qHpjzaBI8ZfIItmYU6XiJfd_vWv1f9YSAD_FDvzBwK0,5160
68
69
  RinUI/core/theme.py,sha256=q8vqq5LP1zlGCLMmOfNQv47qcMtoDYqm0J7HwIC74g4,11203
69
- RinUI/core/__pycache__/__init__.cpython-38.pyc,sha256=Ih9XPQC8FCCFgiGzl8O0wFPpqhTgVXShJEhjUsytYf4,362
70
+ RinUI/core/__pycache__/__init__.cpython-38.pyc,sha256=vaddDk6APcPCgXCXDFxYhxCjErIB9R1Lo_DKZ5WEPL4,362
70
71
  RinUI/core/__pycache__/config.cpython-38.pyc,sha256=CfTGNkyEFqGAKwrMboLd29BUk8Ddu6wbSF13dyoXbnE,3752
71
- RinUI/core/__pycache__/launcher.cpython-38.pyc,sha256=hzJ8Uw3mRPAtmgCnAZ6l-Xc5xgjSPPEtBQs0OEwwVW0,5117
72
+ RinUI/core/__pycache__/launcher.cpython-38.pyc,sha256=_1iW7iOs3m9HOMFkkP5OwBzJDVsBDZbf539e7-jtWp4,5117
72
73
  RinUI/core/__pycache__/theme.cpython-38.pyc,sha256=CqxoFJO4dwpFfdqWnD5FlCqMEj_xWMvayoFaQCpvf7I,10041
73
74
  RinUI/hooks/__init__.py,sha256=zer67JRQ-h9uvQmutYU2Us5oBjSJnBVzgR1Sl_5aPF0,77
74
75
  RinUI/hooks/hook-RinUI.py,sha256=9DW9x8zgpEsZpaAAUW-0LE_B69od1wBcUviVRnrAfMI,119
@@ -76,7 +77,7 @@ RinUI/themes/dark.qml,sha256=2SV9KS2Wj-kILefm2qHg4rcNbo99gice88MiEJcNM3I,5396
76
77
  RinUI/themes/light.qml,sha256=4zcR9Xye6iSq6pSywEaOryhTRgAlHeJoEnp9YsaG5gQ,5343
77
78
  RinUI/themes/qmldir,sha256=cpBqpZ_vfZyOwWzAT9MEEVruyJkSWi3RVV6Qj0RVrGI,125
78
79
  RinUI/themes/theme.qml,sha256=AAviilBJ6aXBjjmc1dpSxvzAnlmYWGUTBXbMW2ee6cs,3693
79
- RinUI/themes/utils.qml,sha256=_n1KiQYpXRKnM_D62i_CdV4dENX_2hFbSkYvsAdi24U,1264
80
+ RinUI/themes/utils.qml,sha256=-bpCXAA4slNStBjfhN07PM4OQUPLpPnanQn-p31gFU0,1390
80
81
  RinUI/utils/Animation.qml,sha256=Z--MRYr-bZqKX_QyZ4c0Z74g72i0k7aPzTBEUhTfiGo,146
81
82
  RinUI/utils/FloatLayer.qml,sha256=W-TaM8gCt6YWU46V_pDonyxNMlR-iEcg27FMl-FYV58,3323
82
83
  RinUI/utils/FontIconLoader.qml,sha256=DEUH-GlcI5q0PbCsvsvq1t-uPzEZo0-A-Gqt5t1eoFg,307
@@ -87,16 +88,16 @@ RinUI/utils/qmldir,sha256=0tTlmbIgNtRRNgqAJ2IAloJIAtwO6lXITV3ciaWLpCs,193
87
88
  RinUI/windows/CtrlBtn.qml,sha256=R4c_ZQxv2SFNnuOsCnq0_dH3THEQkZVl41ZFkVG8IR0,3390
88
89
  RinUI/windows/FluentPage.qml,sha256=UBhBZcQbO5hJNmXlOLlDVWSVYBlu73wa1CAKlxgjows,2840
89
90
  RinUI/windows/FluentWindow.qml,sha256=3GkWomOiS1sGPcQ7SQZxl65v-nIIbgig_M2tjy-WQq0,890
90
- RinUI/windows/FluentWindowBase.qml,sha256=n5QW7FihFoet3tw5rzGvP4nlgw7Ql-s-A5nQHGI0xUw,4775
91
+ RinUI/windows/FluentWindowBase.qml,sha256=hOyVe8oNIEC2T02BgbP65iADM4QF4HN8_MZIK9lGs2g,4822
91
92
  RinUI/windows/TitleBar.qml,sha256=nDMgvN9JDdywZX81dCwH3f90VQofhQNxVdQWEKSGZrg,3665
92
93
  RinUI/windows/qmldir,sha256=8zVLwFf2mHV3QKp13YnR6OkayRpZl7bHpxSdRdBthK4,212
93
94
  RinUI/windows/window/ApplicationWindow.qml,sha256=qG3nnUQ5oOZPMg-1WCmJuZOuk5ZXomqMvWKnQcVA9Jg,193
94
95
  RinUI/windows/window/Window.qml,sha256=d88Y0C3-IZfWQkVxAw-9BylrDWLO7Q3VFarLPqHE_Po,3471
95
- rinui-0.0.9.post1.data/data/LICENSE,sha256=5tTvyBFn2yeDG5EfIkn4FRJKHXNKRomDVGxssfzXtqg,1084
96
- rinui-0.0.9.post1.data/data/README.md,sha256=VnNTI4srbkQhwDyZkkLkG3y_QbKgI2eN0slsuFKGV8g,3053
97
- rinui-0.0.9.post1.dist-info/LICENSE,sha256=5tTvyBFn2yeDG5EfIkn4FRJKHXNKRomDVGxssfzXtqg,1084
98
- rinui-0.0.9.post1.dist-info/METADATA,sha256=jbTYQQIuCYOMpjJrC4QXh6EFSjwa7rY84z4s1q8Qmxg,3597
99
- rinui-0.0.9.post1.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
100
- rinui-0.0.9.post1.dist-info/entry_points.txt,sha256=taxuZYCggoQa2LPubwcurQYRjBRC4cNYOjWaqOYZVxw,54
101
- rinui-0.0.9.post1.dist-info/top_level.txt,sha256=vKKjXBXEw5OFRIzTxZWUC5ZOj0CK5e3atbymBB4eJ6w,6
102
- rinui-0.0.9.post1.dist-info/RECORD,,
96
+ rinui-0.0.9.1.data/data/LICENSE,sha256=5tTvyBFn2yeDG5EfIkn4FRJKHXNKRomDVGxssfzXtqg,1084
97
+ rinui-0.0.9.1.data/data/README.md,sha256=K5MCB6OK0WZUZJTH8WczXltwpVX6P451kejSe4eoKeE,3033
98
+ rinui-0.0.9.1.dist-info/LICENSE,sha256=5tTvyBFn2yeDG5EfIkn4FRJKHXNKRomDVGxssfzXtqg,1084
99
+ rinui-0.0.9.1.dist-info/METADATA,sha256=TS1jZYUMQJsye5FXQN0LELi06HhEObDM43cAF5jTtPI,3573
100
+ rinui-0.0.9.1.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
101
+ rinui-0.0.9.1.dist-info/entry_points.txt,sha256=taxuZYCggoQa2LPubwcurQYRjBRC4cNYOjWaqOYZVxw,54
102
+ rinui-0.0.9.1.dist-info/top_level.txt,sha256=vKKjXBXEw5OFRIzTxZWUC5ZOj0CK5e3atbymBB4eJ6w,6
103
+ rinui-0.0.9.1.dist-info/RECORD,,