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.71.003.zip
(8.4 kB
view details)
antipathy-0.71.003.tar.gz
(7.5 kB
view details)
File details
Details for the file antipathy-0.71.003.zip.
File metadata
- Download URL: antipathy-0.71.003.zip
- Upload date:
- Size: 8.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
529e02c6a5e952df832956129d96b114d4511d461884c385b71b225bb8d8a3c1
|
|
| MD5 |
b4ba8f90e7005d45c45f62272ef29af4
|
|
| BLAKE2b-256 |
8bf16abb9c20a35be45b1579fa1ffaff2e61cfa57c3b4e2a6ce515f8fc866770
|
File details
Details for the file antipathy-0.71.003.tar.gz.
File metadata
- Download URL: antipathy-0.71.003.tar.gz
- Upload date:
- Size: 7.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bdabc22ea58251bdadde89b927411726818eefa1ec32e4424cf0632c179d4002
|
|
| MD5 |
06bd886ea98601c1d3daaa4e026f93ac
|
|
| BLAKE2b-256 |
9fa11c74e9d7a73f09a74eb29a42476b18b6cd6c2b6dbf1892ec0dbcad42a94a
|