Skip to main content

No project description provided

Project description

Phiton

Phiton is a Python code compressor that converts standard Python code into a more concise notation using mathematical symbols and some lightweight compression techniques.

Phiton compresses Python into Unicode symbols. Control flow symbols (⇐ for return, ↥ for yield, ⟳ for while, ∀ for for, ⋔ for if, ⋮ for else, ⊘ for pass, ⊠ for break, ⋯ for continue), operators (≔ for =, ≡ for ==, ≠ for !=, ∈ for in, ∉ for not in, ∧ for and, ∨ for or, ¬ for not, ≤ for <=, ≥ for >=), special values (∅ for None, ⊤ for True, ⊥ for False), function definitions (ƒ for def, λ for lambda, Σ for class, ⊡ for async/await), block structure (⟨...⟩ for indented blocks, → for statement separator), common functions (ℓ for len, ℜ for range, ℯ for enumerate, φ for filter, ℤ for zip, ς for sorted, ℛ for reversed), domain prefixes (№ for numpy, ℗ for pandas, χ for sklearn, μ for matplotlib, Ψ for torch, Φ for tensorflow), and literals (#123 for numbers, $text for strings).


echo "#python"; cat test.py; echo; echo "#phiton"; cat test.py | python -m phiton; echo; echo; echo "#re-python"; cat test.py | python -m phiton | python -m phiton -d;
def factorial(n):
    if n <= 1:
        return 1
    else:
        return n * factorial(n - 1)

Can be phitonized (compressed) to:

ƒfactorialn⟨⋔n≤#1⟨⇐#1⟩⋮⇐n*factorialn-#1⟩

and then dephitonized (decompressed) to:

def factorial(n):
    if n <= 1:
        return 1
    else:
        return n * factorial(n - 1)

Note: Not all Phiton code can be dephitonized into Python code.

Features

  • Convert Python code to a compressed symbolic notation
  • Adjustable compression levels (1-5)
  • Preserve comments and type hints (optional)
  • Command-line interface

Installation

Using uv:

uv pip install phiton

or legacy pip:

pip install phiton

Or from the repository:

uv pip install git+https://github.com/twardoch/phiton.git

For development, you can install with extras:

pip install -e ".[dev,test]"

Usage

Command Line

Compress a Python file:

python -m phiton example.py

Read from stdin and write to stdout:

cat example.py | python -m phiton > example.phi

Preview compression without saving:

python -m phiton example.py --preview

Compress with specific options:

python -m phiton example.py --level=3 --comments=False --type-hints=False

Compress an entire directory:

python -m phiton my_project/ --output-path=compressed/

Show version:

python -m phiton version

Python API

from phiton import compress_string, compress_file, ConversionConfig

# Basic usage
result = compress_string("def hello(name: str) -> str:\n    return f'Hello, {name}!'")
print(result["result"])  # Compressed code
print(result["stats"])   # Compression statistics

# With custom configuration
config = ConversionConfig(
    level=3,             # Compression level (1-5)
    comments=False,      # Don't preserve comments
    type_hints=True,     # Preserve type hints
    minify=True,         # Minify the code
    symbols=True,        # Use symbol substitution
)
result = compress_string("def hello(name: str) -> str:\n    return f'Hello, {name}!'", config)

# a file
stats = compress_file("example.py", "example.phi", config)

Compression Levels

Phiton offers 5 compression levels:

  1. Basic: Minimal symbol substitution, preserves structure and readability
  2. Moderate: More symbol substitutions while maintaining readability
  3. Standard: Full symbol substitution with some structure preservation
  4. High: Aggressive symbol substitution and minimal structure
  5. Maximum: Highest compression with shortest possible representation

Symbol Examples

Python Phiton Description
def ƒ Function definition
return Return statement
if Conditional
for For loop
in Membership test
None None value
True True value
False False value
and Logical AND
or Logical OR
not ¬ Logical NOT
== Equality
!= Inequality
<= Less than or equal
>= Greater than or equal
= Assignment

Project Structure

phiton/
├── examples/           # Example files for testing
├── src/
│   └── phiton/         # Main package
│       ├── __init__.py # Package entry point
│       ├── __main__.py # CLI entry point
│       ├── cli.py      # Command-line interface
│       ├── config.py   # Configuration dataclass
│       ├── constants.py # Symbol mappings
│       ├── converter.py # Core conversion logic
│       └── utils.py    # Utility functions
└── tests/              # Test suite
    ├── data/           # Test data files
    ├── test_cli.py     # CLI tests
    ├── test_config.py  # Configuration tests
    ├── test_converter.py # Converter tests
    └── test_utils.py   # Utility tests

Development

Setup

  1. Clone the repository:

    git clone https://github.com/twardoch/phiton.git
    cd phiton
    
  2. Create and activate a virtual environment:

    python -m venv .venv
    source .venv/bin/activate  # On Windows: .venv\Scripts\activate
    
  3. Install development dependencies:

    pip install -e ".[dev,test]"
    

Testing

Run the tests:

python -m pytest

Run with coverage:

python -m pytest --cov=src/phiton

Linting

Run the linter:

ruff check .

Fix linting issues:

ruff check --fix --unsafe-fixes .

Format the code:

ruff format .

License

MIT License

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

phiton-1.0.7.tar.gz (372.3 kB view details)

Uploaded Source

Built Distribution

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

phiton-1.0.7-py3-none-any.whl (21.9 kB view details)

Uploaded Python 3

File details

Details for the file phiton-1.0.7.tar.gz.

File metadata

  • Download URL: phiton-1.0.7.tar.gz
  • Upload date:
  • Size: 372.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.6.1

File hashes

Hashes for phiton-1.0.7.tar.gz
Algorithm Hash digest
SHA256 8a2c2be0df05d6d5dd067a9e3b0ebb3f02558f1e666d2269ce932dff68d59716
MD5 1990fc4fc9171ccc2f7ad9ae7344c565
BLAKE2b-256 cf6a4d67ab8b94748ed98c09dd545237bbbcc59bcef41c7e3d07605ef670c380

See more details on using hashes here.

File details

Details for the file phiton-1.0.7-py3-none-any.whl.

File metadata

  • Download URL: phiton-1.0.7-py3-none-any.whl
  • Upload date:
  • Size: 21.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.6.1

File hashes

Hashes for phiton-1.0.7-py3-none-any.whl
Algorithm Hash digest
SHA256 20d0365fd98b8eaa394851cbc32184f88aff31c48eb1bfefd4fcb13ec5498a73
MD5 27b711601be8653d0ae7df408f60f10c
BLAKE2b-256 b0e59969adba603d2e0b4a18b7c79f3096fb7b75dc5daef8fdc135ae189fa13a

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