pdflinkcheck 1.2.11__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.

Potentially problematic release.


This version of pdflinkcheck might be problematic. Click here for more details.

Files changed (180) hide show
  1. pdflinkcheck-1.2.11/LICENSE +27 -0
  2. pdflinkcheck-1.2.11/LICENSE-AGPL3 +661 -0
  3. pdflinkcheck-1.2.11/LICENSE-MIT +9 -0
  4. pdflinkcheck-1.2.11/PKG-INFO +337 -0
  5. pdflinkcheck-1.2.11/README.md +288 -0
  6. pdflinkcheck-1.2.11/pyproject.toml +92 -0
  7. pdflinkcheck-1.2.11/src/pdflinkcheck/__init__.py +130 -0
  8. pdflinkcheck-1.2.11/src/pdflinkcheck/__main__.py +5 -0
  9. pdflinkcheck-1.2.11/src/pdflinkcheck/_create-submission-retry.yml +142 -0
  10. pdflinkcheck-1.2.11/src/pdflinkcheck/analysis_pdfium.py +123 -0
  11. pdflinkcheck-1.2.11/src/pdflinkcheck/analysis_pymupdf.py +318 -0
  12. pdflinkcheck-1.2.11/src/pdflinkcheck/analysis_pypdf.py +212 -0
  13. pdflinkcheck-1.2.11/src/pdflinkcheck/analysis_pypdf_v2.py +217 -0
  14. pdflinkcheck-1.2.11/src/pdflinkcheck/cli.py +328 -0
  15. pdflinkcheck-1.2.11/src/pdflinkcheck/data/I Have Questions.md +51 -0
  16. pdflinkcheck-1.2.11/src/pdflinkcheck/data/LICENSE +27 -0
  17. pdflinkcheck-1.2.11/src/pdflinkcheck/data/README.md +288 -0
  18. pdflinkcheck-1.2.11/src/pdflinkcheck/data/icons/BoxArt-1080x1080.png +0 -0
  19. pdflinkcheck-1.2.11/src/pdflinkcheck/data/icons/Logo-150x150.png +0 -0
  20. pdflinkcheck-1.2.11/src/pdflinkcheck/data/icons/Logo-300x300.png +0 -0
  21. pdflinkcheck-1.2.11/src/pdflinkcheck/data/icons/Logo-71x71.png +0 -0
  22. pdflinkcheck-1.2.11/src/pdflinkcheck/data/icons/PosterArt-720x1080.png +0 -0
  23. pdflinkcheck-1.2.11/src/pdflinkcheck/data/icons/SmallLogo-44x44.png +0 -0
  24. pdflinkcheck-1.2.11/src/pdflinkcheck/data/icons/SplashScreen-620x300.png +0 -0
  25. pdflinkcheck-1.2.11/src/pdflinkcheck/data/icons/StoreLogo-50x50.png +0 -0
  26. pdflinkcheck-1.2.11/src/pdflinkcheck/data/icons/WideLogo-310x150.png +0 -0
  27. pdflinkcheck-1.2.11/src/pdflinkcheck/data/icons/red_pdf_512px.ico +0 -0
  28. pdflinkcheck-1.2.11/src/pdflinkcheck/data/pyproject.toml +92 -0
  29. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/border-accent-hover.png +0 -0
  30. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/border-accent.png +0 -0
  31. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/border-basic.png +0 -0
  32. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/border-hover.png +0 -0
  33. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/border-invalid.png +0 -0
  34. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/card.png +0 -0
  35. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/check-accent.png +0 -0
  36. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/check-basic.png +0 -0
  37. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/check-hover.png +0 -0
  38. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/check-tri-accent.png +0 -0
  39. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/check-tri-basic.png +0 -0
  40. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/check-tri-hover.png +0 -0
  41. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/check-unsel-accent.png +0 -0
  42. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/check-unsel-basic.png +0 -0
  43. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/check-unsel-hover.png +0 -0
  44. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/check-unsel-pressed.png +0 -0
  45. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/combo-button-basic.png +0 -0
  46. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/combo-button-focus.png +0 -0
  47. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/combo-button-hover.png +0 -0
  48. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/down.png +0 -0
  49. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/empty.png +0 -0
  50. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/hor-accent.png +0 -0
  51. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/hor-basic.png +0 -0
  52. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/hor-hover.png +0 -0
  53. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/notebook.png +0 -0
  54. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/off-accent.png +0 -0
  55. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/off-basic.png +0 -0
  56. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/off-hover.png +0 -0
  57. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/on-accent.png +0 -0
  58. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/on-basic.png +0 -0
  59. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/on-hover.png +0 -0
  60. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/radio-accent.png +0 -0
  61. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/radio-basic.png +0 -0
  62. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/radio-hover.png +0 -0
  63. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/radio-tri-accent.png +0 -0
  64. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/radio-tri-basic.png +0 -0
  65. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/radio-tri-hover.png +0 -0
  66. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/radio-unsel-accent.png +0 -0
  67. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/radio-unsel-basic.png +0 -0
  68. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/radio-unsel-hover.png +0 -0
  69. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/radio-unsel-pressed.png +0 -0
  70. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/rect-accent-hover.png +0 -0
  71. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/rect-accent.png +0 -0
  72. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/rect-basic.png +0 -0
  73. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/rect-hover.png +0 -0
  74. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/right.png +0 -0
  75. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/scale-hor.png +0 -0
  76. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/scale-vert.png +0 -0
  77. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/separator.png +0 -0
  78. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/sizegrip.png +0 -0
  79. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/spin-button-down-basic.png +0 -0
  80. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/spin-button-down-focus.png +0 -0
  81. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/spin-button-up.png +0 -0
  82. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/tab-accent.png +0 -0
  83. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/tab-basic.png +0 -0
  84. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/tab-hover.png +0 -0
  85. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/thumb-hor-accent.png +0 -0
  86. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/thumb-hor-basic.png +0 -0
  87. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/thumb-hor-hover.png +0 -0
  88. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/thumb-vert-accent.png +0 -0
  89. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/thumb-vert-basic.png +0 -0
  90. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/thumb-vert-hover.png +0 -0
  91. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/tree-basic.png +0 -0
  92. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/tree-pressed.png +0 -0
  93. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/up.png +0 -0
  94. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/vert-accent.png +0 -0
  95. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/vert-basic.png +0 -0
  96. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark/vert-hover.png +0 -0
  97. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-dark.tcl +536 -0
  98. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/border-accent-hover.png +0 -0
  99. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/border-accent.png +0 -0
  100. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/border-basic.png +0 -0
  101. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/border-hover.png +0 -0
  102. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/border-invalid.png +0 -0
  103. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/card.png +0 -0
  104. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/check-accent.png +0 -0
  105. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/check-basic.png +0 -0
  106. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/check-hover.png +0 -0
  107. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/check-tri-accent.png +0 -0
  108. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/check-tri-basic.png +0 -0
  109. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/check-tri-hover.png +0 -0
  110. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/check-unsel-accent.png +0 -0
  111. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/check-unsel-basic.png +0 -0
  112. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/check-unsel-hover.png +0 -0
  113. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/check-unsel-pressed.png +0 -0
  114. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/combo-button-basic.png +0 -0
  115. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/combo-button-focus.png +0 -0
  116. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/combo-button-hover.png +0 -0
  117. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/down-focus.png +0 -0
  118. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/down.png +0 -0
  119. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/empty.png +0 -0
  120. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/hor-accent.png +0 -0
  121. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/hor-basic.png +0 -0
  122. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/hor-hover.png +0 -0
  123. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/notebook.png +0 -0
  124. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/off-accent.png +0 -0
  125. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/off-basic.png +0 -0
  126. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/off-hover.png +0 -0
  127. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/on-accent.png +0 -0
  128. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/on-basic.png +0 -0
  129. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/on-hover.png +0 -0
  130. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/radio-accent.png +0 -0
  131. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/radio-basic.png +0 -0
  132. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/radio-hover.png +0 -0
  133. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/radio-tri-accent.png +0 -0
  134. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/radio-tri-basic.png +0 -0
  135. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/radio-tri-hover.png +0 -0
  136. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/radio-unsel-accent.png +0 -0
  137. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/radio-unsel-basic.png +0 -0
  138. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/radio-unsel-hover.png +0 -0
  139. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/radio-unsel-pressed.png +0 -0
  140. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/rect-accent-hover.png +0 -0
  141. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/rect-accent.png +0 -0
  142. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/rect-basic.png +0 -0
  143. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/rect-hover.png +0 -0
  144. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/right-focus.png +0 -0
  145. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/right.png +0 -0
  146. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/scale-hor.png +0 -0
  147. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/scale-vert.png +0 -0
  148. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/separator.png +0 -0
  149. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/sizegrip.png +0 -0
  150. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/spin-button-down-basic.png +0 -0
  151. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/spin-button-down-focus.png +0 -0
  152. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/spin-button-up.png +0 -0
  153. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/tab-accent.png +0 -0
  154. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/tab-basic.png +0 -0
  155. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/tab-hover.png +0 -0
  156. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/thumb-hor-accent.png +0 -0
  157. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/thumb-hor-basic.png +0 -0
  158. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/thumb-hor-hover.png +0 -0
  159. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/thumb-vert-accent.png +0 -0
  160. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/thumb-vert-basic.png +0 -0
  161. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/thumb-vert-hover.png +0 -0
  162. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/tree-basic.png +0 -0
  163. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/tree-pressed.png +0 -0
  164. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/up.png +0 -0
  165. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/vert-accent.png +0 -0
  166. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/vert-basic.png +0 -0
  167. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light/vert-hover.png +0 -0
  168. pdflinkcheck-1.2.11/src/pdflinkcheck/data/themes/forest/forest-light.tcl +544 -0
  169. pdflinkcheck-1.2.11/src/pdflinkcheck/datacopy.py +62 -0
  170. pdflinkcheck-1.2.11/src/pdflinkcheck/dev.py +96 -0
  171. pdflinkcheck-1.2.11/src/pdflinkcheck/environment.py +76 -0
  172. pdflinkcheck-1.2.11/src/pdflinkcheck/gui_tight.py +415 -0
  173. pdflinkcheck-1.2.11/src/pdflinkcheck/helpers.py +88 -0
  174. pdflinkcheck-1.2.11/src/pdflinkcheck/io.py +199 -0
  175. pdflinkcheck-1.2.11/src/pdflinkcheck/report.py +525 -0
  176. pdflinkcheck-1.2.11/src/pdflinkcheck/security.py +189 -0
  177. pdflinkcheck-1.2.11/src/pdflinkcheck/stdlib_server.py +172 -0
  178. pdflinkcheck-1.2.11/src/pdflinkcheck/update_msix_version.py +47 -0
  179. pdflinkcheck-1.2.11/src/pdflinkcheck/validate.py +417 -0
  180. pdflinkcheck-1.2.11/src/pdflinkcheck/version_info.py +86 -0
