Object-oriented names for the digital era.
Project description
naming
Object-oriented names for the digital era.
naming
provides an interface for dealing with naming conventions; from
defining them, to identifying names and creating new ones.
Installation
naming
is available for Python 3.8+ via PyPI.
$ pip install naming
Example
Please refer to the documentation walkthrough for details on contents and usage.
>>> import naming
>>> class NameFileConvention(naming.Name, naming.File):
... config = dict(first=r'\w+', last=r'\w+', number=r'\d+')
...
>>> name = NameFileConvention('john doe 07.jpg')
>>> name.last
'doe'
>>> name.number
'07'
>>> name.get(first='jane', number=99) # returns new name string
'jane doe 99.jpg'
>>> name.last = 'connor' # mutates current name
>>> name
NameFileConvention("john connor 07.jpg")
>>> name.number = 'not_a_number'
...
ValueError: Can't set field 'number' with invalid value 'not a number' on 'NameFileConvention("john doe 07.jpg")'. A valid field value should match pattern: '\d+'
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
naming-0.7.1.tar.gz
(14.7 kB
view hashes)
Built Distribution
naming-0.7.1-py3-none-any.whl
(9.6 kB
view hashes)