Skip to main content

oo view of file paths and names, subclassed from bytes/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 bytes/str/unicode, it can still be passed to other functions that expect a bytes/str/unicode object and work seamlessly [2].

[1] https://www.google.com/#q=antipathy

[2] in most cases – there are a few places that do a type check instead of an isinstance check.

Project details


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.80.02.zip (16.1 kB view details)

Uploaded Source

antipathy-0.80.02.tar.gz (14.9 kB view details)

Uploaded Source

File details

Details for the file antipathy-0.80.02.zip.

File metadata

  • Download URL: antipathy-0.80.02.zip
  • Upload date:
  • Size: 16.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for antipathy-0.80.02.zip
Algorithm Hash digest
SHA256 19452f6a1644306d1d156b01b203600ba1acc9836843ca8ae3fcd08620d9da48
MD5 e4f19267b22219ea750051bfb6a5c118
BLAKE2b-256 82e36b05b8363f0297e408611d99fdd92a2008823aa470501350bbd011b27519

See more details on using hashes here.

File details

Details for the file antipathy-0.80.02.tar.gz.

File metadata

  • Download URL: antipathy-0.80.02.tar.gz
  • Upload date:
  • Size: 14.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for antipathy-0.80.02.tar.gz
Algorithm Hash digest
SHA256 2b173708114edd3c7442492d64c4420a2ee1615e209938c90e148e97306cd492
MD5 ea058e4f252938f1dbae1e6bec805292
BLAKE2b-256 7fd26a57c83155d4c5e4f141355b71f39440f5b2898640dc6b2bf41c2218cc9a

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page