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.82.4.zip (19.9 kB view details)

Uploaded Source

antipathy-0.82.4.tar.gz (16.3 kB view details)

Uploaded Source

Built Distribution

antipathy-0.82.4-py2.py3-none-any.whl (18.4 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file antipathy-0.82.4.zip.

File metadata

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

File hashes

Hashes for antipathy-0.82.4.zip
Algorithm Hash digest
SHA256 0ac7b5ad9964f4d16447bf2f08e34d9a41a2203ecd246561fc0cc4180ec98685
MD5 58e6281ab62c8c8ea0d29ce490325cb7
BLAKE2b-256 e728a5c34ed461fa458b1570adc01f431a64d09e9142cfa7b5a9c6473ffd1600

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for antipathy-0.82.4.tar.gz
Algorithm Hash digest
SHA256 282b4a88d94afb0e0ba14cf855ee0561d781eb9d45522d618923a3d672675171
MD5 7f5183c81073d496b54d61f2d1287981
BLAKE2b-256 5c3d6f7b7757e5cdced24eb3cdf9a175e59c3199579dfc689858cd4730efbd39

See more details on using hashes here.

File details

Details for the file antipathy-0.82.4-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for antipathy-0.82.4-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 3c504aabef18d29bd504ac19d845955ed3a6997d75c3995f2334d877bb72e628
MD5 65b060837fab79f39f20d53c80461023
BLAKE2b-256 aae41bc451e2da4289357a47a77cafed34f0bf8045bdcf55db35816532869373

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