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.77.03.zip
(9.9 kB
view details)
antipathy-0.77.03.tar.gz
(8.5 kB
view details)
File details
Details for the file antipathy-0.77.03.zip.
File metadata
- Download URL: antipathy-0.77.03.zip
- Upload date:
- Size: 9.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
13e41bdba6abaf663400e345b142b8fda496cf56dfc6493e2f17109a98f8d110
|
|
| MD5 |
dd852b6bce887fb7fbac9455f6153917
|
|
| BLAKE2b-256 |
2491c7875f33713a79dfa905311559873dbc2d488ca8e27e19b6a86fefc41318
|
File details
Details for the file antipathy-0.77.03.tar.gz.
File metadata
- Download URL: antipathy-0.77.03.tar.gz
- Upload date:
- Size: 8.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6f92bf99fb7a66e27a6de0b0f4d962187587678ed4c857830cbacb9ae8f2d60a
|
|
| MD5 |
0ddb323e7777e496c46fd73c04f79059
|
|
| BLAKE2b-256 |
b3082795370b6858f20759cfaad96e00f5582bcd3065056b83d5561ebd172850
|