Metadata-Version: 2.4
Name: ftp_reliable
Version: 1.1.2
Summary: FTP with retries, verification, parallelization, and logging
Author: Jacob K
License-Expression: MIT
Requires-Python: >=3.12
Description-Content-Type: text/markdown
Requires-Dist: filelock>=3.32.3
Requires-Dist: pandas>=3.0.5

# FTP reliable

## Install

```
pip install ftp_reliable
```

## Use

```
# fast single query download and verification pass
ftp_reliable \
    --query tests/input/one_query.tsv \
    --logfile tests/output/one_query.log \
    --algo md5

# two queries in parallel. both pass download. one fails verification
ftp_reliable \
    --query tests/input/two_queries.tsv \
    --logfile tests/output/two_queries.log \
    --cpus 2 \
    --algo md5
```
