Skip to main content

Extended Language Support for Python

Project description

LangEx

Extended Language Support for Python

Dynamic JSON Badge Sponsor

Installation

pip install langex

About

LangEx is an experimental Python library that introduces additional language-level constructs using decorators, metadata inspection, and runtime validation.

It focuses on enabling capabilities that Python does not strictly enforce by default, such as interface-like structures, structured metadata, and runtime type validation.

The project builds small language utilities that operate on Python objects (functions, classes, and other callables) to inspect, validate, and extend their behavior while remaining fully compatible with standard Python.

Features

  • Interface-like constructs for Python classes
  • Metadata extraction for Python objects and callables
  • Runtime validation utilities
  • Decorator-based language extensions
  • Runtime argument and return type checking
  • Lightweight core inspection tools

Example

Defining and using an Interface

from langex.core.classes import implements, interface
from langex.core.functions import args_required, returns

@interface
class InterfaceClass:
  @args_required(int)
  @returns(int)
  def method1(self, a: int) -> int:
    ...

  @args_required(str)
  @returns(str)
  def method2(self, b: str) -> str:
    ...

@implements(InterfaceClass)
class ImplementationClass:
  def __init__(self, factor):
    self.factor = factor

  def method1(self, a: int) -> int:
    return a * self.factor

  def method2(self, b: str) -> str:
    return b.upper() * self.factor

instance = ImplementationClass(3)
print(instance.method1(5)) # prints 15 in console
print(instance.method2("hi")) # prints "HIHIHI" in console
print(instance.method1("5")) # raises Langex Validation Error
print(instance.method2(5)) # raises Langex Validation Error

Runtime Type Enforcement

from langex.core.functions import args_required, returns

@args_required(int, int)
@returns(int)
def add(a, b):
  return a + b

print(add(1, 2)) # prints the integer 3 in console
print(add("1", "2")) # raises Langex Validation Error

Singleton Class Example

from langex.core.classes import singleton

@singleton
class IdGenerator:
  def __init__(self, initial = 0):
    self.value = initial

  def next_id(self):
    self.value += 1
    return self.value

id_gen1 = IdGenerator()
id_gen2 = IdGenerator()

print(id_gen1.next_id()) # prints 1 in console
print(id_gen1.next_id()) # prints 2 in console
print(id_gen2.next_id()) # prints 3 in console

print(id_gen1 is id_gen2) # prints True in console

Project Structure

langex
├── __init__.py
├── __main__.py
├── classes
│   ├── __init__.py
│   ├── class_meta.py
│   ├── methods_meta.py
│   └── singleton.py
├── constants
│   ├── __init__.py
│   ├── contents.py
│   ├── keys.py
│   └── labels.py
├── core
│   ├── __init__.py
│   ├── classes.py
│   └── functions.py
├── errors
│   ├── __init__.py
│   ├── instantiation.py
│   ├── langex.py
│   ├── misapplication.py
│   ├── unimplemented.py
│   └── validation.py
├── functions
│   ├── __init__.py
│   ├── args_meta.py
│   ├── function_meta.py
│   ├── returns_meta.py
│   ├── signature.py
│   └── signature_parser.py
├── utils
│   ├── __init__.py
│   ├── extracter.py
│   └── matcher.py
└── validation
    ├── __init__.py
    ├── kw_args_validator.py
    ├── pos_args_validator.py
    ├── returns_validator.py
    └── validator.py

Module Overview

  • The core module contains the core decorators and utilities for language extensions.
  • The constants module contains constant strings and keys used across the project for metadata, attributes and validation.
  • The classes module contains tools for class inspection and interface-like constructs.
  • The functions module contains tools for function metadata and signature inspection.
  • The validation modules contain logic for validating function arguments and return values at runtime.
  • The utils module contains helper functions for type matching and other utilities.
  • The errors module defines custom exceptions for validation and other errors.

Design Philosophy

LangEx is designed around a few principles:

  • Pure Python implementation
  • Explicit developer intent
  • Small composable language utilities

Rather than acting as a framework, LangEx provides foundational language tools that can be used to build higher-level abstractions.

Status

Experimental and under active development.
APIs and structure may evolve as the project grows.

Links

Contributors

Support

If you find this project useful, please consider supporting it by starring the GitHub repository or sharing it with others who might benefit from it.

Your support helps in the continued development and improvement of the project.

You can also contribute to the project by submitting issues, suggesting features, or even contributing code through pull requests.

You can also sponsor the project on GitHub Sponsors: GitHub Sponsors - AttAditya


Made with <3 by AttAditya

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

langex-0.3.11.tar.gz (16.0 kB view details)

Uploaded Source

Built Distribution

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

langex-0.3.11-py3-none-any.whl (21.1 kB view details)

Uploaded Python 3

File details

Details for the file langex-0.3.11.tar.gz.

File metadata

  • Download URL: langex-0.3.11.tar.gz
  • Upload date:
  • Size: 16.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for langex-0.3.11.tar.gz
Algorithm Hash digest
SHA256 d1ea745a0c04014feea1377f44f5305946ea4c04104674b5532b1b9927a38b1a
MD5 6244c8ae0f613cfb51f2be5da88c1622
BLAKE2b-256 1cd0a323fc986dbd87b6b77639cd32117874b43a35e492200f9cca9cf8bb8f0b

See more details on using hashes here.

File details

Details for the file langex-0.3.11-py3-none-any.whl.

File metadata

  • Download URL: langex-0.3.11-py3-none-any.whl
  • Upload date:
  • Size: 21.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for langex-0.3.11-py3-none-any.whl
Algorithm Hash digest
SHA256 5adaca7ebfb534f76a918e3c164c8791e4e63c345c971882fbea1d9e48a0637b
MD5 1b293f3892a614b7330d7b68d0255cf1
BLAKE2b-256 2a386f7241273cff2aed8e5b6bc307d22f0f4bc22504a0ce4dbf382027eec77c

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