python-cath 0.3.0__py3-none-any.whl → 0.4.0__py3-none-any.whl

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/__main__.py CHANGED
@@ -11,6 +11,8 @@ app = typer.Typer(
11
11
  name="python-cath",
12
12
  help="Cat files w/ headers",
13
13
  add_completion=False,
14
+ invoke_without_command=True,
15
+ no_args_is_help=True,
14
16
  )
15
17
  console = Console()
16
18
 
@@ -27,7 +29,9 @@ def version_callback(value: bool) -> None:
27
29
  @app.command()
28
30
  def main(
29
31
  file_list: List[str] = typer.Argument(...),
30
- output_file: str = typer.Argument(...),
32
+ output_file: str = typer.Option(
33
+ ..., "--output", "-o", help="Output file path"
34
+ ),
31
35
  ) -> None:
32
36
  """Concatenate CSV files with a shared header into output_file."""
33
37
  concat(file_list, output_file)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python-cath
3
- Version: 0.3.0
3
+ Version: 0.4.0
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 outfile
64
+ python-cath file1 file2 --output 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 outfile
74
+ poetry run python-cath file1 file2 --output outfile
75
75
  ```
76
76
 
77
77
  ### Makefile usage
@@ -0,0 +1,10 @@
1
+ python_cath/__init__.py,sha256=jWtDUGUgV39IeDqwlQ9ziOy9ceofcf1hsppd2C_t9Yw,250
2
+ python_cath/__main__.py,sha256=SKkaB4X6hUcd10OSsqM65Rj9QGiOt2jK1K-Cxs2FN2g,902
3
+ python_cath/concat.py,sha256=RYSWSePSbdWI9JlzFlIVtoa7rH1-LmiruorjDc9jKZY,1731
4
+ python_cath/example.py,sha256=LGLU6ShWSJtu2zPbGXmQJw5ktJkNlGnRhFjY8OTlePM,366
5
+ python_cath/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
+ python_cath-0.4.0.dist-info/METADATA,sha256=13QGcyH60F0hUw-CAeztY5eg8-AMEl_vAp8xYszxfQ4,7692
7
+ python_cath-0.4.0.dist-info/WHEEL,sha256=Vz2fHgx6HFtSwhs8KvkHLqH5Ea4w1_rner5uNVGCeIE,88
8
+ python_cath-0.4.0.dist-info/entry_points.txt,sha256=CKAIA5eO7sx0McMvZxxXm01CYasNWeOfB3MWbkNcP7I,56
9
+ python_cath-0.4.0.dist-info/licenses/LICENSE,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
+ python_cath-0.4.0.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: poetry-core 2.3.1
2
+ Generator: poetry-core 2.3.2
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
@@ -1,10 +0,0 @@
1
- python_cath/__init__.py,sha256=jWtDUGUgV39IeDqwlQ9ziOy9ceofcf1hsppd2C_t9Yw,250
2
- python_cath/__main__.py,sha256=t3LBYcsZ4lcNo4SUc828O6DoeCZmKlAPazDNfd1n9K8,788
3
- python_cath/concat.py,sha256=RYSWSePSbdWI9JlzFlIVtoa7rH1-LmiruorjDc9jKZY,1731
4
- python_cath/example.py,sha256=LGLU6ShWSJtu2zPbGXmQJw5ktJkNlGnRhFjY8OTlePM,366
5
- python_cath/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
- python_cath-0.3.0.dist-info/METADATA,sha256=CwdIGPs5Gmh6nwDtwfLr_VXqGRyYeJ4f7RpXV9XpmJ4,7674
7
- python_cath-0.3.0.dist-info/WHEEL,sha256=kJCRJT_g0adfAJzTx2GUMmS80rTJIVHRCfG0DQgLq3o,88
8
- python_cath-0.3.0.dist-info/entry_points.txt,sha256=CKAIA5eO7sx0McMvZxxXm01CYasNWeOfB3MWbkNcP7I,56
9
- python_cath-0.3.0.dist-info/licenses/LICENSE,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
- python_cath-0.3.0.dist-info/RECORD,,