Skip to main content

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.

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.85.4.tar.gz (24.2 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.85.4-py3-none-any.whl (24.8 kB view details)

Uploaded Python 3

antipathy-0.85.4-py2-none-any.whl (24.8 kB view details)

Uploaded Python 2

File details

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

File metadata

  • Download URL: antipathy-0.85.4.tar.gz
  • Upload date:
  • Size: 24.2 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.85.4.tar.gz
Algorithm Hash digest
SHA256 c3cd2500f342a08d282be66fb64239a97e893120dcc6ac80818a31d0f4bc3c70
MD5 96c4e4f4a12ed911c05f8d808d857a8d
BLAKE2b-256 3bf5521943df43aff62607823712874542113346f2c425011a5c8aeea74eb24a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: antipathy-0.85.4-py3-none-any.whl
  • Upload date:
  • Size: 24.8 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.85.4-py3-none-any.whl
Algorithm Hash digest
SHA256 3eecc7cfec2a5162502f60fda4b47b5595fbf41d1dc7808f4882bb447fdd2058
MD5 d22316baf1fe189730aba6eb34be7695
BLAKE2b-256 62872b28f193e6b74cd71e94dc0fd4f81719bd9d344a4540c5ecef7812f43488

See more details on using hashes here.

File details

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

File metadata

  • Download URL: antipathy-0.85.4-py2-none-any.whl
  • Upload date:
  • Size: 24.8 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.85.4-py2-none-any.whl
Algorithm Hash digest
SHA256 0fad030872aca697b3529530a3d80863603716666f479083cd9e19151ab05319
MD5 dca81dec5b83647630e1080f3589dda6
BLAKE2b-256 0fcd1e663f69a9e2db78a48e69998bb325f80369070e44aa2cd93c28bb1879ff

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.85.4 This release

3 files

0.85.3

3 files

0.85.2

3 files

0.85.1

3 files

0.84.2

3 files

0.84.1

3 files

0.84.0

3 files

0.83.10

3 files

0.83.9

3 files

0.83.8

3 files

0.83.7

3 files

0.83.6

3 files

0.83.5

3 files

0.83.4

3 files

0.83.2

3 files

0.83.1

3 files

0.83.0

3 files

0.82.7

3 files

0.82.5

3 files

0.82.4

3 files

0.82.3

2 files

0.82.2

2 files

0.82.1

2 files

0.82.0

2 files

0.81.9

2 files

0.81.7

2 files

0.81.6

2 files

0.81.05

2 files

0.81.04

2 files

0.81.03

2 files

0.81.01

2 files

0.81.00

2 files

0.80.02

2 files

0.80.01

2 files

0.80.00

2 files

0.77.08

2 files

0.77.07

2 files

0.77.06

2 files

0.77.05

2 files

0.77.04

2 files

0.77.03

2 files

0.77.02

2 files

0.77.01

2 files

0.77.00

2 files

0.76.00

2 files

0.75.02

2 files

0.75.00

2 files

0.73.006

2 files

0.73.005

2 files

0.73.004

2 files

0.73.003

2 files

0.73.002

2 files

0.73.001

2 files

0.73.000

2 files

0.72.000

2 files

0.71.003

2 files

0.37.001

2 files

0.33.001

2 files

0.11.013

2 files

0.07.013

2 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page