bridgex 0.0.1.dev0__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 (48) hide show
  1. bridgex/NOTICE +28 -0
  2. bridgex/OSL/LICENSE_MARKITDOWN +21 -0
  3. bridgex/OSL/LICENSE_PYSIDE6 +165 -0
  4. bridgex/OSL/url_licenses.srm +4 -0
  5. bridgex/__init__.py +9 -0
  6. bridgex/__main__.py +7 -0
  7. bridgex/_bridgex.py +16 -0
  8. bridgex/database/Manager.py +22 -0
  9. bridgex/database/__init__.py +0 -0
  10. bridgex/interface/__init__.py +6 -0
  11. bridgex/interface/_about.py +20 -0
  12. bridgex/interface/_initialHelp.py +31 -0
  13. bridgex/interface/_interface.py +232 -0
  14. bridgex/interface/_lang.py +46 -0
  15. bridgex/interface/_osl.py +30 -0
  16. bridgex/interface/assets/img/gh-logo.png +0 -0
  17. bridgex/interface/assets/img/language/en_GB.svg +7 -0
  18. bridgex/interface/assets/img/language/es_CO.svg +11 -0
  19. bridgex/interface/assets/img/logo-bridgex/logo-bridgex-2.1.png +0 -0
  20. bridgex/interface/assets/img/logo-bridgex/logo-bridgex-2.2.png +0 -0
  21. bridgex/interface/assets/img/logo-bridgex/logo-bridgex-2.png +0 -0
  22. bridgex/interface/assets/img/osl_icon.webp +0 -0
  23. bridgex/interface/resources_rc.py +34626 -0
  24. bridgex/interface/translations/locale/bridge_es_CO.qm +0 -0
  25. bridgex/interface/translations/locale/bridge_es_GB.qm +0 -0
  26. bridgex/interface/translations/others/ABOUT_en_GB.trg +77 -0
  27. bridgex/interface/translations/others/ABOUT_es_CO.trg +77 -0
  28. bridgex/interface/translations/others/IH_en_GB.srm +19 -0
  29. bridgex/interface/translations/others/IH_es_CO.srm +19 -0
  30. bridgex/interface/translations/others/NOTICE_en_GB.srm +29 -0
  31. bridgex/interface/translations/others/NOTICE_es_CO.srm +29 -0
  32. bridgex/interface/ui_dialog_about.py +107 -0
  33. bridgex/interface/ui_dialog_language.py +120 -0
  34. bridgex/interface/ui_main_window.py +532 -0
  35. bridgex/interface/ui_osl.py +133 -0
  36. bridgex/logic/Converter.py +33 -0
  37. bridgex/logic/__init__.py +0 -0
  38. bridgex/logs/__init__.py +0 -0
  39. bridgex/models/Returning.py +14 -0
  40. bridgex/models/__init__.py +0 -0
  41. bridgex/utils/FilesManager.py +65 -0
  42. bridgex/utils/__init__.py +0 -0
  43. bridgex-0.0.1.dev0.dist-info/METADATA +193 -0
  44. bridgex-0.0.1.dev0.dist-info/RECORD +48 -0
  45. bridgex-0.0.1.dev0.dist-info/WHEEL +5 -0
  46. bridgex-0.0.1.dev0.dist-info/entry_points.txt +2 -0
  47. bridgex-0.0.1.dev0.dist-info/licenses/LICENSE +21 -0
  48. bridgex-0.0.1.dev0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,33 @@
