Skip to main content

unix-style path processing functions

Project description

unixpath

unix-style path processing functions

Why?

My goal was to provide posixpath path processing functions in pure Python (e.g. normpath, join, split, etc) minus any functions that rely on any kind of "filesystem" concept (stat, etc).

Basically, this is a "minimum viable unix path processing framework." Path processing functions are useful for e.g. ML libraries that want to use unix-style paths to refer to model variables.

(Honestly unixpath is kind of pointless. Its functions are copy-pasted from posixpath, so why not just import posixpath and not worry about the extra dependency on unixpath? Answer: because I was curious how Python implemented their unix path processing functions, so I made this library as a learning exercise.)

Install

python3 -m pip install -U unixpath

Usage

import unixpath
unixpath.join('a', 'b') # 'a/b'
unixpath.join('a', 'b', '..', 'c') # 'a/b/../c'
unixpath.normpath('a/b/../c') # 'a/c'

License

MIT

Contact

A library by Shawn Presser. If you found it useful, please consider joining my patreon!

My Twitter DMs are always open; you should send me one! It's the best way to reach me, and I'm always happy to hear from you.

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

unixpath-0.1.1.tar.gz (4.6 kB view hashes)

Uploaded Source

Built Distribution

unixpath-0.1.1-py3-none-any.whl (4.5 kB view hashes)

Uploaded Python 3

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