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.004.zip
(8.6 kB
view details)
antipathy-0.73.004.tar.gz
(7.6 kB
view details)
File details
Details for the file antipathy-0.73.004.zip
.
File metadata
- Download URL: antipathy-0.73.004.zip
- Upload date:
- Size: 8.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 942b56ea2f1173b8ecdbe19f6d000dd3bdd225bfc1b6b0822133ac4334b34a88 |
|
MD5 | b81cd91780dd629218bb081cb0b057ff |
|
BLAKE2b-256 | 3542f7ea6ead8396deefde0f50ef68832f6a6d33ae45d8d250d4d025e389d663 |
File details
Details for the file antipathy-0.73.004.tar.gz
.
File metadata
- Download URL: antipathy-0.73.004.tar.gz
- Upload date:
- Size: 7.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 05c2e090d737a72b96fa25927361d743cf7a9b7e4c0da20767206d66982d892f |
|
MD5 | 129d6b40f866a5968a1ca5df6c90b1aa |
|
BLAKE2b-256 | f44b5a0888bc1b41b5bece4c94e6dfc01ed76c72abd568668ab00a6df6663332 |