1
+ from typing import Optional
2
+ from pathlib import Path
3
+ from ..models.Returning import Returning
4
+ from markitdown import MarkItDown, DocumentConverterResult
5
+ from chromologger import Logger as Log
6
+ from threading import Thread
7
+ import asyncio
8
+
9
+ log = Log(f'{Path(__file__).parent.parent}/logs/log_converter.log') # Initialize logger
10
+
11
+ class Converter(MarkItDown):
12
+ def __init__(self, filename:str, ep: Optional[bool] =None, eb: Optional[bool] =None) -> None:
13
+ super().__init__(enable_plugins=ep, enable_builtins=eb)
14
+ self.__fn:str = filename # Path to file + extension
15
+ self.content:str = ''
16
+
17
+ def convert_file(self) -> Returning:
18
+ __return:Returning = Returning(False)
19
+ try:
20
+ __thread:Thread = Thread(target=lambda: asyncio.run(self.__convert(__return)))
21
+ __thread.start()
22
+ __thread.join()
23
+ except Exception as e:
24
+ log.log_e(e)
25
+ return __return
26
+
27
+ async def __convert(self, __return) -> None:
28
+ #self.content = await asyncio.sleep(1, result=self.convert(self.__fn))
29
+ __converted: DocumentConverterResult = await asyncio.sleep(1, result=self.convert(self.__fn)) # Convert file
30
+ if __converted is not None:
31
+ __return.ok = True
32
+ __return.data_str = __converted.text_content
33
+ log.log(f'File "{self.__fn}" converted successfully')
File without changes
File without changes
@@ -0,0 +1,14 @@
1
+ from typing import Optional
2
+
3
+ class Returning:
4
+ """To standardize function returns, you can add information in text format (String) or a dictionary (dict)"""
5
+ def __init__(self, ok:bool = True, data_str: Optional[str] = None, data_dict: Optional[str] = None):
6
+ """Class constructor
7
+
8
+ :param ok: Successful operation
9
+ :param data_str: String information
10
+ :param data_dict: Dictionary information
11
+ """
12
+ self.ok: bool = ok # Status (operation)
13
+ self.data_str: Optional[str] = data_str # String information
14
+ self.data_dict: Optional[dict] = data_dict # Dictionary information
File without changes
@@ -0,0 +1,65 @@
1
+ from chromologger import Logger
2
+ from chromolog import Print as Log
3
+ from pathlib import Path
4
+
5
+ log = Logger(f'{Path(__file__).parent.parent}/logs/log_file_manager.log')
6
+ p:Log = Log()
7
+
8
+ class FileManager:
9
+ def __init__(self, filename:str | None = None, output:str | None = None, encoding:str='utf-8') -> None:
10
+ self.__fn:Path = Path(filename) # Path to file + extension
11
+ self.__ot:Path = Path(output) # Path to file output + extension
12
+ self.__en:str = encoding # Encoding to write a file .md
13
+ self.__validate()
14
+
15
+ def __validate(self) -> bool | None:
16
+ """Validate an extension file, and output existing"""
17
+ __allowed:bool = self.__fn.suffix.lower() in self.extensions()
18
+ __exists:bool = self.__fn.is_file()
19
+ __exists_dir:bool = self.__ot.is_dir()
20
+ if not __allowed:
21
+ raise TypeError(f'File extension ("{self.__fn.suffix.lower()}") not allowed')
22
+ if not __exists:
23
+ raise FileNotFoundError(f'File "{self.__fn.name}" not found')
24
+ if not __exists_dir:
25
+ raise NotADirectoryError(f'"{self.__ot.absolute()}" not found')
26
+ return True
27
+
28
+ def save_md(self, content:str) -> bool:
29
+ """Saves content a Markdown file
30
+
31
+ :param content: Content to save
32
+ :return: Value indicating whether the file was saved or not
33
+ """
34
+ __return:bool = False
35
+ __file_md:str = f'{self.dir_output}/{self.__fn.stem}.md'
36
+ try:
37
+ if type(content) is not str:
38
+ raise TypeError('The content must be a string')
39
+ with open(__file_md, 'w', encoding=self.__en) as __file:
40
+ __file.write(content)
41
+ log.log(f'File "{__file_md}" saved successfully')
42
+ __return = True
43
+ except Exception as Error:
44
+ log.log_e(Error)
45
+ return __return
46
+
47
+ @staticmethod
48
+ def extensions() -> list[str]: return [".pdf", ".docx", ".pptx", ".xlsx", ".xls", ".msg", ".csv", ".txt", ".text",
49
+ ".md", ".markdown", ".json", ".jsonl", ".xml", ".rss", ".atom", ".html", ".mhtml",
50
+ ".htm", ".epub", ".zip", ".ipynb"]
51
+
52
+ @staticmethod
53
+ def read_file(filename:str = '', encoding:str = 'utf-8') -> str:
54
+ __return:str = ''
55
+ try:
56
+ with open(filename, 'r', encoding=encoding) as file:
57
+ __return = str(file.read())
58
+ except Exception as e:
59
+ log.log_e(e)
60
+ return __return
61
+
62
+ @property
63
+ def file(self) -> str: return self.__fn.resolve().__str__()
64
+ @property
65
+ def dir_output(self) -> str: return self.__ot.resolve().__str__()
File without changes
@@ -0,0 +1,193 @@
1
+ Metadata-Version: 2.4
2
+ Name: bridgex
3
+ Version: 0.0.1.dev0
4
+ Summary: graphical interface for converting files to Markdown, built in Python and based on PySide6 and Markitdown
5
+ Author-email: dev2forge <bridgex@dev2forge.software>
6
+ Maintainer-email: tutosrive <tutosrive@dev2forge.software>
7
+ License-Expression: MIT
8
+ Project-URL: Homepage, https://github.com/Dev2Forge/bridgex
9
+ Project-URL: Repository, https://github.com/Dev2Forge/bridgex
10
+ Project-URL: Issues, https://github.com/Dev2Forge/bridgex/issues
11
+ Keywords: markdown,converter,pyside6,gui,editor,viewer,pdf,docx,pptx,xls,xlsx,outlook,csv,txt,html,htm,file converter,markdown converter,markitdown,dev2forge,bridgex,microsoft office
12
+ Classifier: Development Status :: 3 - Alpha
13
+ Classifier: Intended Audience :: End Users/Desktop
14
+ Classifier: Intended Audience :: Developers
15
+ Classifier: Topic :: Utilities
16
+ Classifier: Topic :: Text Processing :: Markup
17
+ Classifier: Programming Language :: Python :: 3.9
18
+ Classifier: Programming Language :: Python :: 3.10
19
+ Classifier: Programming Language :: Python :: 3.11
20
+ Classifier: Programming Language :: Python :: 3.12
21
+ Classifier: Programming Language :: Python :: 3.13
22
+ Classifier: Environment :: X11 Applications :: Qt
23
+ Classifier: Environment :: Win32 (MS Windows)
24
+ Classifier: Environment :: MacOS X
25
+ Requires-Python: <=3.13,>=3.9
26
+ Description-Content-Type: text/markdown
27
+ License-File: LICENSE
28
+ Requires-Dist: markitdown[docx,outlook,pdf,pptx,xls,xlsx]==0.1.1
29
+ Requires-Dist: chromologger==0.1.8
30
+ Requires-Dist: PySide6-Essentials==6.9.0
31
+ Requires-Dist: sqlazo==0.1.5
32
+ Requires-Dist: chromolog==0.2.4
33
+ Dynamic: license-file
34
+
35
+ # Bridgex 🌉🐍
36
+
37
+ [![MIT License](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE)
38
+ ![Pepy Total Downloads](https://img.shields.io/pepy/dt/bridgex)
39
+ [![PyPI version](https://img.shields.io/pypi/v/bridgex?label=bridgex)](https://pypi.org/project/bridgex/)
40
+ [![Python Version](https://img.shields.io/badge/python-3.9%20|%203.10%20|%203.11%20|%203.12%20|%203.13-blue.svg)](https://www.python.org/downloads/)
41
+ [![Issues](https://img.shields.io/github/issues/Dev2Forge/bridgex)](https://github.com/Dev2Forge/bridgex/issues)
42
+
43
+ Bridgex is an open‑source graphical interface for converting files to Markdown, built in Python and based on [Pyside6 (Qt for Python)](https://doc.qt.io/qtforpython-6/). Its objective is to simplify access to the [Markitdown](https://github.com/microsoft/markitdown) library through a straightforward, modular visual experience.
44
+
45
+ ---
46
+
47
+ ## Table of Contents
48
+
49
+ - [Bridgex 🌉🐍](#bridgex-)
50
+ - [Table of Contents](#table-of-contents)
51
+ - [Features](#features)
52
+ - [Screenshots](#screenshots)
53
+ - [Installation](#installation)
54
+ - [Local Cloning and Execution 💻](#local-cloning-and-execution-)
55
+ - [Basic Usage](#basic-usage)
56
+ - [Supported Formats](#supported-formats)
57
+ - [Limitations](#limitations)
58
+ - [Releases](#releases)
59
+ - [Dependencies and Licences](#dependencies-and-licences)
60
+ - [Contribute](#contribute)
61
+ - [Licence](#licence)
62
+
63
+ ---
64
+
65
+ ## Features
66
+
67
+ * Cross‑platform graphical interface.
68
+ * Efficient file‑to‑Markdown conversion.
69
+ * Modularity: easy to adapt and extend.
70
+ * Support for multiple input formats.
71
+ * Lightweight editing prior to saving.
72
+
73
+ ---
74
+
75
+ ## Screenshots
76
+
77
+ ![img](https://cdn.jsdelivr.net/gh/tutosrive/images-projects-srm-trg@main/dev2forge/pymd/bridgex/preview-1-main.png)
78
+ *Example of Bridgex’s main window.*
79
+
80
+ <details>
81
+ <summary><strong>View interface previews</strong></summary>
82
+
83
+ <br>
84
+
85
+ | Name | Preview |
86
+ |:----------------:|:---------------------:|
87
+ | Open File | ![img](https://cdn.jsdelivr.net/gh/tutosrive/images-projects-srm-trg@main/dev2forge/pymd/bridgex/preview-2-openfile.png) |
88
+ | Mini Editor | ![img](https://cdn.jsdelivr.net/gh/tutosrive/images-projects-srm-trg@main/dev2forge/pymd/bridgex/preview-3-minieditor.png) |
89
+ | Convert | ![img](https://cdn.jsdelivr.net/gh/tutosrive/images-projects-srm-trg@main/dev2forge/pymd/bridgex/preview-4-convert.png) |
90
+ | Change Language | ![img](https://cdn.jsdelivr.net/gh/tutosrive/images-projects-srm-trg@main/dev2forge/pymd/bridgex/preview-5-languagechange.png) |
91
+
92
+ </details>
93
+
94
+ ---
95
+
96
+ ## Installation
97
+
98
+ Requirements:
99
+
100
+ * Python ≥ **3.9** and ≤ **3.13**
101
+
102
+ Install via pip:
103
+
104
+ ```sh
105
+ pip install bridgex
106
+ ```
107
+
108
+ Start Bridgex from the terminal:
109
+
110
+ ```sh
111
+ bridgex
112
+ ```
113
+
114
+ It is recommended to use a virtual environment. To customise supported formats, edit the [`requirements.txt`](./requirements.txt) file as needed.
115
+
116
+ ---
117
+
118
+ ## Local Cloning and Execution 💻
119
+
120
+ Clone the repository and run Bridgex locally:
121
+
122
+ ```sh
123
+ git clone https://github.com/Dev2Forge/bridgex.git
124
+ cd bridgex
125
+ python -m venv .venv
126
+ .venv\Scripts\activate # On Windows
127
+ # source .venv/bin/activate # On Linux/MacOS
128
+ pip install -r requirements.txt
129
+ python -m src.bridgex
130
+ ```
131
+
132
+ ---
133
+
134
+ ## Basic Usage
135
+
136
+ 1. Run the application from the terminal or GUI.
137
+ 2. Select the file to convert.
138
+ 3. Review and edit the result if necessary.
139
+ 4. Save the file in Markdown format.
140
+
141
+ ---
142
+
143
+ ## Supported Formats
144
+
145
+ Bridgex supports conversion of the following file formats:
146
+
147
+ * PDF (`.pdf`)
148
+ * Word (`.docx`)
149
+ * PowerPoint (`.pptx`)
150
+ * Excel (`.xlsx`, `.xls`, `.csv`)
151
+ * Outlook Messages (`.msg`)
152
+ * Text (`.txt`, `.text`)
153
+ * Markdown (`.md`, `.markdown`)
154
+ * JSON (`.json`, `.jsonl`)
155
+ * XML (`.xml`)
156
+ * RSS/Atom (`.rss`, `.atom`)
157
+ * HTML/MHTML (`.html`, `.htm`, `.mhtml`)
158
+ * ePub (`.epub`)
159
+ * Compressed files (`.zip`)
160
+ * Jupyter Notebooks (`.ipynb`)
161
+ * Other formats supported by Markitdown
162
+
163
+ ---
164
+
165
+ ## Limitations
166
+
167
+ Bridgex is not an IDE, text editor, Markdown editor, or document viewer. Its purpose is to serve as a bridgex between the user and Markdown conversion, offering lightweight editing without advanced editing features.
168
+
169
+ ---
170
+
171
+ ## Releases
172
+
173
+ Check the published versions and release notes in the [Releases](https://github.com/Dev2Forge/bridgex/releases) section of the repository.
174
+
175
+ ---
176
+
177
+ ## Dependencies and Licences
178
+
179
+ This project uses third‑party libraries, each with its own licence. See the [third‑party](./third-party/) folder for more information.
180
+
181
+ ---
182
+
183
+ ## Contribute
184
+
185
+ Contributions are welcome. Please open an issue or pull request following the community’s best practices.
186
+
187
+ ---
188
+
189
+ ## Licence
190
+
191
+ Distributed under the [MIT Licence](./LICENSE).
192
+
193
+ ©2025 Dev2Forge
@@ -0,0 +1,48 @@
1
+ bridgex/NOTICE,sha256=UCERvbyds4JS_GpcLq7ROol5SUgLco61GqIokfKBX7o,1695
2
+ bridgex/__init__.py,sha256=6U7CMlm_xaQ-TmxU14ZBH3fpNXLXa5BOgAAzOZl-bBU,466
3
+ bridgex/__main__.py,sha256=AiaxKrVu6kRxqRFJ-nMq5mibAtA5LRpIN3WPt-SgZww,109
4
+ bridgex/_bridgex.py,sha256=O7cE70JM3f9Jychb2_y8pZm7PsCng-BfyRQexvPtavs,414
5
+ bridgex/OSL/LICENSE_MARKITDOWN,sha256=W6oln_0al1eAhp19KSUhIiTJIgbO-5b7K_CxRmUOUCk,1160
6
+ bridgex/OSL/LICENSE_PYSIDE6,sha256=LPNKwDiu5awG-TPd0dqYJuC7k4PBPY4LCI_O0LSpW1s,7814
7
+ bridgex/OSL/url_licenses.srm,sha256=Dh8tdR5XpmOv8jG1_zegMEUIS5xshPpRNQg6PVnuyIg,187
8
+ bridgex/database/Manager.py,sha256=4DFRRVo-XuLyl4T4B8ClkZ2VXYdovDwqctQe_0kDhKA,1080
9
+ bridgex/database/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
+ bridgex/interface/__init__.py,sha256=S-E8qM1fKlFO1PV_-QJmAvO7UvNPXvGOGf6kyroZ0YM,229
11
+ bridgex/interface/_about.py,sha256=h8gIJKumgov6l1BJxe-mSI2uGkgPUxmsByVCBm5DCwg,807
12
+ bridgex/interface/_initialHelp.py,sha256=Y-0tiLPjxB7FRfHMQPgZPLaIftMlcYgryaKPina4FEA,1413
13
+ bridgex/interface/_interface.py,sha256=Q2mmorUIOM-yg7mgU2JK0zGJDdiNmuRw71TjRy47PDM,10150
14
+ bridgex/interface/_lang.py,sha256=wFaCE0IYstuZY-nQWVX2N8CieLX6M0NO6_UP96vRU4Y,2286
15
+ bridgex/interface/_osl.py,sha256=G1lMMGtwGIyCwX_5xKn6Py1bmPdUnZgZNlNKR3tB-FY,1484
16
+ bridgex/interface/resources_rc.py,sha256=YxgB4RNhBFf9FE_etLLeYk9Y4OW_bh911OtttZ2wGBg,1711596
17
+ bridgex/interface/ui_dialog_about.py,sha256=grAx6U3h5TJjE7X--pX0oLMFRAf1F92p-Cc_P-DVl0A,5058
18
+ bridgex/interface/ui_dialog_language.py,sha256=kKz6D8da1In8un58WgJ2azaQzjxE8NKe5jPqAdYG5qI,5753
19
+ bridgex/interface/ui_main_window.py,sha256=Z5TCebLE3zgSlExTYYiM9j3a6mD_d11wfaKcVXcJ4KA,31357
20
+ bridgex/interface/ui_osl.py,sha256=HPSWwydIwVyjmlyn7XUaKiOHmF7fIdNyfePd6o8MYKE,6562
21
+ bridgex/interface/assets/img/gh-logo.png,sha256=2D3fTqmOnS53hIhpy-Xw7KuzBY7eIsaBu-B7RakJGQk,8640
22
+ bridgex/interface/assets/img/osl_icon.webp,sha256=FD1B7a_JEB4dcJ72slEY2OV6EmM75btJuYgaZikf4W4,8328
23
+ bridgex/interface/assets/img/language/en_GB.svg,sha256=-9URqdMPAOuYuuEZ_RxiTlpcvukHiNgdDWh3WQxOYss,1966
24
+ bridgex/interface/assets/img/language/es_CO.svg,sha256=ahwRqtFK4kw8505iITmzFW2K2Er35rX5OvVAtCBlgWQ,787
25
+ bridgex/interface/assets/img/logo-bridgex/logo-bridgex-2.1.png,sha256=X-0afFfctufu_rhLfJdUP1rPJQbcD-W_ivoAUKU2TaE,187044
26
+ bridgex/interface/assets/img/logo-bridgex/logo-bridgex-2.2.png,sha256=9E3QhzFtUjZ-ezLW2PU7hhq4rkbo9WKO2cxCpS91JjE,32941
27
+ bridgex/interface/assets/img/logo-bridgex/logo-bridgex-2.png,sha256=9eEWA68WEdBEEBORPd5vXH87aXpFORVgwTy9Aq0LLbM,312673
28
+ bridgex/interface/translations/locale/bridge_es_CO.qm,sha256=AQP5QNf2reUkHDYT28SjdNBKL1pEKbOljJywwSkb8EU,7206
29
+ bridgex/interface/translations/locale/bridge_es_GB.qm,sha256=YNJd5nJ3Q1mglOjEQ1R5PQXsxvTE0X3jBFiBK1Y2eqQ,7024
30
+ bridgex/interface/translations/others/ABOUT_en_GB.trg,sha256=mt7GC-kO68uRpbQP4njwESlj_JLJ0XHxIhsSTnYd0sI,3032
31
+ bridgex/interface/translations/others/ABOUT_es_CO.trg,sha256=x88VR_AZE8bGde4d2KFVGBN9RKo6Q4bJ_bZ2WUslbOA,3081
32
+ bridgex/interface/translations/others/IH_en_GB.srm,sha256=8p9nTuzR7DtzqEa7Nhp3gqtVBsCuWQ-4OauQ87eMxPM,551
33
+ bridgex/interface/translations/others/IH_es_CO.srm,sha256=ntpykd377NU3F3g1N7lzA9LuPaStmCMR_CN0mzlv-GU,582
34
+ bridgex/interface/translations/others/NOTICE_en_GB.srm,sha256=VHk3wkf02Kn268TORijC3KDzbg7G43nTxd-5qqMda7M,1691
35
+ bridgex/interface/translations/others/NOTICE_es_CO.srm,sha256=AaeTOTb6dqpVTo6OwgQzk1OfM97l0nSXTOmTQmE5UC8,1821
36
+ bridgex/logic/Converter.py,sha256=6NJCQA6qxQ3E2JykRKpTEjmHi9bPvJU3FtVpm-m1mIg,1406
37
+ bridgex/logic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
38
+ bridgex/logs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
39
+ bridgex/models/Returning.py,sha256=wKhjtOjlKRua8AHPJAAO420J56pq6v91xBu5xMGr4UE,645
40
+ bridgex/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
41
+ bridgex/utils/FilesManager.py,sha256=ObqSvXEWK4swQOBFnOwIULJBVnHhK1tm4poM2cCP_ss,2720
42
+ bridgex/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
43
+ bridgex-0.0.1.dev0.dist-info/licenses/LICENSE,sha256=lQkqkmny-NvbX9VR5MNlqyHhyjgvqrcUVcCR2AdTBow,1087
44
+ bridgex-0.0.1.dev0.dist-info/METADATA,sha256=kAsXwlFXOjjyrcrYy4oBLAFWlksYIm_fC0OKxLvEA8Y,6389
45
+ bridgex-0.0.1.dev0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
46
+ bridgex-0.0.1.dev0.dist-info/entry_points.txt,sha256=jUkwrfr53o7lWsl0vFQZtLNMOwuCMyywF9DnAi0Yi14,50
47
+ bridgex-0.0.1.dev0.dist-info/top_level.txt,sha256=P0i6qai2HUtJKI-TN8i-LI5U0THcl1KI0P7C8wuhrEI,8
48
+ bridgex-0.0.1.dev0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ bridgex = bridgex.__main__:main
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Dev2Forge
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1 @@
1
+ bridgex