You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*A fast, pure‑Python Aztec Code reader with auto‑orientation and Reed–Solomon correction.*
@@ -16,10 +16,10 @@
16
16
17
17
This library is compatible with **Python 3.9** and above.
18
18
19
-
To install the latest version of Aztec decoder, you can use pip. Open your terminal and run the following command (in a virtual environment if you want to keep your system clean):
19
+
To install the latest version of Aztec tool, you can use pip. Open your terminal and run the following command (in a virtual environment if you want to keep your system clean):
20
20
21
21
```bash
22
-
pip install --upgrade aztec_decoder
22
+
pip install --upgrade aztec_tool
23
23
```
24
24
25
25
If you cloned the repository, you can install it using pip as well, in the root directory of the project:
@@ -40,9 +40,9 @@ The library allows you to decode Aztec barcodes from images. First, you need to
40
40
The most common way to use the library is to use the `AztecDecoder` class. You can create an instance of the class and call the `decode` method with the path to the image file as an argument:
41
41
42
42
```python
43
-
>>>fromaztec_decoderimport decode
43
+
>>>fromaztec_toolimport decode
44
44
>>> decode("welcome_lib.jpg")
45
-
'Welcome to Aztec decoder lib !'
45
+
'Welcome to Aztec tool lib !'
46
46
>>>
47
47
```
48
48
@@ -56,7 +56,7 @@ If you need to access more specific data, you can use the `AztecDecoder` class d
0 commit comments