Skip to content

Latest commit

 

History

History
21 lines (18 loc) · 940 Bytes

README.md

File metadata and controls

21 lines (18 loc) · 940 Bytes

code-context-python

Python UI to easily copy the context of your code projects as a JSON object. Built to import context easily to ChatGPT.

Features

  • Outputs a list of files with JSON objects for:
    • File Name
    • File Type
    • File Path
    • File Content

Example Output:

[ { "fileName": "index", "fileType": ".html", "filePath": "cryptotracker\index.html", "content": "\n<html lang="en">\n \n <meta charset="UTF-8" />\n <link rel="icon" type="image/svg+xml" href="/logo.png" />\n <meta name="viewport" content="width=device-width, initial-scale=1.0" />\n <title>CryptoTracker</title>\n \n \n <div id="root">\n <script type="module" src="/src/main.tsx"></script>\n \n\n" } ]

Interface