devicer.py 0.1.3__tar.gz → 0.1.4__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.
- {devicer_py-0.1.3 → devicer_py-0.1.4}/PKG-INFO +1 -1
- {devicer_py-0.1.3 → devicer_py-0.1.4}/pyproject.toml +1 -1
- {devicer_py-0.1.3 → devicer_py-0.1.4}/src/devicer/confidence.py +1 -1
- {devicer_py-0.1.3 → devicer_py-0.1.4}/src/devicer.py.egg-info/PKG-INFO +1 -1
- {devicer_py-0.1.3 → devicer_py-0.1.4}/README.md +0 -0
- {devicer_py-0.1.3 → devicer_py-0.1.4}/license.txt +0 -0
- {devicer_py-0.1.3 → devicer_py-0.1.4}/setup.cfg +0 -0
- {devicer_py-0.1.3 → devicer_py-0.1.4}/src/devicer/__init__.py +0 -0
- {devicer_py-0.1.3 → devicer_py-0.1.4}/src/devicer/hashing.py +0 -0
- {devicer_py-0.1.3 → devicer_py-0.1.4}/src/devicer.py.egg-info/SOURCES.txt +0 -0
- {devicer_py-0.1.3 → devicer_py-0.1.4}/src/devicer.py.egg-info/dependency_links.txt +0 -0
- {devicer_py-0.1.3 → devicer_py-0.1.4}/src/devicer.py.egg-info/requires.txt +0 -0
- {devicer_py-0.1.3 → devicer_py-0.1.4}/src/devicer.py.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: devicer.py
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.4
|
4
4
|
Summary: Open-Source Python Middleware for Digital Fingerprinting
|
5
5
|
Author: One anonymous contributor
|
6
6
|
Author-email: Samuel Roux <sam.roux.com@gmail.com>, Stephen Perso <stephenrperso@gmail.com>
|
@@ -6,7 +6,7 @@ requires = [
|
|
6
6
|
build-backend = "setuptools.build_meta"
|
7
7
|
[project]
|
8
8
|
name = "devicer.py"
|
9
|
-
version = "0.1.
|
9
|
+
version = "0.1.4"
|
10
10
|
authors = [
|
11
11
|
{name = "Samuel Roux", email = "sam.roux.com@gmail.com"},
|
12
12
|
{name = "Stephen Perso", email = "stephenrperso@gmail.com"},
|
@@ -17,7 +17,7 @@ def compare_dictionaries(data1: dict, data2: dict) -> tuple[int, int]:
|
|
17
17
|
for key in data1:
|
18
18
|
if key in data2:
|
19
19
|
fields += 1
|
20
|
-
if isinstance(data1[key], dict):
|
20
|
+
if isinstance(data1[key], dict) and isinstance(data2[key], dict):
|
21
21
|
sub_matches, sub_fields = compare_dictionaries(data1[key], data2[key])
|
22
22
|
matches += sub_matches
|
23
23
|
fields += sub_fields - 1 # Subtract 1 to avoid double counting the key
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: devicer.py
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.4
|
4
4
|
Summary: Open-Source Python Middleware for Digital Fingerprinting
|
5
5
|
Author: One anonymous contributor
|
6
6
|
Author-email: Samuel Roux <sam.roux.com@gmail.com>, Stephen Perso <stephenrperso@gmail.com>
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|