Metadata-Version: 2.4
Name: restructuredpython
Version: 2.6.0
Summary: A superset of Python with many new features, including full JS integration, multiline comments, header files, and optional curly brackets around control statements
Author-email: Rihaan Meher <meherrihaan@gmail.com>
License: Apache-2.0
Project-URL: Homepage, https://restructuredpython.rf.gd
Project-URL: Documentation, https://restructuredpython.readthedocs.org
Project-URL: Repository, https://github.com/sharktide/restructuredpython.git
Project-URL: Issues, https://github.com/sharktide/restructuredpython/issues
Project-URL: Changelog, https://restructuredpython.readthedocs.io/en/latest/changelog.html
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: textfmt
Dynamic: license-file

<h1 align="left"> This is reStructuredPython 2 </h1>

<p align="center">
    <img src="https://github.com/sharktide/repython-vs/blob/main/icons/icon.png">
</p>
<!-- ![logo](https://github.com/sharktide/repython-vs/blob/main/icons/icon.png)
 -->
 
<p align="center">
  <img src="https://github.com/sharktide/restructuredpython/actions/workflows/publish.yml/badge.svg?branch=main" alt="Publish Python Package">
  <img src="https://img.shields.io/badge/dynamic/toml?url=https%3A%2F%2Fraw.githubusercontent.com%2Fsharktide%2Frestructuredpython%2Frefs%2Fheads%2Fmain%2Fpyproject.toml&query=%24.project.version&label=Latest" alt="Latest Version">
  <a href="https://pepy.tech/projects/restructuredpython">
    <img src="https://static.pepy.tech/badge/restructuredpython/month" alt="PyPI Downloads">
  </a>
  <a href="https://socket.dev/pypi/package/restructuredpython/overview/2.4.0/tar-gz">
    <img src="https://socket.dev/api/badge/pypi/package/restructuredpython/2.4.0?artifact_id=tar-gz" alt="Socket Badge">
  </a>

  <img src="https://www.codefactor.io/repository/github/sharktide/restructuredpython/badge" alt="CodeFactor">
  <img src="https://img.shields.io/pypi/pyversions/restructuredpython" alt="Python Versions">
  <img alt="Static Badge" src="https://img.shields.io/badge/license-apache--2.0-red">
</p>

# 🔷 reStructuredPython — Python, Reimagined

**reStructuredPython** is a superset of Python designed to bring clarity, structure, and modularity to your codebase. It builds on Python’s strengths while introducing powerful features like `header files`, `function chaining`, and `curly-brace blocks`—all without sacrificing readability.

---

## 🚀 Why Choose reStructuredPython?

- ✅ **Readable, Structured Syntax** — Use `{}` braces for control flow, no ambiguous indentation
- 📦 **Modular Programming** — Split logic into `.repy` and `.cdata` files with easy `include`
- 🔗 **Function Chaining** — Chain transformations with `|>` for expressive pipelines
- 📄 **Header Files** — Define reusable APIs and utilities in clean `.cdata` blocks
- 🛠️ **Custom Compiler** — Compile structured Python into native `.py` code
- 🌐 **Cross-Platform** — Works anywhere Python runs

---

## Example

**`mathutils.cdata`**
```python
def square(x) {
  return x * x
}

def cube(x) {
  return x * x * x
}
```

**`main.repy`**

```
include 'mathutils.cdata'

def greet(name) {
  return "Hello, " + name
}

if __name__ == '__main__' {
  name = "Rihaan"
  print(greet(name))

  x = 5
  result = x |> square |> cube
  print("Result:", result)
}
```


To download the reStructuredPython compiler using the python package index:

```shell
pip install --upgrade restructuredpython
```
Download our vscode extension with intellisense support [from the visual studio marketplace](https://marketplace.visualstudio.com/items?itemName=RihaanMeher.restructuredpython)

To use the reStructuredPython compiler:

```shell
repy path/to/your/file.repy
```

## 📚 Documentation
Explore the syntax guide, chaining rules, and .cdata structure: 

[Docs Home](https://restructuredpython.readthedocs.io)
[Syntax Guide](https://restructuredpython.readthedocs.io/en/latest/reference/Syntax_Guide.html)

## Contributing

Please contribute and raise issues! We just started and this is a pioneering project. Fork the repository, make your changes, update the documentation in the docs/* folder, add examples (if applicable) in the tests/.repy and their compiled versions in tests/.py directory as well as in docs/source/tutorials/programs and in docs/source/tutorials/compiled_programs. Once you have ensured all features work of the compiler by test-compiling the other files in tests/.repy/*, make a pull request with the github issue number is applicable, short concise title and description of your changes. Warining: The first paragraph of the pull request description will go to be part of the changelong, so keep it short and clear. PLEASE DO NOT label your changes as a new version. That will be done manually or by a bot.

## Changelog

View the changelog at https://restructuredpython.readthedocs.io/en/latest/changelog.html

## Common mistakes

These mistakes will reslut in a syntax error thrown by the REPY compiler or invalid python.
View the error index at https://restructuredpython.readthedocs.io/en/latest/compiler/error_index/
