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.*
8
10
9
11
-------------
10
12
## Table of content
11
13
1.[Installation](#installation)
12
14
2.[Usage](#usage)
13
-
3.[Changelog](#changelog)
14
-
4.[TODO](#todo)
15
-
5.[License](#license)
15
+
3.[Useful links](#useful-links)
16
+
-[Contributing](#contributing)
17
+
-[Security](#security)
18
+
-[Changelog](#changelog)
19
+
-[TODO](#todo)
20
+
-[License](#license)
21
+
-[Code of Conduct](#code-of-conduct)
16
22
6.[Resources](#Resources)
17
23
18
24
## Installation
@@ -52,7 +58,7 @@ The most common way to use the library is to use the `AztecDecoder` class. You c
52
58
If you need to access more specific data, you can use the `AztecDecoder` class directly:
53
59
54
60
```python
55
-
>>>fromaztec_decoderimport AztecDecoder
61
+
>>>fromaztec_toolimport AztecDecoder
56
62
>>> decoder = AztecDecoder("welcome_lib.jpg")
57
63
>>> decoder.aztec_type
58
64
<AztecType.COMPACT: 0>
@@ -71,7 +77,7 @@ If you have some problems with the correction, it can be useful to set `auto_cor
71
77
72
78
If you need very specific data, you can access the `AztecDecoder` class attributes, or directly the various classes used in the library.
73
79
74
-
This library has his own exceptions. You can find them in the `exceptions.py` file. The most common exception is `AztecDecoderError`, which is the parent class of all the exceptions in the library.
80
+
This library has its own exceptions. You can find them in the `exceptions.py` file. The most common exception is `AztecDecoderError`, which is the parent class of all the exceptions in the library.
75
81
76
82
The tool is also available as a command line interface (CLI). You can use it by running the following command in your terminal:
77
83
@@ -90,17 +96,27 @@ Data words: 21
90
96
ECC bits: 01010101010010101000
91
97
```
92
98
93
-
To have all the options available, you can run `aztec-tool -h`.
99
+
You can view all available options by running `aztec-tool -h`.
94
100
95
-
## Changelog
101
+
## Useful links
102
+
### Contributing
103
+
Contributions are welcome! If you want to contribute to the project, please read the [CONTRIBUTING.md](CONTRIBUTING.md) file.
104
+
105
+
### Security
106
+
If you discover any security vulnerabilities, please read the procedure in the [SECURITY.md](SECURITY.md) file.
107
+
108
+
### Changelog
96
109
The full changelog is available in the [CHANGELOG.md](CHANGELOG.md) file.
97
110
98
-
## TODO
111
+
###TODO
99
112
The plan for the next releases is available in the [TODO.md](TODO.md) file.
100
113
101
-
## License
114
+
###License
102
115
The Aztec tool is licensed under the MIT License. See the [LICENSE](LICENSE) file for more details.
103
116
117
+
### Code of Conduct
118
+
The Aztec tool is committed to providing a friendly, safe, and welcoming environment for all. Please read the [CODE_OF_CONDUCT.md](CODE_OF_CONDUCT.md) file for more details.
119
+
104
120
## Resources
105
121
These resources were very useful to understand the Aztec code and build this library:
0 commit comments