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.006.zip
(8.6 kB
view details)
antipathy-0.73.006.tar.gz
(7.6 kB
view details)
File details
Details for the file antipathy-0.73.006.zip
.
File metadata
- Download URL: antipathy-0.73.006.zip
- Upload date:
- Size: 8.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3755348310e8a6c4ec2ffe099d5ca1f24a60390cebdbd57c0e516eb226c98047 |
|
MD5 | 7bfaff967ab5fbe842b972ca7144eaa5 |
|
BLAKE2b-256 | 605c01fe244485e3ea5e099f1fe85d39f6f19c89adbd34a7c5512d030d4bc054 |
File details
Details for the file antipathy-0.73.006.tar.gz
.
File metadata
- Download URL: antipathy-0.73.006.tar.gz
- Upload date:
- Size: 7.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f9d6096da5911a894811891ebee1b24715e80c066477d294980c6f5214a64811 |
|
MD5 | 35fcc0f5eba18bcb9a6777cd1b72fe57 |
|
BLAKE2b-256 | c49555aa43d44723e8ba32a6a55d2e0cbfedb96b8aa6608da6a9ca0ce41a9cc1 |