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

Uploaded Source

Built Distributions

antipathy-0.83.5-py3-none-any.whl (12.8 kB view details)

Uploaded Python 3

antipathy-0.83.5-py2-none-any.whl (12.8 kB view details)

Uploaded Python 2

File details

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

File metadata

  • Download URL: antipathy-0.83.5.tar.gz
  • Upload date:
  • Size: 20.2 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.5.tar.gz
Algorithm Hash digest
SHA256 448436fed6fc26d91f73401c71a33c0b0dcc4c08279d1d79411393de36d4fa02
MD5 bf69dd8c60c84df5a2d9ab0c4eb32427
BLAKE2b-256 86ced8a2b71617a288352c44e50a165dcaef9c18632f2f99c59d99b190efd1af

See more details on using hashes here.

File details

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

File metadata

  • Download URL: antipathy-0.83.5-py3-none-any.whl
  • Upload date:
  • Size: 12.8 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.5-py3-none-any.whl
Algorithm Hash digest
SHA256 720c0f9841896efca4643fbcc1cd7d8c5fbc4518e76957a85e08d2b6941db1fa
MD5 065c1590bf2d01dfff1036eeb53d2782
BLAKE2b-256 e05a1dc7ee428d60eca99376ebcad2aa75a5f5066fcc8cdaaf27b15bd07c1bac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: antipathy-0.83.5-py2-none-any.whl
  • Upload date:
  • Size: 12.8 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.5-py2-none-any.whl
Algorithm Hash digest
SHA256 b7e186603c79051915ba814e39718c96b5a87ba762355f4c48f778ef39752654
MD5 3547d0b87407a381a0a175adc58bd136
BLAKE2b-256 51bee9f1cc6687f8007179137aa1053a725ce7b5ad793aff8aa2e782867a39a9

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