@@ -0,0 +1,27 @@
1
+ Some distributed binaries of this project include the PyMuPDF library, which is licensed under **AGPL3.0orlater**.
2
+ Any binary that incorporates PyMuPDF is therefore distributed under **AGPL3.0orlater**.
3
+ Other binaries use only the `pypdf` library and do not include PyMuPDF; these binaries are distributed under the **MIT License**.
4
+
5
+ For AGPLlicensed binaries, the complete corresponding source code must be made available to anyone who possesses a copy, upon request.
6
+ This obligation applies only to recipients of those binaries, and hosting the source code in GitHub Releases satisfies this requirement.
7
+
8
+ A binary becomes AGPLlicensed only when built with the optional `"full"` dependency group (as defined in `pyproject.toml` under `[project.optional-dependencies]`) or when PyMuPDF is otherwise included in the build environment.
9
+ The **source code of pdflinkcheck itself** remains licensed under the **MIT License**; only the distributed binary becomes AGPLlicensed when PyMuPDF is included.
10
+
11
+ Source code for each released version is available in the `pdflinkcheckVERSION.tar.gz` files on the projects GitHub Releases page.
12
+
13
+ Fulltext copies of **LICENSEMIT** and **LICENSEAGPL3** are included in the root of the repository.
14
+
15
+ **Links:**
16
+ - Project source code: https://github.com/City-of-Memphis-Wastewater/pdflinkcheck
17
+ - PyMuPDF source code: https://github.com/pymupdf/PyMuPDF
18
+ - pypdfium2 source code: https://github.com/pypdfium2-team/pypdfium2
19
+ - PDFium source code: https://pdfium.googlesource.com/pdfium/
20
+ - pypdf source code: https://github.com/py-pdf/pypdf
21
+ - AGPLv3 text (FSF): https://www.gnu.org/licenses/agpl-3.0.html
22
+ - MIT License text: https://opensource.org/license/mit
23
+ - BSD-3 License text: https://opensource.org/license/bsd-3-clause
24
+ - Apache-v2 License text: https://opensource.org/license/apache-2-0
25
+
26
+
27
+ Copyright 2025 George Clayton Bennett