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.2.tar.gz (18.6 kB view details)

Uploaded Source

Built Distributions

antipathy-0.83.2-py3-none-any.whl (13.5 kB view details)

Uploaded Python 3

antipathy-0.83.2-py2-none-any.whl (13.5 kB view details)

Uploaded Python 2

File details

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

File metadata

  • Download URL: antipathy-0.83.2.tar.gz
  • Upload date:
  • Size: 18.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.9.1 setuptools/20.7.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.5.2

File hashes

Hashes for antipathy-0.83.2.tar.gz
Algorithm Hash digest
SHA256 d7de809af0b641edf17f701685ffd399d7c7f02a33b2d92b9f5e55cadaf6d46f
MD5 1fa2017f50bc6ec8d368695b8a50a422
BLAKE2b-256 11b0164fc108526bf57d28f343835e0146c5a5d42f43c69329f19bc909d58a77

See more details on using hashes here.

File details

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

File metadata

  • Download URL: antipathy-0.83.2-py3-none-any.whl
  • Upload date:
  • Size: 13.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.9.1 setuptools/20.7.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.5.2

File hashes

Hashes for antipathy-0.83.2-py3-none-any.whl
Algorithm Hash digest
SHA256 c9551709aa9be387b012b9778cc2a22c50bb9754b093e04fe770c9311fb32eab
MD5 e55639f5b232c42a736b21712be189b3
BLAKE2b-256 c6c1c3982f887bd8c2e98272ee021b6aa9c032cdf150b463ff1c159798344da9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: antipathy-0.83.2-py2-none-any.whl
  • Upload date:
  • Size: 13.5 kB
  • Tags: Python 2
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.9.1 setuptools/20.7.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.5.2

File hashes

Hashes for antipathy-0.83.2-py2-none-any.whl
Algorithm Hash digest
SHA256 1b3e0780eae515e9582d3e16a24035d21c9143dee130a09721976bc5e5fd35f8
MD5 ca01f3148b6929b2cd433412b0c4e30c
BLAKE2b-256 2f0b7468fd46a74f927859a34cf267a1d8d6546c76476ce8a0660d3ff1bd8bcd

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