iparq 0.1.1__tar.gz → 0.1.2__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.2
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,21 +32,27 @@ 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
+
37
+ <https://docs.astral.sh/uv/getting-started/installation/>
38
+
39
+ 2) Execute the following command:
36
40
 
37
41
  ```sh
38
- git clone https://github.com/MiguelElGallo/iparq.git
39
- cd iparq
42
+ uv pip install iparq
40
43
  ```
41
44
 
42
- 2) Make sure to have Astral’s UV installed by following the steps here:
45
+ 3) Verify the installation by running:
43
46
 
44
- <https://docs.astral.sh/uv/getting-started/installation/>
47
+ ```sh
48
+ iparq --help
49
+ ```
45
50
 
46
- 3) Execute the following command:
51
+ ## Usage
47
52
 
53
+ Run
48
54
  ```sh
49
- uv run iparq <filename>
55
+ iparq <filename>
50
56
  ```
51
57
 
52
58
  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.
@@ -20,21 +20,27 @@ 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
+
25
+ <https://docs.astral.sh/uv/getting-started/installation/>
26
+
27
+ 2) Execute the following command:
24
28
 
25
29
  ```sh
26
- git clone https://github.com/MiguelElGallo/iparq.git
27
- cd iparq
30
+ uv pip install iparq
28
31
  ```
29
32
 
30
- 2) Make sure to have Astral’s UV installed by following the steps here:
33
+ 3) Verify the installation by running:
31
34
 
32
- <https://docs.astral.sh/uv/getting-started/installation/>
35
+ ```sh
36
+ iparq --help
37
+ ```
33
38
 
34
- 3) Execute the following command:
39
+ ## Usage
35
40
 
41
+ Run
36
42
  ```sh
37
- uv run iparq <filename>
43
+ iparq <filename>
38
44
  ```
39
45
 
40
46
  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.
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "iparq"
3
- version = "0.1.1"
3
+ version = "0.1.2"
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