Make filenames from string templates
Project description
Filename Templates
Make filenames from string templates.
This package exposes the FileNames
class, which keeps a list of filenames and provides a wrapper around string.format
with some bells and whisles to make the syntax super nice.
I wrote this to keep track of filenames during data analysis projects, where there are many files, which names follow a standard pattern. For example: data-day001.csv data-day002.csv data-day003.csv
. Processing these files may produce: data-day001-processed.csv data-day002-processed.csv data-day003-processed.csv
. In these cases, it is good practice to define the templates for these filenames once, for example in a configuration file, and re-use them in the different analysis scripts.
Installation
either through pip:
pip install https://api.github.com/repos/wmvanvliet/filename-templates/zipball/main
or from the repository:
python setup.py install
To run the tests:
python -m pytest --doctest-module
Usage
Use the add
method to add new filenames. You specify a short "alias" for
them, which you can use to retrieve the full filename later:
>>> from filename_templates import FileNames
>>> fname = FileNames()
>>> fname.add('my_file', '/path/to/file1')
>>> fname.my_file
PosixPath('/path/to/file1')
Filenames can also be templates that can be used to generate filenames for different subjects, conditions, etc.:
>>> fname = FileNames()
>>> fname.add('epochs', '/data/{subject}/{cond}-epo.fif')
>>> fname.epochs(subject='sub001', cond='face')
PosixPath('/data/sub001/face-epo.fif')
Templates can contain placeholders in the way string.format
allows,
including formatting options:
>>> fname = FileNames()
>>> fname.add('epochs', '/data/sub{subject:03d}/{cond}-epo.fif')
>>> fname.epochs(subject=1, cond='face')
PosixPath('/data/sub001/face-epo.fif')
If a placeholder happens to be the alias of a file that has been added earlier, the placeholder is automatically filled:
>>> fname = FileNames()
>>> fname.add('subjects', '/data/subjects_dir')
>>> fname.add('epochs', '{subjects}/{subject}/{cond}-epo.fif')
>>> fname.epochs(subject='sub001', cond='face')
PosixPath('/data/subjects_dir/sub001/face-epo.fif')
If all placeholders could be automatically filled, no brackets () are required when accessing it:
>>> fname = FileNames()
>>> fname.add('subjects', '/data/subjects_dir')
>>> fname.add('fsaverage', '{subjects}/fsaverage-src.fif')
>>> fname.fsaverage
PosixPath('/data/subjects_dir/fsaverage-src.fif')
The returned filenames are of type
pathlib.Path
, which offers
a bunch of convenience methods related to filenames that you wouldn't get with
ordinary strings. They can be used in all locations were you would otherwise
use a string filename. However, if you want an ordinary string, there are two
ways of doing so. One is to cast the filename to a string:
>>> fname = FileNames()
>>> fname.add('my_file', '/path/to/file1')
>>> str(fname.my_file)
'/path/to/file1'
If you want all of your filenames to be strings, always, then you can pass
as_str=True
when creating the Filenames
object:
>>> fname = FileNames(as_str=True)
>>> fname.add('my_file', '/path/to/file1')
>>> str(fname.my_file)
'/path/to/file1'
If computing the file path gets more complicated than the cases above, you can supply your own function. When the filename is requested, your function will get called with the FileNames object as first parameter, followed by any parameters that were supplied along with the request:
>>> from pathlib import Path
>>> fname = FileNames()
>>> fname.add('basedir', '/data/subjects_dir')
>>> def my_function(files, subject):
... if subject == 1:
... return files.basedir / '103hdsolli.fif'
... else:
... return files.basedir / f'{subject}.fif'
>>> fname.add('complicated', my_function)
>>> fname.complicated(subject=1)
PosixPath('/data/subjects_dir/103hdsolli.fif')
Instead of adding one filename at a time, you can add a dictionary of them all at once:
>>> fname = FileNames()
>>> fname_dict = dict(
... subjects = '/data/subjects_dir',
... fsaverage = '{subjects}/fsaverage-src.fif',
... )
>>> fname.add_from_dict(fname_dict)
>>> fname.fsaverage
PosixPath('/data/subjects_dir/fsaverage-src.fif')
Author
Marijn van Vliet (w.m.vanvliet@gmail.com)
Project details
Release history Release notifications | RSS feed
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
File details
Details for the file filename-templates-1.0.tar.gz
.
File metadata
- Download URL: filename-templates-1.0.tar.gz
- Upload date:
- Size: 6.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9d0beb90ab2b5a75074efa1071424d50b1a7d8830686d45524832c14495cea2d |
|
MD5 | 08ffe52e321aaa83be06a17ea0f465b4 |
|
BLAKE2b-256 | 7f3ee0a4ff354303117cf54b1e44f439e4d404072e3005beef85e5e926a0a2ce |
File details
Details for the file filename_templates-1.0-py3-none-any.whl
.
File metadata
- Download URL: filename_templates-1.0-py3-none-any.whl
- Upload date:
- Size: 7.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e2e776173186c033f49a2b65903582c2bc6800333b0c7c69a9417c78d412e90b |
|
MD5 | 8ee4e1735fbb7f93931dbb80522f0e29 |
|
BLAKE2b-256 | 9f5a696361fa9cd93290db5f92a78a8bdc28cc4b6ec8375e0b58712b5256a3e8 |