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.005.zip
(8.6 kB
view details)
antipathy-0.73.005.tar.gz
(7.6 kB
view details)
File details
Details for the file antipathy-0.73.005.zip.
File metadata
- Download URL: antipathy-0.73.005.zip
- Upload date:
- Size: 8.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
55bd7237a321fbe43ba25f04a38a6705ca2356a42dd54ba751cfd480c7020fdb
|
|
| MD5 |
eacdb271ffdfed1671a5cde1d5c2374e
|
|
| BLAKE2b-256 |
d3250e601a32b192fca9fc539e7aeb17d03503520b91f3d4a2512df999cb8c85
|
File details
Details for the file antipathy-0.73.005.tar.gz.
File metadata
- Download URL: antipathy-0.73.005.tar.gz
- Upload date:
- Size: 7.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2697e9fed000cc8fc0fd0fb4e2ba55de392e45a7db8ac38d926d36e4e7cabf6a
|
|
| MD5 |
75cac6298b5615e0f44dab2e347dc680
|
|
| BLAKE2b-256 |
7b93f17e20b5d6e5c1aec520d76ccba4736dccfbd57b1c3ec2b41cec38a4e574
|