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

Append placeholders when attibute values are not provided #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

Christiaan-de-Wet
Copy link

@Christiaan-de-Wet Christiaan-de-Wet commented Nov 21, 2023

This will append to the array so that any missing attributes does not cause the error "missing x required positional arguments"

from cpeparser import CpeParser
cpe = CpeParser()
result = cpe.parser("cpe:2.3:a:ipython:ipython")
print(result)
{
    'part': 'a',
    'vendor': 'ipython',
    'product': 'ipython',
    'version': '*',
    'update': '*',
    'edition': '*',
    'language': '*',
    'sw_edition': '*',
    'target_sw': '*',
    'target_hw': '*',
    'other': '*'
}

@Christiaan-de-Wet Christiaan-de-Wet changed the title Append placeholders when attibute values are not provide. Append placeholders when attibute values are not provided Nov 21, 2023
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

Successfully merging this pull request may close these issues.

1 participant