file-observer 1.0.0__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.
- file_observer-1.0.0/LICENSE +55 -0
- file_observer-1.0.0/LICENSE-AGPL +661 -0
- file_observer-1.0.0/PKG-INFO +345 -0
- file_observer-1.0.0/docs/README.md +300 -0
- file_observer-1.0.0/pyproject.toml +56 -0
- file_observer-1.0.0/setup.cfg +4 -0
- file_observer-1.0.0/src/file_observer.egg-info/PKG-INFO +345 -0
- file_observer-1.0.0/src/file_observer.egg-info/SOURCES.txt +16 -0
- file_observer-1.0.0/src/file_observer.egg-info/dependency_links.txt +1 -0
- file_observer-1.0.0/src/file_observer.egg-info/entry_points.txt +3 -0
- file_observer-1.0.0/src/file_observer.egg-info/requires.txt +17 -0
- file_observer-1.0.0/src/file_observer.egg-info/top_level.txt +1 -0
- file_observer-1.0.0/src/scanner/__init__.py +3 -0
- file_observer-1.0.0/src/scanner/scanner.py +3282 -0
- file_observer-1.0.0/tests/test_edge_cases.py +1090 -0
- file_observer-1.0.0/tests/test_golden.py +95 -0
- file_observer-1.0.0/tests/test_integration.py +400 -0
- file_observer-1.0.0/tests/test_unit.py +3511 -0
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
File Observer
|
|
2
|
+
Copyright (c) 2026 Russell Pfister. All rights reserved.
|
|
3
|
+
|
|
4
|
+
This software is dual-licensed:
|
|
5
|
+
|
|
6
|
+
1. OPEN SOURCE LICENSE (AGPL v3)
|
|
7
|
+
|
|
8
|
+
For open source use, this software is licensed under the
|
|
9
|
+
GNU Affero General Public License, Version 3 (AGPL-3.0).
|
|
10
|
+
|
|
11
|
+
You may use, modify, and distribute this software under the
|
|
12
|
+
terms of the AGPL-3.0, provided that:
|
|
13
|
+
|
|
14
|
+
- Any modified versions you distribute are also licensed under AGPL-3.0
|
|
15
|
+
- If you run a modified version as a network service, you must make
|
|
16
|
+
the source code of your modified version available to users of
|
|
17
|
+
that service
|
|
18
|
+
|
|
19
|
+
The full text of the AGPL-3.0 is available at:
|
|
20
|
+
https://www.gnu.org/licenses/agpl-3.0.html
|
|
21
|
+
|
|
22
|
+
A copy is included in this repository at LICENSE-AGPL.
|
|
23
|
+
|
|
24
|
+
2. COMMERCIAL LICENSE
|
|
25
|
+
|
|
26
|
+
For use cases where the AGPL-3.0 terms are not suitable —
|
|
27
|
+
including but not limited to:
|
|
28
|
+
|
|
29
|
+
- Embedding scanner in proprietary software without source disclosure
|
|
30
|
+
- Offering scanner as part of a commercial SaaS or cloud service
|
|
31
|
+
without releasing your service code under AGPL
|
|
32
|
+
- Distributing scanner in proprietary products
|
|
33
|
+
- Obtaining support, warranty, or indemnification
|
|
34
|
+
|
|
35
|
+
A separate commercial license is available from Russalo LLC.
|
|
36
|
+
|
|
37
|
+
Contact: russalo@russalo.com
|
|
38
|
+
|
|
39
|
+
WHICH LICENSE APPLIES TO YOU?
|
|
40
|
+
|
|
41
|
+
- If you are using scanner internally (not offering it as a service
|
|
42
|
+
to others), the AGPL allows this without restriction. You do not
|
|
43
|
+
need a commercial license for internal use.
|
|
44
|
+
|
|
45
|
+
- If you are using scanner in an open source project licensed under
|
|
46
|
+
a compatible copyleft license, the AGPL applies.
|
|
47
|
+
|
|
48
|
+
- If you are offering scanner (or a modified version) as a network
|
|
49
|
+
service to third parties and do not wish to release your service
|
|
50
|
+
code under the AGPL, you need a commercial license.
|
|
51
|
+
|
|
52
|
+
- If you are embedding scanner in proprietary software for
|
|
53
|
+
distribution, you need a commercial license.
|
|
54
|
+
|
|
55
|
+
If you are unsure which license applies, contact russalo@russalo.com.
|