We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
libtaxii used to store constants in libtaxii, which were often used as such:
import libtaxii as t binding = t.CB_STIX_XML_111
However, these constants are now in libtaxii.constants, and this is the correct idiom:
from libtaxii.constants import * binding = CB_STIX_XML_111
The examples need to be combed through and updated to reflect the new idiom.
The text was updated successfully, but these errors were encountered:
@MarkDavidson What are your thoughts on the constants used in taxii_default_query (and commonly references as tdq.*)?
taxii_default_query
Sorry, something went wrong.
@stkyle,
The constants for taxii_default_query are also in libtaxii.constants and the documentation should be updated accordingly. Nice find!
libtaxii.constants
-Mark
Aside: All constants have references from their original locations to preserve backward compatibility, but the new locations should be used.
No branches or pull requests
libtaxii used to store constants in libtaxii, which were often used as such:
However, these constants are now in libtaxii.constants, and this is the correct idiom:
The examples need to be combed through and updated to reflect the new idiom.
The text was updated successfully, but these errors were encountered: