-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
79 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# Security Policy | ||
|
||
- [Security Response Team](#security-response-team) | ||
- [Supported Versions](#supported-versions) | ||
- [Reporting a Vulnerability](#reporting-a-vulnerability) | ||
- [Acknowledgments](#acknowledgments) | ||
- [Disclosure Policy](#disclosure-policy) | ||
- [CVSS v3.0](#cvss-v30-summary) | ||
|
||
## Security Response Team | ||
|
||
Our security response team is available to handle security issues. You can contact us at [[email protected]](mailto:[email protected]). | ||
|
||
## Supported Versions | ||
|
||
We release patches for security vulnerabilities. Which versions are eligible for receiving such patches depends on the severity of the vulnerability: | ||
|
||
| CVSS v3.0 | Supported Versions | | ||
| --------- | ----------------------------------------- | | ||
| 9.0-10.0 | Releases within the previous three months | | ||
| 4.0-8.9 | Most recent release | | ||
| < 4.0 | 0.0.3 release | | ||
|
||
The following versions of Python packages are currently supported: | ||
|
||
- numpy: >=1.19.0, <2.0.0 | ||
- pandas: >=1.5.3 | ||
- azure-storage-blob: >=12.16.0 | ||
- python-dotenv: >=1.0.0 | ||
- openpyxl: >=3.1.2 | ||
- pyarrow: >=15.0.0 | ||
- fastparquet: >=2024.2.0 | ||
|
||
## Reporting a Vulnerability | ||
|
||
Please report any suspected security vulnerabilities to **[[email protected]]([email protected])**. You will receive a response from us within 48 hours. If the issue is confirmed, we will release a patch as soon as possible, typically within a few days depending on complexity. | ||
|
||
We appreciate your help in keeping our project secure. | ||
|
||
## Acknowledgments | ||
|
||
We acknowledge and credit individuals who report security vulnerabilities responsibly. If you report a security issue, we will include your name or alias in our acknowledgments, unless you request to remain anonymous. | ||
|
||
## Disclosure Policy | ||
|
||
We follow a responsible disclosure policy. After receiving a report, we will work with the reporter to address the issue and disclose it publicly once a fix is available. We may also coordinate with package maintainers if necessary. | ||
|
||
## CVSS v3.0 Summary | ||
|
||
The Common Vulnerability Scoring System (CVSS) v3.0 is an open standard for assessing the severity of security vulnerabilities. It provides a numerical score from 0.0 to 10.0, with higher scores indicating more severe vulnerabilities. Organizations use CVSS scores to prioritize their response to security vulnerabilities based on their severity. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.9.6 | ||
0.9.7 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,15 @@ | ||
""" | ||
Authors: J. A. Moreno-Guerra | ||
Last modification: 05/15/2023 | ||
Corresponding author: [email protected] | ||
pydbsmgr: Initialize the Package | ||
===================================== | ||
This is the entry point of pydbsmgr, your comprehensive database management companion. It initializes all necessary modules and provides a central hub for accessing various tools and functions. | ||
Main Modules: | ||
- pydbsmgr.main: Provides access to core functionality, including data manipulation, query execution, and database operations. | ||
- pydbsmgr.utils.azure_sdk: Offers integration with Azure SDK for seamless interaction with Microsoft's cloud-based services. | ||
- pydbsmgr.utils.tools: Contains utility functions for data processing, normalization, and visualization. | ||
By importing the main modules directly or accessing them through this central entry point (i.e., from pydbsmgr import *), you can leverage the full range of pydbsmgr's capabilities to streamline your database management workflow. | ||
""" | ||
|
||
from pydbsmgr.main import * | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,4 +12,4 @@ pyarrow | |
fastparquet | ||
loguru | ||
psutil | ||
Unidecode | ||
Unidecode |