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.83.4.tar.gz (19.5 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.83.4-py3-none-any.whl (12.7 kB view details)

Uploaded Python 3

antipathy-0.83.4-py2-none-any.whl (12.7 kB view details)

Uploaded Python 2

File details

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

File metadata

  • Download URL: antipathy-0.83.4.tar.gz
  • Upload date:
  • Size: 19.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.18.4 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.15rc1

File hashes

Hashes for antipathy-0.83.4.tar.gz
Algorithm Hash digest
SHA256 bb2633bc7c44ee7dd7560f8413387b4e05800736df60e0e8c15c2b70f6331fa2
MD5 1272a737b628a1400c5b6f257c85f3ff
BLAKE2b-256 c503ea38d6475b792f55425b96302797d2c08903b848be06cb68348405489177

See more details on using hashes here.

File details

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

File metadata

  • Download URL: antipathy-0.83.4-py3-none-any.whl
  • Upload date:
  • Size: 12.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.18.4 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.15rc1

File hashes

Hashes for antipathy-0.83.4-py3-none-any.whl
Algorithm Hash digest
SHA256 682f2767111f92767a8e6e1fd39a2ac0f4bce647383cc3d2090227497fcc519f
MD5 88c380339bbaddd019d86006c3233ef1
BLAKE2b-256 dbaafdceb5bc32103e2529b0e7f4989f79ee669adc67e26856835ab37b3d8ebe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: antipathy-0.83.4-py2-none-any.whl
  • Upload date:
  • Size: 12.7 kB
  • Tags: Python 2
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.18.4 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.15rc1

File hashes

Hashes for antipathy-0.83.4-py2-none-any.whl
Algorithm Hash digest
SHA256 d0c8968d392fcc2edfe1169696f4903338726ad8c15e3544cc0005df66cd8b86
MD5 7da59ee8f6f7a5bb1c3aa3eb043d6c5b
BLAKE2b-256 3db0b99a0f8694b30580889b9c32a3445b50686cf67983f7da3a46025c1a50c0

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