iparq 0.1.1__tar.gz → 0.1.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: iparq
3
- Version: 0.1.1
3
+ Version: 0.1.3
4
4
  Summary: Display version and compression information about a parquet file
5
5
  Author-email: MiguelElGallo <miguel.zurcher@gmail.com>
6
6
  License-File: LICENSE
@@ -32,23 +32,30 @@ After reading [this blog](https://duckdb.org/2025/01/22/parquet-encodings.html),
32
32
 
33
33
  ### Using uv
34
34
 
35
- 1) Clone the repo:
35
+ 1) Make sure to have Astral’s UV installed by following the steps here:
36
36
 
37
- ```sh
38
- git clone https://github.com/MiguelElGallo/iparq.git
39
- cd iparq
40
- ```
37
+ <https://docs.astral.sh/uv/getting-started/installation/>
41
38
 
42
- 2) Make sure to have Astral’s UV installed by following the steps here:
39
+ 2) Execute the following command:
43
40
 
44
- <https://docs.astral.sh/uv/getting-started/installation/>
41
+ ```sh
42
+ uv pip install iparq
43
+ ```
45
44
 
46
- 3) Execute the following command:
45
+ 3) Verify the installation by running:
47
46
 
48
47
  ```sh
49
- uv run iparq <filename>
48
+ iparq --help
50
49
  ```
51
50
 
51
+ ## Usage
52
+
53
+ Run
54
+
55
+ ```sh
56
+ iparq <filename>
57
+ ```
58
+
52
59
  Replace `<filename>` with the path to your .parquet file. The utility will read the metadata of the file and print the compression codecs used in the parquet file.
53
60
 
54
61
  ## Example output
@@ -20,23 +20,30 @@ After reading [this blog](https://duckdb.org/2025/01/22/parquet-encodings.html),
20
20
 
21
21
  ### Using uv
22
22
 
23
- 1) Clone the repo:
23
+ 1) Make sure to have Astral’s UV installed by following the steps here:
24
24
 
25
- ```sh
26
- git clone https://github.com/MiguelElGallo/iparq.git
27
- cd iparq
28
- ```
25
+ <https://docs.astral.sh/uv/getting-started/installation/>
29
26
 
30
- 2) Make sure to have Astral’s UV installed by following the steps here:
27
+ 2) Execute the following command:
31
28
 
32
- <https://docs.astral.sh/uv/getting-started/installation/>
29
+ ```sh
30
+ uv pip install iparq
31
+ ```
33
32
 
34
- 3) Execute the following command:
33
+ 3) Verify the installation by running:
35
34
 
36
35
  ```sh
37
- uv run iparq <filename>
36
+ iparq --help
38
37
  ```
39
38
 
39
+ ## Usage
40
+
41
+ Run
42
+
43
+ ```sh
44
+ iparq <filename>
45
+ ```
46
+
40
47
  Replace `<filename>` with the path to your .parquet file. The utility will read the metadata of the file and print the compression codecs used in the parquet file.
41
48
 
42
49
  ## Example output
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "iparq"
3
- version = "0.1.1"
3
+ version = "0.1.3"
4
4
  description = "Display version and compression information about a parquet file"
5
5
  readme = "README.md"
6
6
  authors = [
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes