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.01.zip
(9.8 kB
view details)
antipathy-0.77.01.tar.gz
(8.4 kB
view details)
File details
Details for the file antipathy-0.77.01.zip.
File metadata
- Download URL: antipathy-0.77.01.zip
- Upload date:
- Size: 9.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b829778d7881049f371828deca323ef27e3409cc22e47d50be3254a9093657b9
|
|
| MD5 |
e83c01ffbe850fdc7bc7d40c6347529e
|
|
| BLAKE2b-256 |
b339816a6d3c97b6b01b8bdf7c21905fa389bb786f3b026efbd331a1351fd019
|
File details
Details for the file antipathy-0.77.01.tar.gz.
File metadata
- Download URL: antipathy-0.77.01.tar.gz
- Upload date:
- Size: 8.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
325b4cd204d1ba65ef418ef55e4428237cda9053fb1086bf7e430e33c9a64910
|
|
| MD5 |
d96e7e277ce7825c671fe11c787853c8
|
|
| BLAKE2b-256 |
55e4da181d9690d617def73375680327f6009b12f49001e88018d83093d31bde
|