# IEBPTPCH PDS Extractor
[](https://pypi.org/project/iebptpch-pds-extractor/)
[](https://pypi.org/project/iebptpch-pds-extractor/)
[](https://opensource.org/licenses/MIT)
A command line utility and Python library to extract PDS members from IEBPTPCH output files. This tool can handle both ASCII and EBCDIC formatted input files and convert EBCDIC content to ASCII (UTF-8) during extraction.
## Overview
This utility processes output files created by the IBM IEBPTPCH utility, which converts Partitioned Data Sets (PDS) to sequential files. The typical workflow is:
1. **Create IEBPTPCH output** using JCL (see [Creating IEBPTPCH Output](#creating-iebptpch-output))
2. **Transfer the file** from mainframe to your local system
3. **Extract individual members** using this Python utility
## Why Use This Tool Instead of FTP Clients?
While FTP clients like FileZilla can transfer mainframe files and convert EBCDIC to ASCII, this tool offers key advantages for mainframe migration projects:
### **🔄 Migration-Critical Benefits**
- **One-Time Binary Transfer**: Transfer the IEBPTPCH file once in binary mode, then perform multiple EBCDIC-to-ASCII conversions locally without re-transferring from mainframe
- **Encoding Preservation**: Mainframe source code often contains hard-coded special characters that require precise encoding conversion - if the wrong encoding is used, you can verify against the original EBCDIC file locally without asking customers to re-transfer or check the mainframe again
- **Multiple Encoding Support**: Supports 25+ EBCDIC code pages with automatic fallback for better compatibility
- **Individual Member Extraction**: Extracts each PDS member as a separate file with proper member names, rather than a single large file
### **âš¡ Automation Benefits**
- **Scriptable**: Command-line interface and Python API for integration into migration pipelines
- **File Extensions**: Add appropriate extensions (.jcl, .cbl, .asm, etc.) for better file organization
- **Batch Processing**: Process entire libraries without manual intervention
### **💼 Migration Efficiency**
- **Reduced Mainframe Load**: Minimize mainframe resource usage and connect time
- **Faster Iteration**: Test different encodings and processing options locally
- **Cost Efficiency**: Reduce mainframe costs during migration projects
**💡 Best Practice**: Use this tool when migrating mainframe source code to ensure accurate encoding conversion and efficient member extraction.
## Installation
### From PyPI (Recommended)
```bash
pip install iebptpch-pds-extractor
```
### From Source
```bash
git clone https://github.com/arunkumars-mf/iebptpch-pds-extractor.git
cd iebptpch-pds-extractor
pip install .
```
### Development Installation
```bash
git clone https://github.com/arunkumars-mf/iebptpch-pds-extractor.git
cd iebptpch-pds-extractor
pip install -e .
```
## Creating IEBPTPCH Output
Use this JCL to convert your PDS to a sequential file suitable for this extractor:
```jcl
//PDSEXTJ JOB 'PDS 2 PS',CLASS=A,MSGCLASS=X,NOTIFY=&SYSUID
//*
//IEBPTPCH EXEC PGM=IEBPTPCH
//*
//SYSUT1 DD DISP=SHR,DSN=<YOUR.SOURCE.LIBRARY>
//*
//SYSUT2 DD DSN=<YOUR.SOURCE.LIBRARY.PS>,
// DISP=(NEW,CATLG,DELETE),UNIT=SYSDA,
// SPACE=(CYL,(5,5),RLSE)
//*
//SYSPRINT DD SYSOUT=*
//SYSIN DD *
PUNCH TYPORG=PO
/*
```
**Replace:**
- `<YOUR.SOURCE.LIBRARY>` with your actual PDS name
- `<YOUR.SOURCE.LIBRARY.PS>` with your desired output dataset name
**Notes:**
- The `PUNCH TYPORG=PO` control statement tells IEBPTPCH to process a partitioned dataset
- The output file will contain all PDS members with member name headers
- Transfer this output file to your local system for processing with this Python utility
## Features
- Extract individual PDS members from IEBPTPCH output files
- Support for both ASCII and EBCDIC input formats
- Automatic format detection with manual override option
- Configurable EBCDIC encoding (default: cp037) with automatic fallback to alternative encodings
- Add custom file extensions to extracted members
- Customizable member name detection pattern with multiple fallback patterns
- Support for logical record length (LRECL) processing
- Robust error handling and encoding fallback mechanisms
- Multiple member name detection patterns for improved compatibility
- Both command-line interface and Python API
- Cross-platform compatibility (Windows, macOS, Linux)
## Command Line Usage
After installation, the `iebptpch-pds-extractor` command will be available:
```bash
iebptpch-pds-extractor -i INPUT_FILE -o OUTPUT_DIRECTORY [options]
```
### Required Arguments
- `-i, --input`: Input IEBPTPCH output file path
- `-o, --output`: Output directory for extracted PDS members
### Optional Arguments
- `-f, --format`: Input file format (`ascii` or `ebcdic`, default: `ascii`)
- `-e, --extension`: File extension to add to extracted members (without dot)
- `-d, --delimiter`: Regular expression pattern to identify member names (default: `MEMBER\s+NAME\s+(\S+)`)
- `-c, --encoding`: EBCDIC encoding to use for conversion (default: `cp037`, only used when format is `ebcdic`)
- `-l, --lrecl`: Logical record length (default: 81, which is 80 + 1 for the first character)
- `-v, --verbose`: Enable verbose output
## Examples
### Basic Usage
Extract members from an ASCII file:
```bash
iebptpch-pds-extractor -i input.txt -o output_dir
```
### EBCDIC Input
Extract members from an EBCDIC file:
```bash
iebptpch-pds-extractor -i input.txt -o output_dir -f ebcdic
```
### Add File Extensions
Extract members and add file extensions based on content type:
#### JCL Files
```bash
iebptpch-pds-extractor -i JCL_LIBRARY.txt -o output_dir -e jcl
```
#### COBOL Source Files
```bash
iebptpch-pds-extractor -i COBOL_LIBRARY.txt -o output_dir -e cbl
```
#### Assembler Source Files
```bash
iebptpch-pds-extractor -i ASM_LIBRARY.txt -o output_dir -e asm
```
#### Other File Types
```bash
# Procedures
iebptpch-pds-extractor -i PROC_LIBRARY.txt -o output_dir -e proc
# PL/I Source Files
iebptpch-pds-extractor -i PLI_LIBRARY.txt -o output_dir -e pli
# REXX Scripts
iebptpch-pds-extractor -i REXX_LIBRARY.txt -o output_dir -e rexx
# Include Files
iebptpch-pds-extractor -i INCLUDE_LIBRARY.txt -o output_dir -e inc
```
### Advanced Options
Custom EBCDIC encoding:
```bash
iebptpch-pds-extractor -i input.txt -o output_dir -f ebcdic -c cp500
```
Custom delimiter pattern:
```bash
iebptpch-pds-extractor -i input.txt -o output_dir -d "^MEMBER:\s+(\S+)"
```
Custom LRECL:
```bash
iebptpch-pds-extractor -i input.txt -o output_dir -f ebcdic -l 133
```
Combining options:
```bash
iebptpch-pds-extractor -i COBOL_LIBRARY.txt -o output_dir -f ebcdic -e cbl -l 133 -v
```
## Python API Usage
You can also use the extractor programmatically:
```python
from iebptpch_pds_extractor import PDSExtractor
# Create extractor instance
extractor = PDSExtractor(
input_file="path/to/input.txt",
output_dir="path/to/output",
file_format="ascii", # or "ebcdic"
extension="jcl", # optional file extension
verbose=True
)
# Extract members
member_count = extractor.extract()
print(f"Extracted {member_count} members")
```
### API Parameters
- `input_file` (str): Path to the input IEBPTPCH output file
- `output_dir` (str): Directory where extracted members will be saved
- `file_format` (str): Input file format ('ascii' or 'ebcdic', default: 'ascii')
- `extension` (str): File extension to add to extracted members (default: '')
- `delimiter` (str): Regular expression pattern to identify member names
- `encoding` (str): EBCDIC encoding to use for conversion (default: 'cp037')
- `lrecl` (int): Logical record length (default: 81)
- `verbose` (bool): Enable verbose output (default: False)
## Supported EBCDIC Encodings
### Common EBCDIC Encodings
- `cp037` - IBM EBCDIC US/Canada (default)
- `cp500` - IBM EBCDIC International
- `cp1047` - IBM EBCDIC Latin-1/Open Systems
### Country-specific EBCDIC Encodings
- `cp273` - IBM EBCDIC Germany
- `cp277` - IBM EBCDIC Denmark/Norway
- `cp278` - IBM EBCDIC Finland/Sweden
- `cp280` - IBM EBCDIC Italy
- `cp284` - IBM EBCDIC Spain
- `cp285` - IBM EBCDIC UK
- `cp297` - IBM EBCDIC France
- And many more...
For a complete list, see the [Python codecs documentation](https://docs.python.org/3/library/codecs.html#standard-encodings).
## Requirements
- Python 3.6 or higher
- No external dependencies required (uses standard library only)
## How It Works
1. The script reads the input file in binary mode
2. If the format is EBCDIC, it converts each line to ASCII using the specified encoding
3. It processes the content based on the specified LRECL (logical record length)
4. It identifies member names using the provided delimiter pattern
5. For each member, it creates a new file in the output directory
6. Content lines are written to the appropriate member file, with the first character (carriage control) removed
## Contributing
Contributions are welcome! Please see [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.
## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
## Changelog
See [CHANGELOG.md](CHANGELOG.md) for version history and changes.
## Support
- **Issues**: [GitHub Issues](https://github.com/arunkumars-mf/iebptpch-pds-extractor/issues)
- **Documentation**: [Project Documentation](https://github.com/arunkumars-mf/iebptpch-pds-extractor#readme)
- **Examples**: [Examples Directory](examples/)
## Related Projects
- [COBOL Copybook to JSON](https://github.com/arunkumars-mf/cobol-copybook-to-json) - Convert COBOL copybooks to JSON schema format
Raw data
{
"_id": null,
"home_page": "https://github.com/arunkumars-mf/iebptpch-pds-extractor",
"name": "iebptpch-pds-extractor",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.6",
"maintainer_email": null,
"keywords": "mainframe, pds, iebptpch, ebcdic, ascii, extractor, ibm, z/os, mvs",
"author": "Arunkumar Selvam",
"author_email": "Arunkumar Selvam <aruninfy123@gmail.com>",
"download_url": "https://files.pythonhosted.org/packages/56/b4/9175940e9cefeef8057d9daf2fa3ab6099b8bc1e777d24212d9989e034ed/iebptpch_pds_extractor-1.0.1.tar.gz",
"platform": null,
"description": "# IEBPTPCH PDS Extractor\n\n[](https://pypi.org/project/iebptpch-pds-extractor/)\n[](https://pypi.org/project/iebptpch-pds-extractor/)\n[](https://opensource.org/licenses/MIT)\n\nA command line utility and Python library to extract PDS members from IEBPTPCH output files. This tool can handle both ASCII and EBCDIC formatted input files and convert EBCDIC content to ASCII (UTF-8) during extraction.\n\n## Overview\n\nThis utility processes output files created by the IBM IEBPTPCH utility, which converts Partitioned Data Sets (PDS) to sequential files. The typical workflow is:\n\n1. **Create IEBPTPCH output** using JCL (see [Creating IEBPTPCH Output](#creating-iebptpch-output))\n2. **Transfer the file** from mainframe to your local system\n3. **Extract individual members** using this Python utility\n\n## Why Use This Tool Instead of FTP Clients?\n\nWhile FTP clients like FileZilla can transfer mainframe files and convert EBCDIC to ASCII, this tool offers key advantages for mainframe migration projects:\n\n### **\ud83d\udd04 Migration-Critical Benefits**\n\n- **One-Time Binary Transfer**: Transfer the IEBPTPCH file once in binary mode, then perform multiple EBCDIC-to-ASCII conversions locally without re-transferring from mainframe\n- **Encoding Preservation**: Mainframe source code often contains hard-coded special characters that require precise encoding conversion - if the wrong encoding is used, you can verify against the original EBCDIC file locally without asking customers to re-transfer or check the mainframe again\n- **Multiple Encoding Support**: Supports 25+ EBCDIC code pages with automatic fallback for better compatibility\n- **Individual Member Extraction**: Extracts each PDS member as a separate file with proper member names, rather than a single large file\n\n### **\u26a1 Automation Benefits**\n- **Scriptable**: Command-line interface and Python API for integration into migration pipelines\n- **File Extensions**: Add appropriate extensions (.jcl, .cbl, .asm, etc.) for better file organization\n- **Batch Processing**: Process entire libraries without manual intervention\n\n### **\ud83d\udcbc Migration Efficiency**\n- **Reduced Mainframe Load**: Minimize mainframe resource usage and connect time\n- **Faster Iteration**: Test different encodings and processing options locally\n- **Cost Efficiency**: Reduce mainframe costs during migration projects\n\n**\ud83d\udca1 Best Practice**: Use this tool when migrating mainframe source code to ensure accurate encoding conversion and efficient member extraction.\n\n## Installation\n\n### From PyPI (Recommended)\n\n```bash\npip install iebptpch-pds-extractor\n```\n\n### From Source\n\n```bash\ngit clone https://github.com/arunkumars-mf/iebptpch-pds-extractor.git\ncd iebptpch-pds-extractor\npip install .\n```\n\n### Development Installation\n\n```bash\ngit clone https://github.com/arunkumars-mf/iebptpch-pds-extractor.git\ncd iebptpch-pds-extractor\npip install -e .\n```\n\n## Creating IEBPTPCH Output\n\nUse this JCL to convert your PDS to a sequential file suitable for this extractor:\n\n```jcl\n//PDSEXTJ JOB 'PDS 2 PS',CLASS=A,MSGCLASS=X,NOTIFY=&SYSUID\n//*\n//IEBPTPCH EXEC PGM=IEBPTPCH\n//*\n//SYSUT1 DD DISP=SHR,DSN=<YOUR.SOURCE.LIBRARY>\n//*\n//SYSUT2 DD DSN=<YOUR.SOURCE.LIBRARY.PS>,\n// DISP=(NEW,CATLG,DELETE),UNIT=SYSDA,\n// SPACE=(CYL,(5,5),RLSE)\n//*\n//SYSPRINT DD SYSOUT=*\n//SYSIN DD *\n PUNCH TYPORG=PO\n/*\n```\n\n**Replace:**\n- `<YOUR.SOURCE.LIBRARY>` with your actual PDS name\n- `<YOUR.SOURCE.LIBRARY.PS>` with your desired output dataset name\n\n**Notes:**\n- The `PUNCH TYPORG=PO` control statement tells IEBPTPCH to process a partitioned dataset\n- The output file will contain all PDS members with member name headers\n- Transfer this output file to your local system for processing with this Python utility\n\n## Features\n\n- Extract individual PDS members from IEBPTPCH output files\n- Support for both ASCII and EBCDIC input formats\n- Automatic format detection with manual override option\n- Configurable EBCDIC encoding (default: cp037) with automatic fallback to alternative encodings\n- Add custom file extensions to extracted members\n- Customizable member name detection pattern with multiple fallback patterns\n- Support for logical record length (LRECL) processing\n- Robust error handling and encoding fallback mechanisms\n- Multiple member name detection patterns for improved compatibility\n- Both command-line interface and Python API\n- Cross-platform compatibility (Windows, macOS, Linux)\n\n## Command Line Usage\n\nAfter installation, the `iebptpch-pds-extractor` command will be available:\n\n```bash\niebptpch-pds-extractor -i INPUT_FILE -o OUTPUT_DIRECTORY [options]\n```\n\n### Required Arguments\n\n- `-i, --input`: Input IEBPTPCH output file path\n- `-o, --output`: Output directory for extracted PDS members\n\n### Optional Arguments\n\n- `-f, --format`: Input file format (`ascii` or `ebcdic`, default: `ascii`)\n- `-e, --extension`: File extension to add to extracted members (without dot)\n- `-d, --delimiter`: Regular expression pattern to identify member names (default: `MEMBER\\s+NAME\\s+(\\S+)`)\n- `-c, --encoding`: EBCDIC encoding to use for conversion (default: `cp037`, only used when format is `ebcdic`)\n- `-l, --lrecl`: Logical record length (default: 81, which is 80 + 1 for the first character)\n- `-v, --verbose`: Enable verbose output\n\n## Examples\n\n### Basic Usage\n\nExtract members from an ASCII file:\n\n```bash\niebptpch-pds-extractor -i input.txt -o output_dir\n```\n\n### EBCDIC Input\n\nExtract members from an EBCDIC file:\n\n```bash\niebptpch-pds-extractor -i input.txt -o output_dir -f ebcdic\n```\n\n### Add File Extensions\n\nExtract members and add file extensions based on content type:\n\n#### JCL Files\n```bash\niebptpch-pds-extractor -i JCL_LIBRARY.txt -o output_dir -e jcl\n```\n\n#### COBOL Source Files\n```bash\niebptpch-pds-extractor -i COBOL_LIBRARY.txt -o output_dir -e cbl\n```\n\n#### Assembler Source Files\n```bash\niebptpch-pds-extractor -i ASM_LIBRARY.txt -o output_dir -e asm\n```\n\n#### Other File Types\n```bash\n# Procedures\niebptpch-pds-extractor -i PROC_LIBRARY.txt -o output_dir -e proc\n\n# PL/I Source Files\niebptpch-pds-extractor -i PLI_LIBRARY.txt -o output_dir -e pli\n\n# REXX Scripts\niebptpch-pds-extractor -i REXX_LIBRARY.txt -o output_dir -e rexx\n\n# Include Files\niebptpch-pds-extractor -i INCLUDE_LIBRARY.txt -o output_dir -e inc\n```\n\n### Advanced Options\n\nCustom EBCDIC encoding:\n```bash\niebptpch-pds-extractor -i input.txt -o output_dir -f ebcdic -c cp500\n```\n\nCustom delimiter pattern:\n```bash\niebptpch-pds-extractor -i input.txt -o output_dir -d \"^MEMBER:\\s+(\\S+)\"\n```\n\nCustom LRECL:\n```bash\niebptpch-pds-extractor -i input.txt -o output_dir -f ebcdic -l 133\n```\n\nCombining options:\n```bash\niebptpch-pds-extractor -i COBOL_LIBRARY.txt -o output_dir -f ebcdic -e cbl -l 133 -v\n```\n\n## Python API Usage\n\nYou can also use the extractor programmatically:\n\n```python\nfrom iebptpch_pds_extractor import PDSExtractor\n\n# Create extractor instance\nextractor = PDSExtractor(\n input_file=\"path/to/input.txt\",\n output_dir=\"path/to/output\",\n file_format=\"ascii\", # or \"ebcdic\"\n extension=\"jcl\", # optional file extension\n verbose=True\n)\n\n# Extract members\nmember_count = extractor.extract()\nprint(f\"Extracted {member_count} members\")\n```\n\n### API Parameters\n\n- `input_file` (str): Path to the input IEBPTPCH output file\n- `output_dir` (str): Directory where extracted members will be saved\n- `file_format` (str): Input file format ('ascii' or 'ebcdic', default: 'ascii')\n- `extension` (str): File extension to add to extracted members (default: '')\n- `delimiter` (str): Regular expression pattern to identify member names\n- `encoding` (str): EBCDIC encoding to use for conversion (default: 'cp037')\n- `lrecl` (int): Logical record length (default: 81)\n- `verbose` (bool): Enable verbose output (default: False)\n\n## Supported EBCDIC Encodings\n\n### Common EBCDIC Encodings\n- `cp037` - IBM EBCDIC US/Canada (default)\n- `cp500` - IBM EBCDIC International\n- `cp1047` - IBM EBCDIC Latin-1/Open Systems\n\n### Country-specific EBCDIC Encodings\n- `cp273` - IBM EBCDIC Germany\n- `cp277` - IBM EBCDIC Denmark/Norway\n- `cp278` - IBM EBCDIC Finland/Sweden\n- `cp280` - IBM EBCDIC Italy\n- `cp284` - IBM EBCDIC Spain\n- `cp285` - IBM EBCDIC UK\n- `cp297` - IBM EBCDIC France\n- And many more...\n\nFor a complete list, see the [Python codecs documentation](https://docs.python.org/3/library/codecs.html#standard-encodings).\n\n## Requirements\n\n- Python 3.6 or higher\n- No external dependencies required (uses standard library only)\n\n## How It Works\n\n1. The script reads the input file in binary mode\n2. If the format is EBCDIC, it converts each line to ASCII using the specified encoding\n3. It processes the content based on the specified LRECL (logical record length)\n4. It identifies member names using the provided delimiter pattern\n5. For each member, it creates a new file in the output directory\n6. Content lines are written to the appropriate member file, with the first character (carriage control) removed\n\n## Contributing\n\nContributions are welcome! Please see [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## Changelog\n\nSee [CHANGELOG.md](CHANGELOG.md) for version history and changes.\n\n## Support\n\n- **Issues**: [GitHub Issues](https://github.com/arunkumars-mf/iebptpch-pds-extractor/issues)\n- **Documentation**: [Project Documentation](https://github.com/arunkumars-mf/iebptpch-pds-extractor#readme)\n- **Examples**: [Examples Directory](examples/)\n\n## Related Projects\n\n- [COBOL Copybook to JSON](https://github.com/arunkumars-mf/cobol-copybook-to-json) - Convert COBOL copybooks to JSON schema format\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "Extract PDS members from IEBPTPCH output files with support for both ASCII and EBCDIC formats",
"version": "1.0.1",
"project_urls": {
"Bug Reports": "https://github.com/arunkumars-mf/iebptpch-pds-extractor/issues",
"Documentation": "https://github.com/arunkumars-mf/iebptpch-pds-extractor#readme",
"Homepage": "https://github.com/arunkumars-mf/iebptpch-pds-extractor",
"Source": "https://github.com/arunkumars-mf/iebptpch-pds-extractor"
},
"split_keywords": [
"mainframe",
" pds",
" iebptpch",
" ebcdic",
" ascii",
" extractor",
" ibm",
" z/os",
" mvs"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "9b85ebf5f28e87923c43945dd62767a38b9db08d5021b3884e717a5a1181d8fd",
"md5": "f87b77edb506bad9d5ba495b0cba5ebd",
"sha256": "ed3590b064f453b0ac4819119736ec5853b9bb46c97afbd4b9fc3c664f737fc0"
},
"downloads": -1,
"filename": "iebptpch_pds_extractor-1.0.1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "f87b77edb506bad9d5ba495b0cba5ebd",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.6",
"size": 10854,
"upload_time": "2025-08-03T12:39:48",
"upload_time_iso_8601": "2025-08-03T12:39:48.898395Z",
"url": "https://files.pythonhosted.org/packages/9b/85/ebf5f28e87923c43945dd62767a38b9db08d5021b3884e717a5a1181d8fd/iebptpch_pds_extractor-1.0.1-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "56b49175940e9cefeef8057d9daf2fa3ab6099b8bc1e777d24212d9989e034ed",
"md5": "760a343b7671133b34ea0d21117f2d40",
"sha256": "529d0b02a5af93fef94f918a277b835d8b76829f12b5cf7fdbd9b1d844440b5f"
},
"downloads": -1,
"filename": "iebptpch_pds_extractor-1.0.1.tar.gz",
"has_sig": false,
"md5_digest": "760a343b7671133b34ea0d21117f2d40",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.6",
"size": 19576,
"upload_time": "2025-08-03T12:39:49",
"upload_time_iso_8601": "2025-08-03T12:39:49.653442Z",
"url": "https://files.pythonhosted.org/packages/56/b4/9175940e9cefeef8057d9daf2fa3ab6099b8bc1e777d24212d9989e034ed/iebptpch_pds_extractor-1.0.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-08-03 12:39:49",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "arunkumars-mf",
"github_project": "iebptpch-pds-extractor",
"travis_ci": false,
"coveralls": false,
"github_actions": false,
"lcname": "iebptpch-pds-extractor"
}