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.05.zip
(10.1 kB
view details)
antipathy-0.77.05.tar.gz
(8.8 kB
view details)
File details
Details for the file antipathy-0.77.05.zip.
File metadata
- Download URL: antipathy-0.77.05.zip
- Upload date:
- Size: 10.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e5724795165099cc95039ad29eb90865c5d7a07af30c22dab089304cea864adc
|
|
| MD5 |
1dc7cdb8b61786b93031931442a54431
|
|
| BLAKE2b-256 |
19984fa14610560520b0bc99e8d6187bf9d79d64cb35481dc86297147aaade7f
|
File details
Details for the file antipathy-0.77.05.tar.gz.
File metadata
- Download URL: antipathy-0.77.05.tar.gz
- Upload date:
- Size: 8.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
069acc748ddc7053c95d6e33e0118b8d9832ad1464bffaed8f1bfcd5f30f66bf
|
|
| MD5 |
6a1b26ce3d5e9086efe4f243ccdd8590
|
|
| BLAKE2b-256 |
a9a340869f9b6d91f7e0ec361dad80ff69221ba00e58cbdee5af49b92efdecc3
|