
# 10 ChatGPT Prompts to Speed Up Python Projects

## Prompt List

1. `Create a full FastAPI app with endpoints for listing, adding, updating, and deleting books. Use Pydantic models and SQLite.`
2. `Help me debug this error: Traceback (most recent call last)...`
3. `Write Pytest unit tests for the following Python function: [insert function]`
4. `Add docstrings to all methods in this Python class: [insert class code]`
5. `Refactor this script to use a config file instead of hard-coded values.`
6. `Convert this list of dictionaries into a Pandas DataFrame.`
7. `Add logging to this Python script using the logging module. Include info, warning, and error levels.`
8. `Write a Python command-line tool using argparse that takes in a file path and prints the number of lines.`
9. `Explain this code like I'm a beginner: [insert code snippet]`
10. `Suggest performance improvements for this code snippet: [insert code]`
