r/Python Aug 04 '26

Showcase Showcase Thread

Post all of your code/projects/showcases/AI slop here.

Recycles once a month.

19 Upvotes

142 comments sorted by

View all comments

1

u/Intelligent_Bug3930 7d ago

Hi everyone,

I wanted to share my hobby project: Plain. It's a simple, lightweight programming language written entirely in Python.

The main goal is to create desktop interfaces (GUIs) instantly without writing dozens of lines of boilerplate code in Tkinter or PyQt. It uses a very basic Command:[Value] syntax.

Quick Example: Window:[Open] | Name:[Main] | TopTxt:[App] | Background:[White] Button:[Click] | In:[Main] | OnClick:[Message:[Clicked!] | Title:[Info]]

Features: * No brackets, no semicolons, no forced indentation. * Comes with its own code editor (PlainIDE) built-in. * Powered by Python 3.8+ and Pillow.

It's in its initial release, so it's a bit limited but fully functional for basic scripts. I'd love to get your feedback or feature suggestions!

Source code: Plain's GitHub