#πŸ”’ what do you think about this Python tool?

7 messages Β· Page 1 of 1 (latest)

exotic turret
delicate lindenBOT
#

@exotic turret

Python help channel opened

Remember to:

  • Ask your Python question, not if you can ask or if there's an expert who can help.
  • Show a code sample as text (rather than a screenshot) and the error message, if you've got one.
  • Explain what you expect to happen and what actually happens.

:warning: Do not pip install anything that isn't related to your question, especially if asked to over DMs.

eternal oak
#

perhaps provide a structured layout example of what its going to create.. then if it doesnt show you exactly what it created, file dir structure then include that

#

ie,

my_python_project/
β”œβ”€β”€ my_python_project/              # Main package (core logic)
β”‚   β”œβ”€β”€ __init__.py                # Makes this directory a Python package
β”‚   β”œβ”€β”€ module1.py                 # A Python module
β”‚   β”œβ”€β”€ module2.py                 # Another Python module
β”‚   └── utils.py                   # Utility functions or helpers
β”œβ”€β”€ tests/                         # Test files
β”‚   β”œβ”€β”€ __init__.py                # Makes this directory a Python package
β”‚   β”œβ”€β”€ test_module1.py            # Test for module1
β”‚   β”œβ”€β”€ test_module2.py            # Test for module2
β”‚   └── test_utils.py              # Test for utility functions
β”œβ”€β”€ setup.py                       # Setup script for installation (if creating a package)
β”œβ”€β”€ requirements.txt               # List of dependencies (e.g., libraries)
β”œβ”€β”€ README.md                      # Project description and documentation
β”œβ”€β”€ LICENSE                        # License file for the project
└── .gitignore                     # Specifies which files to ignore in git versioning
exotic turret
#

thanks for the advice

delicate lindenBOT
#
Python help channel closed

This help channel has been closed and it's no longer possible to send messages here. If your question wasn't answered, feel free to create a new post in #1035199133436354600. To maximize your chances of getting a response, check out this guide on asking good questions.