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 get 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.
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.73.001.zip
(8.7 kB
view details)
antipathy-0.73.001.tar.gz
(7.7 kB
view details)
File details
Details for the file antipathy-0.73.001.zip.
File metadata
- Download URL: antipathy-0.73.001.zip
- Upload date:
- Size: 8.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0df0f881780c96a5c92d7d67e6ed9b3d9b2a42e7205207aa6ae618e24c0b3231
|
|
| MD5 |
fc41184cc903e2818f9718a18852a10f
|
|
| BLAKE2b-256 |
48af823bfff1cfc35872914f4566d05ee80515076935bf19aae7bb633efb78ff
|
File details
Details for the file antipathy-0.73.001.tar.gz.
File metadata
- Download URL: antipathy-0.73.001.tar.gz
- Upload date:
- Size: 7.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
46fc1ac3872ec68fe7ff4271b36bfbd10d267206f491452dc2f767b93512543c
|
|
| MD5 |
e174b12cd97ed267147ed0ec59e5c7fe
|
|
| BLAKE2b-256 |
73775b574f1e5d78f1e0ffcc8c33b7ae196ac484343d4df92a034b461eb7df81
|