Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add urls property #194

Open
KOLANICH opened this issue Feb 12, 2023 · 0 comments
Open

Add urls property #194

KOLANICH opened this issue Feb 12, 2023 · 0 comments

Comments

@KOLANICH
Copy link

KOLANICH commented Feb 12, 2023

The proposed impl is kinda

def urls(self):
    md = self.todict()
    try:
        pUrls = dict(el.split(", ") for el in md['project_url']) 
    except KeyError:
        pUrls = {}

    pUrls = dict(el.split(", ") for el in md['project_url'])
    hUrls = {}
    for k in ('home_page', "download_url"):
        v = md.get(k, None)
        if v:
            hUrls[k] = v

    return pUrls, hUrls

(though it is inefficient to use self.todict(), it should be refactored)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant