Metadata-Version: 2.1
Name: gtfs-parser
Version: 0.1.1
Summary: parse and aggregate GTFS
Home-page: https://github.com/MIERUNE
License: MIT
Author: MIERUNE Inc.
Requires-Python: >=3.7.1
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: pandas (>=1.3.3)
Project-URL: Repository, https://github.com/MIERUNE/{project-name}
Description-Content-Type: text/markdown

# gtfs_parser

## LICENSE

MIT License

## Installation

TODO

## API

TODO

## CLI

```
usage: __main__.py [-h] [--parse_ignoreshapes] [--parse_ignorenoroute]
                   [--aggregate_yyyymmdd AGGREGATE_YYYYMMDD]
                   [--aggregate_nounifystops]
                   [--aggregate_delimiter AGGREGATE_DELIMITER]
                   [--aggregate_begintime AGGREGATE_BEGINTIME]
                   [--aggregate_endtime AGGREGATE_ENDTIME]
                   mode src dst

positional arguments:
  mode
  src
  dst

optional arguments:
  -h, --help            show this help message and exit
  --parse_ignoreshapes
  --parse_ignorenoroute
  --aggregate_yyyymmdd AGGREGATE_YYYYMMDD
  --aggregate_nounifystops
  --aggregate_delimiter AGGREGATE_DELIMITER
  --aggregate_begintime AGGREGATE_BEGINTIME
  --aggregate_endtime AGGREGATE_ENDTIME
```

### Example

```sh
python -m gtfs_parser parse gtfs.zip output
python -m gtfs_parser parse gtfs_dir output --parse_ignoreshapes
python -m gtfs_parser aggregate gtfs.zip output
python -m gtfs_parser aggregate gtfs_dir output --aggregate_nounifystops
```
