{"id":15066839,"url":"https://github.com/davyjonescodes/tplparserpy","last_synced_at":"2026-01-25T11:03:12.608Z","repository":{"id":254052930,"uuid":"845331250","full_name":"DavyJonesCodes/TPLParserPy","owner":"DavyJonesCodes","description":"A Python package to parse Photoshop TPL files and extract data into JSON format.","archived":false,"fork":false,"pushed_at":"2024-08-21T04:59:58.000Z","size":106,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-25T05:54:34.045Z","etag":null,"topics":["automation","cli","data-extraction","image-editing","json","library","photoshop","python","tool-preset","tpl"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/DavyJonesCodes.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"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}},"created_at":"2024-08-21T03:32:06.000Z","updated_at":"2024-08-21T20:50:23.000Z","dependencies_parsed_at":"2024-08-21T05:50:42.778Z","dependency_job_id":null,"html_url":"https://github.com/DavyJonesCodes/TPLParserPy","commit_stats":null,"previous_names":["davyjonescodes/tplparserpy"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/DavyJonesCodes/TPLParserPy","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DavyJonesCodes%2FTPLParserPy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DavyJonesCodes%2FTPLParserPy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DavyJonesCodes%2FTPLParserPy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DavyJonesCodes%2FTPLParserPy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DavyJonesCodes","download_url":"https://codeload.github.com/DavyJonesCodes/TPLParserPy/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DavyJonesCodes%2FTPLParserPy/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28752380,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-25T10:25:12.305Z","status":"ssl_error","status_checked_at":"2026-01-25T10:25:11.933Z","response_time":113,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["automation","cli","data-extraction","image-editing","json","library","photoshop","python","tool-preset","tpl"],"created_at":"2024-09-25T01:12:58.701Z","updated_at":"2026-01-25T11:03:12.589Z","avatar_url":"https://github.com/DavyJonesCodes.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# TPLParserPy\r\n\r\n\u003cp align=\"center\"\u003e\r\n  \u003cimg src=\"https://raw.githubusercontent.com/DavyJonesCodes/TPLParserPy/ff1be2e10922593ffe2949b8927ff6696000ecde/assets/logo.png\" alt=\"Logo\" height=\"128px\"\u003e\r\n\u003c/p\u003e\r\n\r\n\u003cp align=\"center\"\u003e\r\n  \u003cimg src=\"https://img.shields.io/badge/python-3670A0?style=for-the-badge\u0026logo=python\u0026logoColor=ffdd54\" /\u003e\r\n  \u003cimg src=\"https://img.shields.io/badge/adobe%20photoshop-%2331A8FF.svg?style=for-the-badge\u0026logo=adobe%20photoshop\u0026logoColor=white\"/\u003e\r\n\u003c/p\u003e\r\n\r\n# 🎨 TPLParserPy\r\n\r\nWelcome to **TPLParserPy**! 🛠️ This Python package is designed to help you parse Photoshop TPL (Tool Preset) files and extract the data into a friendly JSON format. Perfect for anyone who wants to dive deep into TPL files and understand their inner workings! 💡\r\n\r\n## ✨ Features\r\n\r\n- 🔍 **Parse Photoshop TPL files** with ease.\r\n- 🗂️ **Extract tool names, types, and properties** into JSON format.\r\n- 💾 **Save the extracted data** for further use or analysis.\r\n\r\n## 🚀 Installation\r\n\r\nYou can easily install TPLParserPy via pip from [PyPI](https://pypi.org/project/tpl-parser/):\r\n\r\n```bash\r\npip install tpl-parser\r\n```\r\n\r\n## 🛠️ Usage\r\n\r\n### Importing and Using the Library\r\n\r\nHere's a quick example of how to use TPLParserPy in your Python project:\r\n\r\n```python\r\nfrom TPLParser import TPLReader\r\n\r\nfile_path = \"path/to/yourfile.tpl\"\r\nreader = TPLReader(file_path)\r\ntpl_data = reader.read_tpl()\r\nreader.save_to_json(\"output.json\")\r\n```\r\n\r\n### Command-Line Interface\r\n\r\nTPLParserPy also includes a handy command-line interface for quick parsing:\r\n\r\n```bash\r\ntpl-parser path/to/yourfile.tpl -o output.json\r\n```\r\n\r\n## 🤝 Contributions\r\n\r\nContributions are welcome! 🎉 If you'd like to contribute to TPLParserPy, feel free to fork the repository and submit a pull request. If you have any questions or need guidance, don't hesitate to contact me at [devjonescodes@gmail.com](mailto:devjonescodes@gmail.com).\r\n\r\n## 📄 License\r\n\r\nThis project is licensed under the Creative Commons Attribution-NonCommercial 4.0 International License. For more details, see the [LICENSE](./LICENSE) file. For commercial use, please contact [Dev Jones](mailto:devjonescodes@gmail.com).\r\n\r\n## 📬 Contact\r\n\r\nIf you have any questions, suggestions, or just want to say hi, feel free to reach out via email: [devjonescodes@gmail.com](mailto:devjonescodes@gmail.com). We'd love to hear from you! 😊","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdavyjonescodes%2Ftplparserpy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdavyjonescodes%2Ftplparserpy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdavyjonescodes%2Ftplparserpy/lists"}