This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
""" | |
PDF to PNG Converter | |
Converts PDF files to high-quality PNG images. | |
Each page is saved as a separate PNG file. | |
""" | |
import argparse | |
import os |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
openapi: 3.1.0 | |
info: | |
title: GitHub Repository API | |
description: API for interacting with a GitHub repository, including reading files, making changes, committing changes, | |
and listing repositories. | |
version: 1.0.0 | |
servers: | |
- url: https://api.github.com | |
description: GitHub API Server | |
paths: |