Giter VIP home page Giter VIP logo

Comments (4)

ap-- avatar ap-- commented on July 17, 2024

Hi @mberlinger3,

thank you for opening an issue! It seems as_uri is broken in general for UPath.
An easy way would be to implement it as:

class UPath(...):
    def as_uri(self):
        return str(self)

would you be interested in adding tests and a patch in a PR?

Cheers,
Andreas 😃

from universal_pathlib.

mberlinger3 avatar mberlinger3 commented on July 17, 2024

Hi @mberlinger3,

thank you for opening an issue! It seems as_uri is broken in general for UPath. An easy way would be to implement it as:

class UPath(...):
    def as_uri(self):
        return str(self)

would you be interested in adding tests and a patch in a PR?

Cheers, Andreas smiley

I think this would make more sense on the non-local (cloud?) implementations because it looks like the as_uri() method is currently inherited from the standard pathlib implementation which is correct for local files. Perhaps a specific wrapper in the UPath class to explicitly call the pathlib implementation and separate methods for the differing schemes.

from universal_pathlib.

ap-- avatar ap-- commented on July 17, 2024

Local paths that aren't provided via a file uri are currently returned as their corresponding pathlib.PosixPath and pathlib.WindowsPath instances. (which is going to change in the near future, see: #90)

As it stands right now, as_uri seems to be broken in general for all UPath subclasses:

>>> import upath
>>> upath.UPath("file://a/b/c.dat").as_uri()
'file://file%3A//a/b/c.dat'

So a general fix in upath.UPath.as_uri seems appropriate. If we add a test to upath/tests/cases.py we can ensure that we do the right thing for the implemented subclasses and address potential issues there with custom implementations.

from universal_pathlib.

mberlinger3 avatar mberlinger3 commented on July 17, 2024

I see what is issue is here. If you instantiate UPath using a uri as above it breaks; however, if you use a file path then as_uri works as expected.

>>> from upath import UPath
>>> print( UPath("/a/b/c.dat").as_uri() )
file:///a/b/c.dat

This could likely be solved by a simple conditional to check if a scheme exists and pass it to pathlib if it doesn't. We could probably implement the scheme check as a simple property.

An alternative solution would be something like what s3path does. They have a method S3Path().from_uri(uri) that takes in a uri while the base init assumes a path syntax.

from universal_pathlib.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.