Andar is a python package that provides an abstraction layer for managing path structures, helping to create paths and parse them in a programatic way via templated file paths.
Project description
Andar Package
Caminante, no hay camino, se hace camino al andar.
Antonio Machado
Andar is a python package that provides an abstraction layer for managing path structures, helping to create paths and parse them in a programatic way via templated file paths.
Install Package
With pip:
pip install andar
Quick start:
Simple PathModel definition using default field configurations:
from andar import PathModel
simple_path_model = PathModel(
template="/{base_folder}/{subfolder}/{base_name}__{suffix}.{extension}"
)
Generate a path:
result_path = simple_path_model.get_path(
base_folder="parent_folder",
subfolder="other_folder",
base_name="mydata",
suffix="2000-01-01",
extension="csv",
)
print(result_path)
"/parent_folder/other_folder/mydata__2000-01-01.csv"
Parse a path:
file_path = "/data/reports/summary__2025-12-31.csv"
parsed_fields = simple_path_model.parse_path(file_path)
print(parsed_fields)
{
'base_folder': 'data',
'subfolder': 'reports',
'base_name': 'summary',
'suffix': '2025-12-31',
'extension': 'csv',
}
Next steps
See the official documentation to learn more.
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 andar-0.1.2.tar.gz.
File metadata
- Download URL: andar-0.1.2.tar.gz
- Upload date:
- Size: 12.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.10 {"installer":{"name":"uv","version":"0.9.10"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0607701648cdb8d4f58e05d3dda9f97a08b3f3450364aaa111db59ce79e0a899
|
|
| MD5 |
b7818dd1b79613731a3d203b9e561cbb
|
|
| BLAKE2b-256 |
2a2fedfc208974ceda85ae946009c3ee7a9822c2cd1c8950e21ef3e95c8fa58e
|
File details
Details for the file andar-0.1.2-py3-none-any.whl.
File metadata
- Download URL: andar-0.1.2-py3-none-any.whl
- Upload date:
- Size: 10.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.10 {"installer":{"name":"uv","version":"0.9.10"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4054da45212bf7c8d1439ab91fa312271e204aa65ed2205e654c94f36508d45a
|
|
| MD5 |
1aea482204a3be03c3da8221d1e0dae5
|
|
| BLAKE2b-256 |
c4a9ca9f8c237adcb1a28dfa423f2c73c756a02485723112e5571c4288997303
|