An open API service indexing awesome lists of open source software.

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

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