io4it 0.0.0.12.10__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.
Files changed (30) hide show
  1. io4it-0.0.0.12.10-py3.11-nspkg.pth +1 -0
  2. io4it-0.0.0.12.10.dist-info/License.txt +6 -0
  3. io4it-0.0.0.12.10.dist-info/METADATA +23 -0
  4. io4it-0.0.0.12.10.dist-info/RECORD +30 -0
  5. io4it-0.0.0.12.10.dist-info/WHEEL +5 -0
  6. io4it-0.0.0.12.10.dist-info/entry_points.txt +2 -0
  7. io4it-0.0.0.12.10.dist-info/namespace_packages.txt +1 -0
  8. io4it-0.0.0.12.10.dist-info/top_level.txt +1 -0
  9. orangecontrib/IO4IT/__init__.py +0 -0
  10. orangecontrib/IO4IT/ocr_function/__init__.py +0 -0
  11. orangecontrib/IO4IT/ocr_function/word_converter.py +327 -0
  12. orangecontrib/IO4IT/widgets/OWMarkdownizer.py +202 -0
  13. orangecontrib/IO4IT/widgets/OWPathPropagator.py +123 -0
  14. orangecontrib/IO4IT/widgets/OWS3Uploader.py +92 -0
  15. orangecontrib/IO4IT/widgets/OWS3downloader.py +94 -0
  16. orangecontrib/IO4IT/widgets/OWS3list.py +107 -0
  17. orangecontrib/IO4IT/widgets/OWSpeechToText.py +362 -0
  18. orangecontrib/IO4IT/widgets/OWwordpdf2docx.py +129 -0
  19. orangecontrib/IO4IT/widgets/__init__.py +19 -0
  20. orangecontrib/IO4IT/widgets/designer/ow_in_or_out_path.ui +85 -0
  21. orangecontrib/IO4IT/widgets/designer/owspeechtotext.ui +104 -0
  22. orangecontrib/IO4IT/widgets/designer/wordpdf2docx.ui +57 -0
  23. orangecontrib/IO4IT/widgets/icons/category.svg +50 -0
  24. orangecontrib/IO4IT/widgets/icons/download.png +0 -0
  25. orangecontrib/IO4IT/widgets/icons/in_or_out.png +0 -0
  26. orangecontrib/IO4IT/widgets/icons/list_aws.png +0 -0
  27. orangecontrib/IO4IT/widgets/icons/md.png +0 -0
  28. orangecontrib/IO4IT/widgets/icons/speech_to_text.png +0 -0
  29. orangecontrib/IO4IT/widgets/icons/upload.png +0 -0
  30. orangecontrib/IO4IT/widgets/icons/wordpdf2docx.png +0 -0
