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:

>>> from antipathy import 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.81.05.zip (18.3 kB view details)

Uploaded Source

antipathy-0.81.05.tar.gz (15.1 kB view details)

Uploaded Source

File details

Details for the file antipathy-0.81.05.zip.

File metadata

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

File hashes

Hashes for antipathy-0.81.05.zip
Algorithm Hash digest
SHA256 7448a4cf82420759ca4890f0b707eea90f487b4eff84163e53dc4ac38e210662
MD5 d050b31928d781590a7ec858f8141968
BLAKE2b-256 21c2824752bd04bc1f3d9926bb3c234ba5f2b8fe85c997be606a603216abf7a2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for antipathy-0.81.05.tar.gz
Algorithm Hash digest
SHA256 1c8fee5ac0d58df82a1f520823f29c4172aedc774dca4258f1a6a6752ed02f1a
MD5 8743402295f673eec32cf03c5ab07064
BLAKE2b-256 cd96fa78bba41ff6521356c184d590740089460c276beb35fc5b11f56d424274

See more details on using hashes here.

Supported by

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