Skip to main content

Python with braces

Project description

PyBraces - Python with Braces

Python is a great language, but writing one-liners in it can be challenging. PyBraces fixes that.

TL;DR

In:

def print_message(num_of_times): {
    for i in range(num_of_times): {
        print("Hello World!");
    }
}

if __name__ == "__main__": {
    print_message(10);
}

Out:

def print_message(num_of_times):
    for i in range(num_of_times):
        print("Hello World!")
if __name__ == "__main__":
    print_message(10)

Installation

pip install pybraces

Usage

# Transform input.b.py to output.py
pyb -t < input.b.py > output.py

# Transform oneliner script into Python
pyb -t 'if 1: { if 2: { print(3) } }'

# Execute oneliner script as Python
pyb -c 'if 1: { if 2: { print(3) } }'

Description

This package is a preprocessor that transforms Python code with braces into Python code with indentation. Although it's targeted to writing one-liners in Python, it can be used to write Python code with braces.

The implementation is extremely lightweight and has only one dependency: regex package for recursive regexes. Once Python natively supports recursive regexes, the dependency will be removed.

In comparison to Bython, PyBraces doesn't require a special syntax for inline dictionaries.

The pyb command that comes with this package can be used to transform Python code with braces into Python code with indentation or to directly execute code as Python. It then passes all arguments to the Python interpreter.

Why semicolon?

One might ask why the semicolon is kept in the "braced" syntax?

Why

if 1: { print(1) }

not just

if 1 { print(1) }

This is to avoid confusion with dicts and sets where braces are used in normal Python so that normal syntax for dicts and sets can be used with braces:

a = {"qwe": 123, "asd": 456}
b = 5 in {1, 2, 3}

What's the standard extension for PyBraces?

Although one-liners are not supposed to be saved in files, the suggested extension for PyBraces is .b.py. PyBraces syntax is not exactly Python but still close to it, so developers can benefit from syntax highlighting and other features of their IDEs to some extent.

Links

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pybraces-0.1.0.tar.gz (17.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pybraces-0.1.0-py3-none-any.whl (17.4 kB view details)

Uploaded Python 3

File details

Details for the file pybraces-0.1.0.tar.gz.

File metadata

  • Download URL: pybraces-0.1.0.tar.gz
  • Upload date:
  • Size: 17.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.9

File hashes

Hashes for pybraces-0.1.0.tar.gz
Algorithm Hash digest
SHA256 51d0f9a26dc51670aa29f74870bcb119b615da5013915583f6e8a46a6af9557a
MD5 4d7a31a63b43a0aa48784083f01a634b
BLAKE2b-256 bfe383667ab6a8c58d20f6fe801d8744df3fea565cb64bff6d70201aa1ec9660

See more details on using hashes here.

File details

Details for the file pybraces-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: pybraces-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 17.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.9

File hashes

Hashes for pybraces-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 566640b5a9150e33ab605bdfc37ee5991daaa20802487bf2e46725c3555159e5
MD5 35860331bd91004e27ec7d516130cf3b
BLAKE2b-256 5a181b6ed304bea1ef3832ac5564dbde9da9096bb73a6fe0333fcb242164d5df

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page