autodocz
autodocz is a lightweight Python package that generates project documentation files such as README.md, LICENSE, and a professional project REPORT.docx using a simple CLI interface.
Whether you're kickstarting a new project or preparing for submission, autodocz helps automate and standardize your documentation process.
📦 Installation
You can install autodocz directly from PyPI:
pip install autodocz
🔑 Configuration
Before using autodocz, you must provide your GROQ API key so the tool can interact with the Groq chat service. You can supply the key in one of two ways:
-
Environment variable (recommended):
export GROQ_API_KEY="your_groq_api_key_here"
-
CLI flag: pass it when you run the command:
autodocz generate all --api-key your_groq_api_key_here
If you do not provide a key, autodocz will exit with an error and prompt you to set one.
🚀 Usage
After installation and configuration, you can use the CLI tool via the terminal.
Generate a Specific Document
autodocz generate readme
Generates a README.md file.
autodocz generate license
Generates a LICENSE file.
autodocz generate report
Generates a professional REPORT.docx file (in MS Word format).
Generate All Documents
autodocz generate all
Generates all three files: README.md, LICENSE, and REPORT.docx.
Specify Output Filename/Path
autodocz generate readme -o MyReadme.md
📁 Output Files
README.md — Standard project introduction with sections like Installation, Usage, Features, etc.
LICENSE — A default license template.
REPORT.docx — A formal report document containing project summary, introduction, features, future work, contributions, etc.
🛠️ Requirements
- Python 3.9+
- A valid GROQ API key
🤝 Author
Made with ❤️ by Fatima Mansoor
fatima.mansoorali03@gmail.com
📌 Example
$ autodocz generate report --api-key {apikey}
✅ Generated REPORT.docx
Happy documenting! 📝