diffx-python 0.4.2__tar.gz → 0.4.3__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: diffx-python
3
- Version: 0.4.2
3
+ Version: 0.4.3
4
4
  Summary: Python wrapper for diffx - semantic diffing of JSON, YAML, TOML, XML, INI, and CSV files. Focuses on structural meaning rather than formatting.
5
5
  Project-URL: Homepage, https://github.com/kako-jun/diffx
6
6
  Project-URL: Repository, https://github.com/kako-jun/diffx
@@ -46,8 +46,6 @@ This will automatically download the appropriate `diffx` binary for your system
46
46
 
47
47
  ## Usage
48
48
 
49
- ### Modern API (Recommended)
50
-
51
49
  ```python
52
50
  import diffx
53
51
 
@@ -84,20 +82,6 @@ string_result = diffx.diff_string(
84
82
  )
85
83
  ```
86
84
 
87
- ### Legacy API (Backward Compatibility)
88
-
89
- ```python
90
- from diffx import run_diffx
91
-
92
- # Compare two JSON files (legacy)
93
- result = run_diffx(["file1.json", "file2.json"])
94
-
95
- if result.returncode == 0:
96
- print("No differences found.")
97
- else:
98
- print("Differences found:")
99
- print(result.stdout)
100
- ```
101
85
 
102
86
  ## Features
103
87
 
@@ -12,8 +12,6 @@ This will automatically download the appropriate `diffx` binary for your system
12
12
 
13
13
  ## Usage
14
14
 
15
- ### Modern API (Recommended)
16
-
17
15
  ```python
18
16
  import diffx
19
17
 
@@ -50,20 +48,6 @@ string_result = diffx.diff_string(
50
48
  )
51
49
  ```
52
50
 
53
- ### Legacy API (Backward Compatibility)
54
-
55
- ```python
56
- from diffx import run_diffx
57
-
58
- # Compare two JSON files (legacy)
59
- result = run_diffx(["file1.json", "file2.json"])
60
-
61
- if result.returncode == 0:
62
- print("No differences found.")
63
- else:
64
- print("Differences found:")
65
- print(result.stdout)
66
- ```
67
51
 
68
52
  ## Features
69
53
 
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "diffx-python"
7
- version = "0.4.2"
7
+ version = "0.4.3"
8
8
  description = "Python wrapper for diffx - semantic diffing of JSON, YAML, TOML, XML, INI, and CSV files. Focuses on structural meaning rather than formatting."
9
9
  readme = "README.md"
10
10
  license = "MIT"
@@ -18,7 +18,7 @@ try:
18
18
  DIFFX_VERSION = importlib.metadata.version("diffx-python")
19
19
  except importlib.metadata.PackageNotFoundError:
20
20
  # Fallback for development
21
- DIFFX_VERSION = "0.4.2"
21
+ DIFFX_VERSION = "0.4.3"
22
22
 
23
23
 
24
24
  def get_platform_info():
File without changes