{"id":26991647,"url":"https://github.com/jromero132/pdf-splitter","last_synced_at":"2025-10-14T12:58:12.658Z","repository":{"id":285761792,"uuid":"959261009","full_name":"jromero132/pdf-splitter","owner":"jromero132","description":"PDF Splitter is a Python tool that takes a multi-page PDF file and splits it into individual PDF files, one for each page of the original document.","archived":false,"fork":false,"pushed_at":"2025-04-02T14:03:53.000Z","size":3,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-14T12:58:08.587Z","etag":null,"topics":["aspect-ratio","command-line-tool","content-center","cross-platform","custom-page","document-management","document-processing","file-conversion","file-organization","image-processing","image-to-pdf","multi-format-support","open-source","pdf-merger","pdf-splitter","pdf-tools","productivity-tool","python","python-utility","python3"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jromero132.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":".github/funding.yml","license":"license","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":null,"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"lfx_crowdfunding":null,"polar":null,"buy_me_a_coffee":"jromero132","thanks_dev":null,"custom":null}},"created_at":"2025-04-02T14:00:47.000Z","updated_at":"2025-04-02T14:07:01.000Z","dependencies_parsed_at":"2025-04-02T15:22:28.447Z","dependency_job_id":"6ba9d32d-71e8-4931-bc8b-78ec731fa6fa","html_url":"https://github.com/jromero132/pdf-splitter","commit_stats":null,"previous_names":["jromero132/pdf-splitter"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jromero132/pdf-splitter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jromero132%2Fpdf-splitter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jromero132%2Fpdf-splitter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jromero132%2Fpdf-splitter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jromero132%2Fpdf-splitter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jromero132","download_url":"https://codeload.github.com/jromero132/pdf-splitter/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jromero132%2Fpdf-splitter/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279018578,"owners_count":26086583,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-14T02:00:06.444Z","response_time":60,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["aspect-ratio","command-line-tool","content-center","cross-platform","custom-page","document-management","document-processing","file-conversion","file-organization","image-processing","image-to-pdf","multi-format-support","open-source","pdf-merger","pdf-splitter","pdf-tools","productivity-tool","python","python-utility","python3"],"created_at":"2025-04-03T22:16:26.436Z","updated_at":"2025-10-14T12:58:12.642Z","avatar_url":"https://github.com/jromero132.png","language":"Python","funding_links":["https://buymeacoffee.com/jromero132"],"categories":[],"sub_categories":[],"readme":"# PDF Splitter\n\n[![Buy Me a Coffee](https://img.shields.io/badge/Buy%20Me%20a%20Coffee-ffdd00?logo=buy-me-a-coffee\u0026logoColor=black)](\u003chttps://buymeacoffee.com/jromero132\u003e \"Buy Me a Coffee - jromero132\")\n[![Made with Python](https://img.shields.io/badge/Python-\u003e=3.6-blue?logo=python\u0026logoColor=white)](\u003chttps://python.org\u003e \"Go to Python homepage\")\n![Last commit](https://img.shields.io/github/last-commit/jromero132/pdf-splitter \"Last commit\")\n---\n\nPDF Splitter is a `Python` tool that takes a multi-page `PDF` file and splits it into individual `PDF` files, one for\neach page of the original document.\n\n## Features\n\n- Split a multi-page `PDF` into individual single-page `PDFs`\n- Maintain original page quality and formatting\n- Simple command-line interface\n- Fast and efficient processing\n\n## Requirements\n\n- `Python 3.6`\n- `PyPDF2`\n\n## Installation\n\nTo set up this project, follow these steps:\n\n1. Clone the repository:\n\n   ```bash\n   git clone https://github.com/jromero132/pdf-splitter.git\n   cd pdf-splitter\n   pip install -r requirements.txt```\n\n## Usage\n\nTo split a `PDF` file, use the following command:  \n`python main.py path/to/your/file.pdf`\n\nThis will create the output directory if provided, otherwise it will use the current directory. Each page of the original\n`PDF` will be saved as a separate PDF file in this new directory.\n\nExample:  \n`python main.py documents/my_large_document.pdf output_folder`\n\nThis will create a directory `output_folder` containing files like `page_1.pdf`, `page_2.pdf`, etc.\n\n## Support\n\nIf you encounter any problems or have any questions, please open an issue in the GitHub repository.\n\n## Contributing\n\nContributions are welcome! Please feel free to submit a pull request.\n\n## License\n\nThis project is licensed under the terms of the license file included in this repository.\n\n### Happy Coding! 🚀\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjromero132%2Fpdf-splitter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjromero132%2Fpdf-splitter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjromero132%2Fpdf-splitter/lists"}