Batteries-included distribution of the PyNeedle runtime.
Project description
PyNeedle: The Semantic Pointer Runtime
A modern toolkit for decoupling meaning from implementation in Python applications.
What is PyNeedle?
PyNeedle is a small, powerful library designed to manage application strings, internationalization (i18n), and other addressable resources through a clean, intuitive, and type-safe API. It replaces "magic strings" with Semantic Pointers—objects that represent the meaning of a resource, not its value.
Think of it as finding a "needle" in the "haystack" of your application's resources, but instead of searching by a string key, you use a structured, code-like pointer.
The core of the library is the global L object (short for "Location" or "Lexicon"). Instead of writing this:
# Prone to typos, hard to refactor, no autocompletion
get_message("error.login.invalid_password")
You write this:
# Fluent, autocompletes, refactorable, type-safe
nexus.get(L.error.login.invalid_password)
Core Concepts
PyNeedle's architecture is simple and composed of three main parts:
-
Semantic Pointer (
L): An immutable object that represents a path in a logical "semantic universe". It's created fluently using attribute access (L.auth.login) or path-like joins (L.auth / "login"). It acts as the universal key for all resources. -
Resource Loader: A component responsible for loading data from a source. PyNeedle includes a
FileSystemLoaderfor discovering.jsonfiles in your project and aMemoryLoaderfor tests or dynamic data. The contract is simple, so you can easily write your own loader for databases, APIs, etc. -
Nexus: The central runtime hub. The Nexus takes a list of loaders and resolves Semantic Pointers into their final string values. It intelligently handles language fallbacks and overlays, allowing you to merge resources from multiple sources with a clear priority order.
The pyneedle package provides a "batteries-included" global nexus instance that is pre-configured with a FileSystemLoader, making it incredibly easy to get started.
Key Features
- ✨ Fluent & Expressive API: Create pointers naturally with
L.user.profile.title. - ➕ Pointer Algebra: Perform powerful operations on pointers and sets of pointers, like distribution (
L.user * {"name", "age"}) and concatenation ({L.a, L.b} / "end"). - 🌐 Built-in I18n: The Nexus has first-class support for language resolution, environment variable detection (
NEEDLE_LANG), and graceful fallbacks. - 📚 Layered Configuration: The
OverlayNexususes aChainMapstrategy to logically overlay resource files. Aproject/.stitcher/needle/en/override.jsoncan easily override values from alibrary/needle/en/defaults.jsonwithout merging files. - 🔌 Extensible: Easily add custom
ResourceLoaderProtocolimplementations to fetch data from any source. - 📦 Decoupled Architecture: The project is split into logical packages (
pyneedle-spec,pyneedle-pointer,pyneedle-nexus,pyneedle-runtime), promoting clean design and maintainability. - 🔒 Type Safe: When used with its companion tool, Stitcher, PyNeedle enables full static analysis and autocompletion for all your resources.
Quick Start
This example demonstrates the core functionality using an in-memory loader.
from needle import L, nexus
from needle.nexus import OverlayNexus, MemoryLoader
# 1. Define some resource data for different languages
resource_data = {
"en": {
"app.title": "My Awesome App",
"user.greeting": "Welcome, {name}!",
},
"zh": {
"app.title": "我的超棒应用",
},
}
# 2. Create a loader with this data
memory_loader = MemoryLoader(data=resource_data)
# 3. Create a Nexus instance with the loader
# (In a real app, you might just use the global 'nexus' instance)
local_nexus = OverlayNexus(loaders=[memory_loader], default_lang="en")
# 4. Resolve pointers to strings
# --- Resolving in the default language (en) ---
title_en = local_nexus.get(L.app.title)
print(f"English Title: {title_en}")
# Output: English Title: My Awesome App
# --- Explicitly requesting a language that exists ---
title_zh = local_nexus.get(L.app.title, lang="zh")
print(f"Chinese Title: {title_zh}")
# Output: Chinese Title: 我的超棒应用
# --- Requesting a key that falls back to the default language ---
# 'user.greeting' doesn't exist in 'zh', so it falls back to 'en'
greeting_fallback = local_nexus.get(L.user.greeting, lang="zh")
print(f"Fallback Greeting: {greeting_fallback}")
# Output: Fallback Greeting: Welcome, {name}!
# --- Requesting a key that doesn't exist anywhere ---
# It gracefully falls back to its own string representation (Identity Fallback)
non_existent = local_nexus.get(L.app.non_existent_key)
print(f"Non-existent Key: {non_existent}")
# Output: Non-existent Key: app.non_existent_key
Advanced Usage
Pointer Algebra
Create sets of pointers for powerful, expressive operations.
from needle import L, PointerSet
# Define a set of base pointers
user_fields = PointerSet([L.user.name, L.user.email])
# Broadcast a suffix across the set
form_labels = user_fields / "label"
# Result: PointerSet({L.user.name.label, L.user.email.label})
# Use multiplication for cartesian-product-like expansion
actions = {"read", "write"}
permissions = L.auth.user * actions
# Result: PointerSet({L.auth.user.read, L.auth.user.write})
File-Based Loading
The default global nexus instance uses a FileSystemLoader. Simply create the following directory structure in your project root:
my_project/
├── needle/
│ ├── en/
│ │ └── main.json
│ └── zh/
│ └── main.json
├── pyproject.toml
└── src/
└── ...
needle/en/main.json:
{
"app.title": "My App from File"
}
Now, your application code is incredibly simple:
# src/my_project/main.py
from needle import L, nexus
def main():
# The global nexus automatically finds and loads the files
print(nexus.get(L.app.title))
# Output: My App from File
Installation
Install the package from PyPI:
pip install pyneedle
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pyneedle-0.1.3.tar.gz.
File metadata
- Download URL: pyneedle-0.1.3.tar.gz
- Upload date:
- Size: 8.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
75e5c28bace097cd84859a781fecc8139e329a11f7f651f1774aa46f93a525ca
|
|
| MD5 |
79e0fc1718a8195d6cc70575386f762b
|
|
| BLAKE2b-256 |
67e4f75a036faf488a6b75f94ba67e0831d3aecd17b9f8c3d5e186215eafdc9a
|
File details
Details for the file pyneedle-0.1.3-py3-none-any.whl.
File metadata
- Download URL: pyneedle-0.1.3-py3-none-any.whl
- Upload date:
- Size: 4.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a6bfd419b24ebef046e8192dac0d5df88ab7a5272262ee8445011ecdea089a60
|
|
| MD5 |
8fbe83c188577a96e5da4cae147cae37
|
|
| BLAKE2b-256 |
d07f1c082f4b9a7b0f7c12c99e47bda4b14bd5eb7c91f0d05f62cc4fd5f17097
|