rostaing-ocr 0.1.0__tar.gz → 0.1.1__tar.gz
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.
- {rostaing_ocr-0.1.0/src/rostaing_ocr.egg-info → rostaing_ocr-0.1.1}/PKG-INFO +12 -3
- {rostaing_ocr-0.1.0 → rostaing_ocr-0.1.1}/README.md +10 -1
- {rostaing_ocr-0.1.0 → rostaing_ocr-0.1.1}/pyproject.toml +3 -3
- {rostaing_ocr-0.1.0 → rostaing_ocr-0.1.1/src/rostaing_ocr.egg-info}/PKG-INFO +12 -3
- {rostaing_ocr-0.1.0 → rostaing_ocr-0.1.1}/LICENSE +0 -0
- {rostaing_ocr-0.1.0 → rostaing_ocr-0.1.1}/setup.cfg +0 -0
- {rostaing_ocr-0.1.0 → rostaing_ocr-0.1.1}/src/rostaing_ocr/__init__.py +0 -0
- {rostaing_ocr-0.1.0 → rostaing_ocr-0.1.1}/src/rostaing_ocr/rostaing_ocr.py +0 -0
- {rostaing_ocr-0.1.0 → rostaing_ocr-0.1.1}/src/rostaing_ocr.egg-info/SOURCES.txt +0 -0
- {rostaing_ocr-0.1.0 → rostaing_ocr-0.1.1}/src/rostaing_ocr.egg-info/dependency_links.txt +0 -0
- {rostaing_ocr-0.1.0 → rostaing_ocr-0.1.1}/src/rostaing_ocr.egg-info/requires.txt +0 -0
- {rostaing_ocr-0.1.0 → rostaing_ocr-0.1.1}/src/rostaing_ocr.egg-info/top_level.txt +0 -0
@@ -1,8 +1,8 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: rostaing-ocr
|
3
|
-
Version: 0.1.
|
4
|
-
Summary:
|
5
|
-
Author-email: Davila Rostaing <
|
3
|
+
Version: 0.1.1
|
4
|
+
Summary: An OCR tool to extract text from scanned and non-scanned images and PDFs.
|
5
|
+
Author-email: Davila Rostaing <rostaingdavila@gmail.com>
|
6
6
|
Project-URL: Homepage, https://github.com/Rostaing/rostaing-ocr
|
7
7
|
Project-URL: Bug Tracker, https://github.com/Rostaing/rostaing-ocr/issues
|
8
8
|
Classifier: Programming Language :: Python :: 3
|
@@ -110,6 +110,9 @@ extractor = RostaingOCR(
|
|
110
110
|
print_to_console=True # Optionel
|
111
111
|
)
|
112
112
|
|
113
|
+
# You can print to get a summary of the operation.
|
114
|
+
print(extractor)
|
115
|
+
|
113
116
|
# --- Example 2: Process multiple files and print to console ---
|
114
117
|
# This will process both files, save a consolidated output, and also print the results.
|
115
118
|
multi_extractor = RostaingOCR(
|
@@ -141,3 +144,9 @@ In short, `Rostaing OCR` unlocks your documents, making them ready for any moder
|
|
141
144
|
## License
|
142
145
|
|
143
146
|
This project is licensed under the MIT License. See the `LICENSE` file for more details.
|
147
|
+
|
148
|
+
## Useful Links
|
149
|
+
- Github: https://github.com/Rostaing/rostaing-ocr
|
150
|
+
- Pypi: https://pypi.org/project/rostaing-ocr/
|
151
|
+
- Linkedin: https://www.linkedin.com/in/davila-rostaing/
|
152
|
+
- YouTube: [youtube.com/@RostaingAI?sub_confirmation=1](https://youtube.com/@rostaingai?si=b7jqDY4qh3_AMSXE)
|
@@ -88,6 +88,9 @@ extractor = RostaingOCR(
|
|
88
88
|
print_to_console=True # Optionel
|
89
89
|
)
|
90
90
|
|
91
|
+
# You can print to get a summary of the operation.
|
92
|
+
print(extractor)
|
93
|
+
|
91
94
|
# --- Example 2: Process multiple files and print to console ---
|
92
95
|
# This will process both files, save a consolidated output, and also print the results.
|
93
96
|
multi_extractor = RostaingOCR(
|
@@ -118,4 +121,10 @@ In short, `Rostaing OCR` unlocks your documents, making them ready for any moder
|
|
118
121
|
|
119
122
|
## License
|
120
123
|
|
121
|
-
This project is licensed under the MIT License. See the `LICENSE` file for more details.
|
124
|
+
This project is licensed under the MIT License. See the `LICENSE` file for more details.
|
125
|
+
|
126
|
+
## Useful Links
|
127
|
+
- Github: https://github.com/Rostaing/rostaing-ocr
|
128
|
+
- Pypi: https://pypi.org/project/rostaing-ocr/
|
129
|
+
- Linkedin: https://www.linkedin.com/in/davila-rostaing/
|
130
|
+
- YouTube: [youtube.com/@RostaingAI?sub_confirmation=1](https://youtube.com/@rostaingai?si=b7jqDY4qh3_AMSXE)
|
@@ -6,11 +6,11 @@ build-backend = "setuptools.build_meta"
|
|
6
6
|
|
7
7
|
[project]
|
8
8
|
name = "rostaing-ocr"
|
9
|
-
version = "0.1.
|
9
|
+
version = "0.1.1" # Commencez par une version initiale
|
10
10
|
authors = [
|
11
|
-
{ name="Davila Rostaing", email="
|
11
|
+
{ name="Davila Rostaing", email="rostaingdavila@gmail.com" },
|
12
12
|
]
|
13
|
-
description = "
|
13
|
+
description = "An OCR tool to extract text from scanned and non-scanned images and PDFs."
|
14
14
|
readme = "README.md"
|
15
15
|
requires-python = ">=3.7"
|
16
16
|
classifiers = [
|
@@ -1,8 +1,8 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: rostaing-ocr
|
3
|
-
Version: 0.1.
|
4
|
-
Summary:
|
5
|
-
Author-email: Davila Rostaing <
|
3
|
+
Version: 0.1.1
|
4
|
+
Summary: An OCR tool to extract text from scanned and non-scanned images and PDFs.
|
5
|
+
Author-email: Davila Rostaing <rostaingdavila@gmail.com>
|
6
6
|
Project-URL: Homepage, https://github.com/Rostaing/rostaing-ocr
|
7
7
|
Project-URL: Bug Tracker, https://github.com/Rostaing/rostaing-ocr/issues
|
8
8
|
Classifier: Programming Language :: Python :: 3
|
@@ -110,6 +110,9 @@ extractor = RostaingOCR(
|
|
110
110
|
print_to_console=True # Optionel
|
111
111
|
)
|
112
112
|
|
113
|
+
# You can print to get a summary of the operation.
|
114
|
+
print(extractor)
|
115
|
+
|
113
116
|
# --- Example 2: Process multiple files and print to console ---
|
114
117
|
# This will process both files, save a consolidated output, and also print the results.
|
115
118
|
multi_extractor = RostaingOCR(
|
@@ -141,3 +144,9 @@ In short, `Rostaing OCR` unlocks your documents, making them ready for any moder
|
|
141
144
|
## License
|
142
145
|
|
143
146
|
This project is licensed under the MIT License. See the `LICENSE` file for more details.
|
147
|
+
|
148
|
+
## Useful Links
|
149
|
+
- Github: https://github.com/Rostaing/rostaing-ocr
|
150
|
+
- Pypi: https://pypi.org/project/rostaing-ocr/
|
151
|
+
- Linkedin: https://www.linkedin.com/in/davila-rostaing/
|
152
|
+
- YouTube: [youtube.com/@RostaingAI?sub_confirmation=1](https://youtube.com/@rostaingai?si=b7jqDY4qh3_AMSXE)
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|