python-cath 0.4.0__tar.gz → 0.4.1__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.
- {python_cath-0.4.0 → python_cath-0.4.1}/PKG-INFO +3 -3
- {python_cath-0.4.0 → python_cath-0.4.1}/README.md +2 -2
- {python_cath-0.4.0 → python_cath-0.4.1}/pyproject.toml +1 -1
- python_cath-0.4.1/python_cath/__main__.py +54 -0
- python_cath-0.4.0/python_cath/__main__.py +0 -37
- {python_cath-0.4.0 → python_cath-0.4.1}/LICENSE +0 -0
- {python_cath-0.4.0 → python_cath-0.4.1}/python_cath/__init__.py +0 -0
- {python_cath-0.4.0 → python_cath-0.4.1}/python_cath/concat.py +0 -0
- {python_cath-0.4.0 → python_cath-0.4.1}/python_cath/example.py +0 -0
- {python_cath-0.4.0 → python_cath-0.4.1}/python_cath/py.typed +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: python-cath
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.1
|
|
4
4
|
Summary: Cat files w/ headers
|
|
5
5
|
License: MIT
|
|
6
6
|
License-File: LICENSE
|
|
@@ -61,7 +61,7 @@ python-cath --help
|
|
|
61
61
|
```
|
|
62
62
|
|
|
63
63
|
```bash
|
|
64
|
-
python-cath file1 file2
|
|
64
|
+
python-cath file1 file2 outfile
|
|
65
65
|
```
|
|
66
66
|
|
|
67
67
|
or if installed with `Poetry`:
|
|
@@ -71,7 +71,7 @@ poetry run python-cath --help
|
|
|
71
71
|
```
|
|
72
72
|
|
|
73
73
|
```bash
|
|
74
|
-
poetry run python-cath file1 file2
|
|
74
|
+
poetry run python-cath file1 file2 outfile
|
|
75
75
|
```
|
|
76
76
|
|
|
77
77
|
### Makefile usage
|
|
@@ -34,7 +34,7 @@ python-cath --help
|
|
|
34
34
|
```
|
|
35
35
|
|
|
36
36
|
```bash
|
|
37
|
-
python-cath file1 file2
|
|
37
|
+
python-cath file1 file2 outfile
|
|
38
38
|
```
|
|
39
39
|
|
|
40
40
|
or if installed with `Poetry`:
|
|
@@ -44,7 +44,7 @@ poetry run python-cath --help
|
|
|
44
44
|
```
|
|
45
45
|
|
|
46
46
|
```bash
|
|
47
|
-
poetry run python-cath file1 file2
|
|
47
|
+
poetry run python-cath file1 file2 outfile
|
|
48
48
|
```
|
|
49
49
|
|
|
50
50
|
### Makefile usage
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
# mypy: disable-error-code="attr-defined"
|
|
2
|
+
|
|
3
|
+
from typing import List
|
|
4
|
+
|
|
5
|
+
import typer
|
|
6
|
+
from python_cath import __version__
|
|
7
|
+
from python_cath.concat import concat
|
|
8
|
+
from rich.console import Console
|
|
9
|
+
|
|
10
|
+
app = typer.Typer(
|
|
11
|
+
name="python-cath",
|
|
12
|
+
help="Cat files w/ headers",
|
|
13
|
+
add_completion=False,
|
|
14
|
+
invoke_without_command=True,
|
|
15
|
+
no_args_is_help=True,
|
|
16
|
+
)
|
|
17
|
+
console = Console()
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
def version_callback(value: bool) -> None:
|
|
21
|
+
"""Prints the version of the package."""
|
|
22
|
+
if value:
|
|
23
|
+
console.print(
|
|
24
|
+
f"[yellow]python-cath[/] version: [bold blue]{__version__}[/]"
|
|
25
|
+
)
|
|
26
|
+
raise typer.Exit()
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
@app.command()
|
|
30
|
+
def main(
|
|
31
|
+
files: List[str] = typer.Argument(
|
|
32
|
+
...,
|
|
33
|
+
help="Two or more input files followed by the output file "
|
|
34
|
+
"(the last argument is the output).",
|
|
35
|
+
),
|
|
36
|
+
) -> None:
|
|
37
|
+
"""Concatenate CSV files with a shared header.
|
|
38
|
+
|
|
39
|
+
Provide two or more input files followed by the output file as the
|
|
40
|
+
final argument, e.g. ``python-cath in1 in2 out``.
|
|
41
|
+
"""
|
|
42
|
+
if len(files) < 3:
|
|
43
|
+
console.print(
|
|
44
|
+
"[red]Error:[/] need at least two input files plus an output "
|
|
45
|
+
"file; the last argument is the output and would otherwise "
|
|
46
|
+
"overwrite an input.",
|
|
47
|
+
)
|
|
48
|
+
raise typer.Exit(code=2)
|
|
49
|
+
*input_files, output_file = files
|
|
50
|
+
concat(input_files, output_file)
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
if __name__ == "__main__":
|
|
54
|
+
app()
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
# mypy: disable-error-code="attr-defined"
|
|
2
|
-
|
|
3
|
-
from typing import List
|
|
4
|
-
|
|
5
|
-
import typer
|
|
6
|
-
from python_cath import __version__
|
|
7
|
-
from python_cath.concat import concat
|
|
8
|
-
from rich.console import Console
|
|
9
|
-
|
|
10
|
-
app = typer.Typer(
|
|
11
|
-
name="python-cath",
|
|
12
|
-
help="Cat files w/ headers",
|
|
13
|
-
add_completion=False,
|
|
14
|
-
invoke_without_command=True,
|
|
15
|
-
no_args_is_help=True,
|
|
16
|
-
)
|
|
17
|
-
console = Console()
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
def version_callback(value: bool) -> None:
|
|
21
|
-
"""Prints the version of the package."""
|
|
22
|
-
if value:
|
|
23
|
-
console.print(
|
|
24
|
-
f"[yellow]python-cath[/] version: [bold blue]{__version__}[/]"
|
|
25
|
-
)
|
|
26
|
-
raise typer.Exit()
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
@app.command()
|
|
30
|
-
def main(
|
|
31
|
-
file_list: List[str] = typer.Argument(...),
|
|
32
|
-
output_file: str = typer.Option(
|
|
33
|
-
..., "--output", "-o", help="Output file path"
|
|
34
|
-
),
|
|
35
|
-
) -> None:
|
|
36
|
-
"""Concatenate CSV files with a shared header into output_file."""
|
|
37
|
-
concat(file_list, output_file)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|