Metadata-Version: 2.1
Name: file_gcd
Version: 0.0.1
Summary: A toy model to consume file input and output with simple calculation logic
Home-page: https://github.com/danieltuzes/file_gcd
Author: Daniel Tuzes
Author-email: tuzesdaniel@gmail.com
Project-URL: Source, https://github.com/danieltuzes/file_gcd
Project-URL: Documentation, https://github.com/danieltuzes/file_gcd/blob/main/README.md
Keywords: python,packaging,pip
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: pandas

# file_gcd

Toy package to calculate GCD from file input.

## standalone inputs and outputs

Call the program with `-h` to get program call arguments. The program can consume an input filepath and output filepath. From lines in the input file, where PROPERTY starts with `000`, the GCD of the columns NUM1, NUM2, ... will be calculated, row by row. The output is printed into stdout if no output filename is provided.

## python API

The package also provides a python API, use the source to figure out how.