@@ -0,0 +1,104 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <ui version="4.0">
3
+ <class>Form</class>
4
+ <widget class="QWidget" name="Form">
5
+ <property name="geometry">
6
+ <rect>
7
+ <x>0</x>
8
+ <y>0</y>
9
+ <width>732</width>
10
+ <height>472</height>
11
+ </rect>
12
+ </property>
13
+ <property name="windowTitle">
14
+ <string>Speech to Text</string>
15
+ </property>
16
+ <widget class="QLabel" name="Description">
17
+ <property name="geometry">
18
+ <rect>
19
+ <x>40</x>
20
+ <y>10</y>
21
+ <width>261</width>
22
+ <height>41</height>
23
+ </rect>
24
+ </property>
25
+ <property name="sizePolicy">
26
+ <sizepolicy hsizetype="Maximum" vsizetype="Expanding">
27
+ <horstretch>0</horstretch>
28
+ <verstretch>0</verstretch>
29
+ </sizepolicy>
30
+ </property>
31
+ <property name="font">
32
+ <font>
33
+ <pointsize>8</pointsize>
34
+ </font>
35
+ </property>
36
+ <property name="text">
37
+ <string>This widget transcript audio conversation, meetings Number of people :</string>
38
+ </property>
39
+ <property name="wordWrap">
40
+ <bool>true</bool>
41
+ </property>
42
+ </widget>
43
+ <widget class="QPushButton" name="fileButton">
44
+ <property name="geometry">
45
+ <rect>
46
+ <x>39</x>
47
+ <y>70</y>
48
+ <width>291</width>
49
+ <height>51</height>
50
+ </rect>
51
+ </property>
52
+ <property name="text">
53
+ <string>📂 Load File</string>
54
+ </property>
55
+ </widget>
56
+ <widget class="QPushButton" name="processButton">
57
+ <property name="geometry">
58
+ <rect>
59
+ <x>400</x>
60
+ <y>70</y>
61
+ <width>281</width>
62
+ <height>50</height>
63
+ </rect>
64
+ </property>
65
+ <property name="text">
66
+ <string>📝 Transcribe</string>
67
+ </property>
68
+ </widget>
69
+ <widget class="QTextEdit" name="textArea">
70
+ <property name="geometry">
71
+ <rect>
72
+ <x>40</x>
73
+ <y>130</y>
74
+ <width>641</width>
75
+ <height>300</height>
76
+ </rect>
77
+ </property>
78
+ <property name="readOnly">
79
+ <bool>true</bool>
80
+ </property>
81
+ </widget>
82
+ <widget class="QSpinBox" name="spinBox_nb_people">
83
+ <property name="geometry">
84
+ <rect>
85
+ <x>330</x>
86
+ <y>20</y>
87
+ <width>42</width>
88
+ <height>22</height>
89
+ </rect>
90
+ </property>
91
+ <property name="minimum">
92
+ <number>1</number>
93
+ </property>
94
+ <property name="maximum">
95
+ <number>6</number>
96
+ </property>
97
+ <property name="value">
98
+ <number>2</number>
99
+ </property>
100
+ </widget>
101
+ </widget>
102
+ <resources/>
103
+ <connections/>
104
+ </ui>
@@ -0,0 +1,57 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <ui version="4.0">
3
+ <class>Form</class>
4
+ <widget class="QWidget" name="Form">
5
+ <property name="geometry">
6
+ <rect>
7
+ <x>0</x>
8
+ <y>0</y>
9
+ <width>470</width>
10
+ <height>300</height>
11
+ </rect>
12
+ </property>
13
+ <property name="windowTitle">
14
+ <string>Form</string>
15
+ </property>
16
+ <widget class="QLabel" name="Description">
17
+ <property name="geometry">
18
+ <rect>
19
+ <x>20</x>
20
+ <y>20</y>
21
+ <width>431</width>
22
+ <height>261</height>
23
+ </rect>
24
+ </property>
25
+ <property name="text">
26
+ <string>convert pdf file to docx from input_dir to output_dir</string>
27
+ </property>
28
+ <property name="textFormat">
29
+ <enum>Qt::AutoText</enum>
30
+ </property>
31
+ <property name="alignment">
32
+ <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set>
33
+ </property>
34
+ <property name="wordWrap">
35
+ <bool>true</bool>
36
+ </property>
37
+ </widget>
38
+ <widget class="QCheckBox" name="checkBox">
39
+ <property name="geometry">
40
+ <rect>
41
+ <x>50</x>
42
+ <y>180</y>
43
+ <width>231</width>
44
+ <height>16</height>
45
+ </rect>
46
+ </property>
47
+ <property name="text">
48
+ <string>Ignore existing output docx file</string>
49
+ </property>
50
+ <property name="checked">
51
+ <bool>true</bool>
52
+ </property>
53
+ </widget>
54
+ </widget>
55
+ <resources/>
56
+ <connections/>
57
+ </ui>
@@ -0,0 +1,50 @@
1
+ <?xml version="1.0" ?>
2
+
3
+ <svg width="800px" height="800px" viewBox="0 0 48 48" data-name="Layer 1" id="Layer_1" xmlns="http://www.w3.org/2000/svg">
4
+
5
+
6
+ .cls-1, .cls-2 {
7
+ fill: none;
8
+ stroke: #353535;
9
+ stroke-linecap: round;
10
+ stroke-width: 2px;
11
+ }
12
+
13
+ .cls-1 {
14
+ stroke-linejoin: round;
15
+ }
16
+
17
+ .cls-2 {
18
+ stroke-miterlimit: 10;
19
+ }
20
+
21
+ .cls-3 {
22
+ fill: #353535;
23
+ }
24
+ </style>
25
+
26
+
27
+
28
+
29
+
30
+
31
+
32
+
33
+
34
+
35
+
36
+
37
+
38
+
39
+
40
+
41
+
42
+
43
+
44
+
45
+
46
+
47
+
48
+
49
+
50
+
Binary file