This project is a simple tool for displaying file and folder names in a selected directory. It also allows for ignoring certain folders such as .git, .idea, and __pycache__.
It's very handy when you have to describe all the files for chatgpt to help you.
To run this script, you will need Python 3. Ensure Python is installed on your machine by running python --version in your command line.
- Clone the repository to your machine.
git clone https://github.com/Lunoul/chatgptparser. - Open your command line and navigate to the project directory.
cd chatgptparser. - Install the required packages by running
pip install -r requirements.txt. - Run the script using the command
python main.py.
If you wish to compile this script into an executable, you can use tools like PyInstaller. Install PyInstaller using pip:
pip install pyinstallerpyinstaller --onefile main.py