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 Distribution

antipathy-0.84.2.tar.gz (23.9 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

antipathy-0.84.2-py3-none-any.whl (24.4 kB view details)

Uploaded Python 3

antipathy-0.84.2-py2-none-any.whl (24.4 kB view details)

Uploaded Python 2

File details

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

File metadata

  • Download URL: antipathy-0.84.2.tar.gz
  • Upload date:
  • Size: 23.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/58.1.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.13+

File hashes

Hashes for antipathy-0.84.2.tar.gz
Algorithm Hash digest
SHA256 92a396523caca0f7fff2b088a2d6c93ba68576af05aad7fe7770e4f122a475a2
MD5 126859929a5991ba6b31c72005eff49c
BLAKE2b-256 29dc6415ce85f51cc6b13944d3ffc4c8c21d1fd4cdd7c6c77e1037b952876dae

See more details on using hashes here.

File details

Details for the file antipathy-0.84.2-py3-none-any.whl.

File metadata

  • Download URL: antipathy-0.84.2-py3-none-any.whl
  • Upload date:
  • Size: 24.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/58.1.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.13+

File hashes

Hashes for antipathy-0.84.2-py3-none-any.whl
Algorithm Hash digest
SHA256 d6aec7ca0f0c7baaf36c11d9e5aae2677af3e812122bb399ad14b9c26c860cb4
MD5 c92bdcdf96057598ec792458e53acce7
BLAKE2b-256 7113c3ca0407687290fcc9e744b0b24c8717b69c63424dcf9181a48b0ee6f065

See more details on using hashes here.

File details

Details for the file antipathy-0.84.2-py2-none-any.whl.

File metadata

  • Download URL: antipathy-0.84.2-py2-none-any.whl
  • Upload date:
  • Size: 24.4 kB
  • Tags: Python 2
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/58.1.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.13+

File hashes

Hashes for antipathy-0.84.2-py2-none-any.whl
Algorithm Hash digest
SHA256 2ee179232fa0f28984424f2ab91eeddb6b70edd6d69ced39d398fe838681c669
MD5 8c6a606af9d95fa073ab339468e43287
BLAKE2b-256 dab5aeceedc2e6b511f0fcface775e0439c9ec261e4ad47bce85c638d656c9a2

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