-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
522 additions
and
184 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,36 @@ | ||
# SparklyPython | ||
The most powerful, beginner-friendly, and open-source Python IDE, fully written in Python and using Tkinter for GUI. | ||
SparklyPython is a powerful and open-source Python IDE based on Tkinter. It provides many features, fully customizable, and beginner-friendly! | ||
|
||
You can convert the main file `main.py` to an `.exe` file using [PyInstaller](https://pypi.org/project/pyinstaller/). The command was used is here: | ||
- Highlighter for Python syntax | ||
- Powerful Python Autocomplete | ||
- Files Explorer to navigate files easily | ||
- Beginner-friendly and easy to use | ||
|
||
``` | ||
## 📥 Download | ||
|
||
To download the application, simply go to [releases](https://github.com/TFAGaming/SparklyPython/releases/latest) and scroll down until you find the assets, click on the **.zip** file to download it. When the download finishes, unzip the compressed folder to a normal folder and start the application by running the file **SparklyPython.exe**. | ||
|
||
Ensure SparklyPython has permission to write and read files because if these permissions are missing, the application will return many errors and eventually crash. | ||
|
||
## 💿 Convert `.py` to `.exe` | ||
|
||
To convert the main source code of SparklyPython to an executable file, you must install [PyInstaller](https://pyinstaller.org/en/stable/) and then use the following command for the conversion: | ||
|
||
```sh | ||
pyinstaller main.py -w --icon=icon.ico | ||
``` | ||
|
||
Enjoy while using SparklyPython! =) | ||
PyInstaller will eventually make two directories, "build" and "dist". The important folder is the "dist" because it contains every **.dll** file and modules that makes the app run on any operating system, so you can delete the "build" folder, drag **icon.ico** to the **build/main** folder, and convert the **build/main** to a compressed file (**.zip**). | ||
|
||
## 🐛 Known bugs | ||
- If the configuration file has a missing property while the settings window is loading the file, it will eventually stop the window from getting ready. | ||
- When modifying a keyword plugin that has a dot behind the current word by selecting an option from the SparklyPython Autocomplete list, it will remove anything behind the current word and replace it with the selected keyword. For an example, the full string `test_class.test_funct...` will be replaced by `test_function` only, not `test_class.test_function`. | ||
- When Files Explorer loads many files and directories, the app might freeze and eventually crash. If the application is being used while Explorer is loading, it might use a lot of RAM, which eventually slows down the device. | ||
|
||
## Screenshots | ||
## 🖼️ Screenshots | ||
<img src="./screenshots/screenshot-1.png"> | ||
<img src="./screenshots/screenshot-2.png"> | ||
<img src="./screenshots/screenshot-3.png"> | ||
|
||
## License | ||
The MIT License ([View here](./LICENSE)) | ||
## 📄 License | ||
The **MIT** License ([view here](./LICENSE)) |
Oops, something went wrong.