oo view of file paths and names, subclassed from str/unicode
Project description
Tired of calling a function for every path manipulation you need to do?
Is::
path, filename = os.path.split(some_name)
basename, ext = os.path.splitext(filename)
basename = basename + '_01'
new_name = os.path.join([path, basename, ext])
wearing on your nerves?
In short, are you filled with antipathy [1]_ for os.path?
Then acknowlege your antipathy and work with Path!
some_name = Path('/home/ethan/source/my_file.txt')
backups = Path('/home/ethan/backup/')
print some_name.path
# '/home/ethan/source/'
print some_name.ext
# '.txt'
print some_name.exists()
# True (well, if it happens to exist at this moment ;)
backup = backups / some_name.filename + '_01' + some_name.ext
print backup
# '/home/ethan/backup/my_file_01.txt'
some_name.copy(backup)
Because Path is a subclass of str/unicode, it can still be passed to other functions that expect a str/unicode object and work seamlessly.
[1] https://www.google.com/#q=antipathy
Is::
path, filename = os.path.split(some_name)
basename, ext = os.path.splitext(filename)
basename = basename + '_01'
new_name = os.path.join([path, basename, ext])
wearing on your nerves?
In short, are you filled with antipathy [1]_ for os.path?
Then acknowlege your antipathy and work with Path!
some_name = Path('/home/ethan/source/my_file.txt')
backups = Path('/home/ethan/backup/')
print some_name.path
# '/home/ethan/source/'
print some_name.ext
# '.txt'
print some_name.exists()
# True (well, if it happens to exist at this moment ;)
backup = backups / some_name.filename + '_01' + some_name.ext
print backup
# '/home/ethan/backup/my_file_01.txt'
some_name.copy(backup)
Because Path is a subclass of str/unicode, it can still be passed to other functions that expect a str/unicode object and work seamlessly.
[1] https://www.google.com/#q=antipathy
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 Distributions
antipathy-0.07.013.zip
(8.2 kB
view details)
antipathy-0.07.013.tar.gz
(7.2 kB
view details)
File details
Details for the file antipathy-0.07.013.zip.
File metadata
- Download URL: antipathy-0.07.013.zip
- Upload date:
- Size: 8.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
16306a3ecb2dcef919ce2df6e0cea229f602630d233a6b6b6373ba3ec6285a0d
|
|
| MD5 |
4167e5b12490ce8a1f12cbe8be07326a
|
|
| BLAKE2b-256 |
3fcf380e410a2e638047b428b2da7c5bd852d69316782d2a2896f2550b3bba75
|
File details
Details for the file antipathy-0.07.013.tar.gz.
File metadata
- Download URL: antipathy-0.07.013.tar.gz
- Upload date:
- Size: 7.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7e40c1081a53a6f5058ae53416d08431fad08518604d48b0d6232e5ca1cea278
|
|
| MD5 |
56ba6b1f8e2de42956c239af6c45c24a
|
|
| BLAKE2b-256 |
6fdae109ae11d38fe7ba8e37b74c1eeae574d90f0cb1b9a9254232c858883c56
|