https://github.com/niftycode/simple_text_editor
A simple text editor, written in Python 3 using the PyQt5 library
https://github.com/niftycode/simple_text_editor
Last synced: 30 days ago
JSON representation
A simple text editor, written in Python 3 using the PyQt5 library
- Host: GitHub
- URL: https://github.com/niftycode/simple_text_editor
- Owner: niftycode
- License: mit
- Created: 2019-08-21T13:05:40.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2020-08-26T13:28:14.000Z (almost 6 years ago)
- Last Synced: 2025-02-28T11:58:20.503Z (over 1 year ago)
- Language: Python
- Size: 13.7 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# simple_text_editor
A simple Text Editor, written in Python 3 using the PyQt5 framework.
## Requirements
* Python 3.6+
* PyQt5
Install PyQt5 using the following commands:
pip install PyQt5 (Windows)
pip3 install PyQt5 (macOS)
apt install python3-qt5 (Linux)
## Howto
Start the program with
$ python3 simple_text_editor.py
on UNIX-like systems or
$ python simple_text_editor.py
on Windows 10.
## Todo
* ~~Save files~~
* Save files with *txt* file extension
* Unit Testing
## Changelog
* **18.01.2020**, *Version 1.0.1*: Add 'save as' support