IT Security
Static Code Scan
✅ Your SDV Enterprise package has been tested for security vulnerabilities. We follow the OWASP Top Ten industry standard, using the Bandit library. We scan all the SDV-related libraries and address any issues identified as high severity before the release.
save_code_scan
Security scan results are available for each SDV Enterprise package. Use this function to easily access the results and save them to a location of your choosing. Note that this function does not perform a new scan; it copies the original scan's results into your local folder.
Parameters
(required)
folder
: A string with the path to a local folder where you'd like to save the file
Output (None) The code scan is saved as a new file called static_code_analysis.md
within the folder you provide
from sdv.utils import save_code_scan
save_code_scan(folder='/users/myusername/Downloads/')
You can open the resulting file in any text editor. The file includes results for your current version of SDV Enterprise, as well as the SDV-related dependencies.
Expiry Date
Every SDV Enterprise package is set to expire at a predetermined date. Check your current package's expiry date using the commands below. Please note that this is meant to be a read-only attribute that prints out the expiry date; modifying the attribute will not affect the package's actual expiry.
>>> import sdv
>>> print(sdv.expiry.date)
'March 9, 2026'
Last updated