Skip to main content

A multi-paradigm programming language that compiles to Python, JavaScript, and more

Project description

PolyPrime 🎯

PyPI Python License

PolyPrime is a multi-paradigm programming language that compiles to multiple target languages including Python, JavaScript, and more. Write once, deploy everywhere.

✨ Features

  • 🎯 Multi-Target Compilation: Compile to Python, JavaScript, with more targets coming
  • 🚀 Simple Syntax: Clean, easy-to-learn syntax inspired by modern languages
  • 🔧 Extensible: Easy to add new compilation targets
  • 📦 Lightweight: Minimal dependencies, fast compilation
  • 🎨 Modern: Designed for today's polyglot development environment

🚀 Quick Start

Installation

pip install polyprime

Your First Program

Create a file hello.pp:

function main() {
    let message = "Hello, PolyPrime!";
    print(message);
    return 0;
}

Compile and run:

# Compile to Python
polyprime compile hello.pp --target python

# Compile to JavaScript
polyprime compile hello.pp --target javascript

# Run directly
polyprime run hello.pp

📝 Language Syntax

Variables

let x = 42;           // Mutable variable
const pi = 3.14159;   // Immutable constant

Functions

function add(a, b) {
    return a + b;
}

function greet(name) {
    print("Hello, " + name);
}

Control Flow

if (x > 0) {
    print("Positive");
} else {
    print("Non-positive");
}

for (i = 0; i < 10; i++) {
    print(i);
}

while (condition) {
    // loop body
}

🎯 Compilation Targets

Target Status Extension
Python ✅ Ready .py
JavaScript ✅ Ready .js
TypeScript 🚧 Coming Soon .ts
Rust 🚧 Planned .rs
Go 🚧 Planned .go

🛠️ CLI Usage

# Initialize a new project
polyprime init myproject

# Compile a file
polyprime compile source.pp --target python

# Run a program
polyprime run source.pp

# Show version
polyprime --version

# Get help
polyprime --help

📦 API Usage

from polyprime import Compiler

# Create compiler instance
compiler = Compiler()

# Compile source code
source = """
function main() {
    let x = 42;
    return x;
}
"""

# Compile to Python
python_code = compiler.compile(source, target="python")
print(python_code)

# Compile to JavaScript
js_code = compiler.compile(source, target="javascript")
print(js_code)

🎯 Use Cases

  • Educational: Learn programming concepts that translate across languages
  • Prototyping: Quickly prototype in one language, deploy in another
  • Migration: Gradually migrate codebases between languages
  • Polyglot Teams: Let team members work in a unified syntax

🤝 Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/AmazingFeature)
  3. Commit your changes (git commit -m 'Add some AmazingFeature')
  4. Push to the branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

📚 Documentation

For more detailed documentation, visit our GitHub repository.

📄 License

This project is licensed under the MIT License - see the LICENSE file for details.

👨‍💻 Author

Michael Benjamin Crowe

🙏 Acknowledgments

  • Inspired by modern programming language design
  • Built with Python for maximum portability
  • Designed for the polyglot programming era

Ready to write once and deploy everywhere? Install PolyPrime today!

pip install polyprime

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

polyprime-0.2.0.tar.gz (11.6 kB view details)

Uploaded Source

Built Distribution

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

polyprime-0.2.0-py3-none-any.whl (10.2 kB view details)

Uploaded Python 3

File details

Details for the file polyprime-0.2.0.tar.gz.

File metadata

  • Download URL: polyprime-0.2.0.tar.gz
  • Upload date:
  • Size: 11.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.9

File hashes

Hashes for polyprime-0.2.0.tar.gz
Algorithm Hash digest
SHA256 e93f41233357c27254dd6ea3f16a9373b934e5a7c3d0a910e8b6753789913d14
MD5 f0ac10a3e2fb381f8fdb17f3df9a3559
BLAKE2b-256 b7edea17e74cc10773550624874cc378dd62d250cba9a40489b4b0cb6d007b7f

See more details on using hashes here.

File details

Details for the file polyprime-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: polyprime-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 10.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.9

File hashes

Hashes for polyprime-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 ca19f49dd9335fa083dad8c11866c80cb2487264183c172238d52e5ed1f7a348
MD5 53e7d2f0e303cc668cc4aeaac35ebfda
BLAKE2b-256 ded9ad97ebc62ee7b7af034394d652f24b17ce795a986b5086f2e6fb5c4e5aa1

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