Utility for Research (URes)
Overview
URes (Utility for Research) is a Python library that centralizes reusable utilities for research and development. It provides batteries-included helpers for Docker workflows, Markdown and Zettelkasten notes, data structures, filesystem and network tasks, time/date conversion, string manipulation, and more.
Key Features
- Docker management: Build, run, and orchestrate Docker images and containers with structured configuration objects.
- Markdown & Zettelkasten: Work with Markdown files and front matter, and manage Zettelkasten-style notes with required metadata.
- Data structures: Use tree and bi-directional link structures for organizing and traversing complex data.
- Core utilities: File, time/date, string, secrets, and network helpers used across projects.
- Literature tooling: Search across literature sources and manage citation data (when those modules are enabled).
Installation
pip install ures
API reference is generated from source on the documentation site: https://stone-home.github.io/Python-URes/.
Modules
Docker
The ures.docker module provides a high-level interface for managing Docker images and containers.
Key Features:
- Programmatically build Docker images from a
BuildConfigobject. - Run containers with detailed runtime configurations using
RuntimeConfig. - Orchestrate the building of multiple images with dependencies using
ImageOrchestrator.
Example:
from ures.docker import Image, BuildConfig, Containers
# Define build configuration
build_config = BuildConfig(
base_image="python:3.10-slim",
python_dependencies=["flask", "gunicorn"],
copies=[{"src": "./app", "dest": "/app"}],
entrypoint=["gunicorn", "-b", "0.0.0.0:80", "app:app"]
)
# Build the image
image = Image("my-web-app")
image.build_image(build_config, dest=".")
# Run the container
containers = Containers(image)
container = containers.create()
containers.run()
Markdown & Zettelkasten
The ures.markdown module offers tools for working with Markdown files, including YAML front matter. The Zettelkasten class builds on this for note-taking with structured metadata.
MarkdownDocument: Load, create, and manipulate Markdown files with front matter.Zettelkasten: Create Zettelkasten notes with required fields such astitle,type, andtags.
Data structures
The ures.data_structure module provides reusable data structures:
TreeNode: A tree structure with methods for adding, removing, and traversing nodes.BiDirectional: A bi-directional linked list for forward and backward traversal.
Core utilities
ures.files: File system helpers (recursive file listing, filtering by name, listing directories, creating temp folders).ures.timedate: Time/date conversion helpers (datetimes and Unix timestamps to formatted strings, getting the current time).ures.string: String utilities such as Zettelkasten-style IDs, unique IDs, memory-size formatting, and capitalization.ures.secrets:SecureKeyManagerfor managing API keys and other secrets via different storage methods.ures.network: IP and subnet helpers (validation, containment checks, and IP generation from subnets).
Literature tooling (optional)
If you use the literature search and citation modules, URes can also help with:
- Literature search: Configuration-driven multi-source paper search, with adapters and caching.
- Literature citation: Extractors and helpers to manage citation data and apply citation rules.
Development
To contribute to URes, please follow these steps:
- Clone the repository:
git clone https://github.com/stone-home/Python-URes.git
- Install the dependencies:
cd Python-URes poetry install
- Run the tests:
poetry run pytest
License
This project is licensed under the MIT License – see the LICENSE file for details.
Release files for ures 3.1.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| ures-3.1.1.tar.gz | 121.6 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| ures-3.1.1-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 263.0 kB
Release files / ures-3.1.1.tar.gz
| Download URL | ures-3.1.1.tar.gz |
|---|---|
| Size | 121.6 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
5d1122d557a203dac576c76511498c80d78b8fb57c18322646d3900a3b343a83
|
|
BLAKE2b-256 checksum How to use checksums |
9473f58be6678bea340e94cf684a42ff2d9d88adb8a82b68bc7ed9e4e2e3a9a0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
poetry/2.3.2 CPython/3.12.14 Linux/6.17.0-1022-azure
|
Release files / ures-3.1.1-py3-none-any.whl
| Download URL | ures-3.1.1-py3-none-any.whl |
|---|---|
| Size | 141.4 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
7195bc0fca60e7486f113a54120d6ab64573aff7ade7c39c190dbef4947fa495
|
|
BLAKE2b-256 checksum How to use checksums |
d8bec39776e6f2ab030d1b24e82c138459d45b1eba508436a79cf79a88e03881
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
poetry/2.3.2 CPython/3.12.14 Linux/6.17.0-1022-azure
|