urlpath icon indicating copy to clipboard operation
urlpath copied to clipboard

Object-oriented URL from `urllib.parse` and `pathlib`

Results 4 urlpath issues
Sort by recently updated
recently updated
newest added

I'm canvasing available parsers for SCM URLs, and _all_ need new features. However, all are also extremely inactive. This one, however, is the most promising, given its built-in OO nature....

I am trying urlpath 1.1.4 with Python 3.8. The output it's producing has an extra slash: ```python >>> from urlpath import URL >>> URL('s3://mybucket/') / 'myprefix' URL('s3://mybucket//myprefix') ``` There is...

It sort-of seems like urlpath will URL-encode non-URL-safe characters in URLs: ``` >>> urlpath.URL('/with space') URL('/with%20space') >>> urlpath.URL('/with%percent') URL('/with%25percent') ``` But, existing URL encoding is preserved, so I guess that...

Hi! We are using URLPath to handle S3 filepaths (and pathlib for local filepaths). This works well for us, as both have attributes like `.suffix`. An issue we are running...