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.
- {iparq-0.1.1 → iparq-0.1.3}/PKG-INFO +17 -10
- {iparq-0.1.1 → iparq-0.1.3}/README.md +16 -9
- {iparq-0.1.1 → iparq-0.1.3}/pyproject.toml +1 -1
- {iparq-0.1.1 → iparq-0.1.3}/.github/workflows/python-package.yml +0 -0
- {iparq-0.1.1 → iparq-0.1.3}/.github/workflows/python-publish.yml +0 -0
- {iparq-0.1.1 → iparq-0.1.3}/.gitignore +0 -0
- {iparq-0.1.1 → iparq-0.1.3}/.python-version +0 -0
- {iparq-0.1.1 → iparq-0.1.3}/LICENSE +0 -0
- {iparq-0.1.1 → iparq-0.1.3}/dummy.parquet +0 -0
- {iparq-0.1.1 → iparq-0.1.3}/src/iparq/__init__.py +0 -0
- {iparq-0.1.1 → iparq-0.1.3}/src/iparq/source.py +0 -0
- {iparq-0.1.1 → iparq-0.1.3}/tests/test_cli.py +0 -0
- {iparq-0.1.1 → iparq-0.1.3}/uv.lock +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: iparq
|
|
3
|
-
Version: 0.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)
|
|
35
|
+
1) Make sure to have Astral’s UV installed by following the steps here:
|
|
36
36
|
|
|
37
|
-
|
|
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)
|
|
39
|
+
2) Execute the following command:
|
|
43
40
|
|
|
44
|
-
|
|
41
|
+
```sh
|
|
42
|
+
uv pip install iparq
|
|
43
|
+
```
|
|
45
44
|
|
|
46
|
-
3)
|
|
45
|
+
3) Verify the installation by running:
|
|
47
46
|
|
|
48
47
|
```sh
|
|
49
|
-
|
|
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)
|
|
23
|
+
1) Make sure to have Astral’s UV installed by following the steps here:
|
|
24
24
|
|
|
25
|
-
|
|
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)
|
|
27
|
+
2) Execute the following command:
|
|
31
28
|
|
|
32
|
-
|
|
29
|
+
```sh
|
|
30
|
+
uv pip install iparq
|
|
31
|
+
```
|
|
33
32
|
|
|
34
|
-
3)
|
|
33
|
+
3) Verify the installation by running:
|
|
35
34
|
|
|
36
35
|
```sh
|
|
37
|
-
|
|
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
|
|
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
|