string generator for bracket patterns
Project description
bracket_expansion
This library provides functions that allow you to define a string that contains brackets with numeric-ranges, and then expands that into a list of actual values.
There are two functions defined. The first function bracket_expansion
will create a generator. You can then iterate through the generator.
The expansion supports multiple brackets. See examples.
If you want to create a concrete list from the generate, there is
a function called expand
which will do this as a convenience.
Installation
$ pip install bracket_expansion
Usage
Simple example:
from bracket_expansion import bracket_expansion
for if_name in bracket_expansion("Ethernet[1-48]"):
print(if_name)
Would result in the output:
Ethernet1
Ethernet2
Ethernet3
...
Ethernet48
Multiple brackets:
You can define multiple brackets in the expression:
from bracket_expansion import bracket_expansion
for if_name in bracket_expansion("Ethernet[1-2]/[1-10]"):
print(if_name)
Would result in the output:
Ethernet1/1
Ethernet1/2
...
Ethernet1/10
Ethernet2/1
Ethernet2/2
...
Ethernet2/10
For more details see the bracket_expansion
docstring.
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 bracket_expansion-1.0.0.tar.gz
.
File metadata
- Download URL: bracket_expansion-1.0.0.tar.gz
- Upload date:
- Size: 3.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.6.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a19c96d0bb011b9a4cf4aaebab36bbc6e3d34a2857b4fbfe435d860bfe65e0a1 |
|
MD5 | 5eff730c9453cb55afde077ff3971fd7 |
|
BLAKE2b-256 | 34c0dba08af1a7a119e0651e04f37312975014e0f600d36e3159bfbe38e2dba0 |
File details
Details for the file bracket_expansion-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: bracket_expansion-1.0.0-py3-none-any.whl
- Upload date:
- Size: 7.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.6.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4e7f22979c87d44d2c78c074578f7e72470c1627251961527e0044fed9455070 |
|
MD5 | 5fe4425003e420509fdc70e7f69e5488 |
|
BLAKE2b-256 | 3f68d38019213ea5623660e3b5dbf2879a0ffc8011d65501f7b32fe793f7e87e |