Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/59de44955ebd/pywordpad
A clone of classic MS Wordpad written in pure Python (no third-party modules), based on native Windows controls and ctypes/libffi
https://github.com/59de44955ebd/pywordpad
Last synced: 5 days ago
JSON representation
A clone of classic MS Wordpad written in pure Python (no third-party modules), based on native Windows controls and ctypes/libffi
- Host: GitHub
- URL: https://github.com/59de44955ebd/pywordpad
- Owner: 59de44955ebd
- Created: 2024-03-27T12:12:42.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-04-12T05:42:48.000Z (7 months ago)
- Last Synced: 2024-04-12T13:24:34.397Z (7 months ago)
- Language: Python
- Homepage:
- Size: 288 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PyWordpad
A clone of classic (pre Win 7) MS Wordpad written in pure Python (no third-party modules), based on native Windows controls and ctypes/libffi## Differences to original Wordpad
* No tab stop ruler (but tab stops can be edited per paragraph via tabs dialog)
* No print preview
* No support for embedded OLE objects (pointless), only images. Images can be embedded either by dropping them into the editor, via menu or via clipboard.
* Dropping a document into the editor loads the document (instead of embedding it).
* No editing of colors, it's meant for b/w documents (otherwise dark mode would't work)
* Natively supported document formats: .rtf and .txt. If [pandoc.exe](https://github.com/jgm/pandoc/releases) is found in the system path, the following document formats are also supported: .docx .odt .md .htm .epub
* Natively supported image format: .bmp. If [magick.exe](https://github.com/ImageMagick/ImageMagick/releases) (ImageMagick) is found in the system path, the following image formats are also supported: .jpg .png .gif .tif
* Localized only for english and german (more languages can be added by duplicating and editing .json files in the resources folder)
* PyWordpad supports dark mode.## Screenshots
*PyWordpad in Windows 11*
![PyWordpad in Windows 11](screenshots/pywordpad.png)*PyWordpad in Windows 11 (Dark Mode)*
![PyWordpad in Windows 11 (Dark Mode)](screenshots/pywordpad-dark.png)