stringextn 1.0.3__tar.gz → 1.0.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.
- {stringextn-1.0.3/stringextn.egg-info → stringextn-1.0.4}/PKG-INFO +3 -4
- {stringextn-1.0.3 → stringextn-1.0.4}/README.md +2 -3
- {stringextn-1.0.3 → stringextn-1.0.4}/pyproject.toml +1 -1
- {stringextn-1.0.3 → stringextn-1.0.4/stringextn.egg-info}/PKG-INFO +3 -4
- {stringextn-1.0.3 → stringextn-1.0.4}/LICENSE +0 -0
- {stringextn-1.0.3 → stringextn-1.0.4}/setup.cfg +0 -0
- {stringextn-1.0.3 → stringextn-1.0.4}/stringextn/__init__.py +0 -0
- {stringextn-1.0.3 → stringextn-1.0.4}/stringextn/cases.py +0 -0
- {stringextn-1.0.3 → stringextn-1.0.4}/stringextn/clean.py +0 -0
- {stringextn-1.0.3 → stringextn-1.0.4}/stringextn/contains.py +0 -0
- {stringextn-1.0.3 → stringextn-1.0.4}/stringextn/fuzzy.py +0 -0
- {stringextn-1.0.3 → stringextn-1.0.4}/stringextn/replace.py +0 -0
- {stringextn-1.0.3 → stringextn-1.0.4}/stringextn/security.py +0 -0
- {stringextn-1.0.3 → stringextn-1.0.4}/stringextn/slug.py +0 -0
- {stringextn-1.0.3 → stringextn-1.0.4}/stringextn.egg-info/SOURCES.txt +0 -0
- {stringextn-1.0.3 → stringextn-1.0.4}/stringextn.egg-info/dependency_links.txt +0 -0
- {stringextn-1.0.3 → stringextn-1.0.4}/stringextn.egg-info/top_level.txt +0 -0
- {stringextn-1.0.3 → stringextn-1.0.4}/tests/test_cases.py +0 -0
- {stringextn-1.0.3 → stringextn-1.0.4}/tests/test_clean.py +0 -0
- {stringextn-1.0.3 → stringextn-1.0.4}/tests/test_contains.py +0 -0
- {stringextn-1.0.3 → stringextn-1.0.4}/tests/test_fuzzy.py +0 -0
- {stringextn-1.0.3 → stringextn-1.0.4}/tests/test_replace.py +0 -0
- {stringextn-1.0.3 → stringextn-1.0.4}/tests/test_security.py +0 -0
- {stringextn-1.0.3 → stringextn-1.0.4}/tests/test_slug.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: stringextn
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.4
|
|
4
4
|
Summary: Pragmatic string utilities for APIs and data cleaning
|
|
5
5
|
Author: Balaji Katta Venkatarathnam
|
|
6
6
|
License: MIT
|
|
@@ -65,14 +65,14 @@ contains_any("hello world", ["world", "foo"]) # True
|
|
|
65
65
|
contains_all("hello world", ["hello", "world"]) # True
|
|
66
66
|
|
|
67
67
|
# Fuzzy string matching
|
|
68
|
-
similarity("kitten", "sitting") # 0.
|
|
68
|
+
similarity("kitten", "sitting") # 0.615
|
|
69
69
|
|
|
70
70
|
# Multi-replace
|
|
71
71
|
multi_replace("abc abc abc", {"a": "X", "b": "Y"}) # "XYc XYc XYc"
|
|
72
72
|
|
|
73
73
|
# Privacy masking
|
|
74
74
|
mask_email("user@example.com") # "u***@example.com"
|
|
75
|
-
mask_phone("5551234567") # "****
|
|
75
|
+
mask_phone("5551234567") # "****4567"
|
|
76
76
|
|
|
77
77
|
# URL-safe slugs
|
|
78
78
|
slugify("Hello, World! ✨") # "hello-world"
|
|
@@ -166,5 +166,4 @@ Contributions are welcome. Please ensure all tests pass and add tests for new fu
|
|
|
166
166
|
|
|
167
167
|
---
|
|
168
168
|
|
|
169
|
-
**Package**: stringextn v1.0.0
|
|
170
169
|
**GitHub**: [stringextn](https://github.com/balaji-kv/stringextn)
|
|
@@ -41,14 +41,14 @@ contains_any("hello world", ["world", "foo"]) # True
|
|
|
41
41
|
contains_all("hello world", ["hello", "world"]) # True
|
|
42
42
|
|
|
43
43
|
# Fuzzy string matching
|
|
44
|
-
similarity("kitten", "sitting") # 0.
|
|
44
|
+
similarity("kitten", "sitting") # 0.615
|
|
45
45
|
|
|
46
46
|
# Multi-replace
|
|
47
47
|
multi_replace("abc abc abc", {"a": "X", "b": "Y"}) # "XYc XYc XYc"
|
|
48
48
|
|
|
49
49
|
# Privacy masking
|
|
50
50
|
mask_email("user@example.com") # "u***@example.com"
|
|
51
|
-
mask_phone("5551234567") # "****
|
|
51
|
+
mask_phone("5551234567") # "****4567"
|
|
52
52
|
|
|
53
53
|
# URL-safe slugs
|
|
54
54
|
slugify("Hello, World! ✨") # "hello-world"
|
|
@@ -142,5 +142,4 @@ Contributions are welcome. Please ensure all tests pass and add tests for new fu
|
|
|
142
142
|
|
|
143
143
|
---
|
|
144
144
|
|
|
145
|
-
**Package**: stringextn v1.0.0
|
|
146
145
|
**GitHub**: [stringextn](https://github.com/balaji-kv/stringextn)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: stringextn
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.4
|
|
4
4
|
Summary: Pragmatic string utilities for APIs and data cleaning
|
|
5
5
|
Author: Balaji Katta Venkatarathnam
|
|
6
6
|
License: MIT
|
|
@@ -65,14 +65,14 @@ contains_any("hello world", ["world", "foo"]) # True
|
|
|
65
65
|
contains_all("hello world", ["hello", "world"]) # True
|
|
66
66
|
|
|
67
67
|
# Fuzzy string matching
|
|
68
|
-
similarity("kitten", "sitting") # 0.
|
|
68
|
+
similarity("kitten", "sitting") # 0.615
|
|
69
69
|
|
|
70
70
|
# Multi-replace
|
|
71
71
|
multi_replace("abc abc abc", {"a": "X", "b": "Y"}) # "XYc XYc XYc"
|
|
72
72
|
|
|
73
73
|
# Privacy masking
|
|
74
74
|
mask_email("user@example.com") # "u***@example.com"
|
|
75
|
-
mask_phone("5551234567") # "****
|
|
75
|
+
mask_phone("5551234567") # "****4567"
|
|
76
76
|
|
|
77
77
|
# URL-safe slugs
|
|
78
78
|
slugify("Hello, World! ✨") # "hello-world"
|
|
@@ -166,5 +166,4 @@ Contributions are welcome. Please ensure all tests pass and add tests for new fu
|
|
|
166
166
|
|
|
167
167
|
---
|
|
168
168
|
|
|
169
|
-
**Package**: stringextn v1.0.0
|
|
170
169
|
**GitHub**: [stringextn](https://github.com/balaji-kv/stringextn)
|
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|