
Research
Security News
The Growing Risk of Malicious Browser Extensions
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
m-data-science-helpers
Advanced tools
AWSHandler es un wrapper para funcionalidades de aws. Autentica automaticamente tomando las credenciales desde el clipboard (solo tienen que copiarlas desde Get credentials --> Command Line or Programatic Access --> Copy Credentials) y luego borra el clipboard
!pip install m-data-science-helpers
from m_data_science_helpers.aws_utils import AWSHandler
# Con las credenciales en clipboard, crear una instancia de AWSHandler (podes obtenerlas desde desde Command Line or Programatic Access)
aws_handler = AWSHandler()
sql = "SELECT * FROM mi_base_de_datos.mi_tabla LIMIT 10"
database = "mi_base_de_datos"
result_df = aws_handler.query(sql, database)
print(result_df)
database_info = aws_handler.list_tables("mi_base_de_datos")
print(database_info)
databases = aws_handler.list_data_sources()
print(databases)
aws_handler.save_df(df, 'mi_bucket', 'filename.parquet', file_format='parquet')
loaded_df = aws_handler.load_df('mi_bucket', 'filename.parquet')
print(loaded_df)
aws_handler.list_all_buckets()
aws_handler.list_bucket("mi_bucket", "prefijo_carpeta/")
FAQs
Helpers for AWS most common operations. Includes clipboard auth
We found that m-data-science-helpers demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
Research
Security News
An in-depth analysis of credential stealers, crypto drainers, cryptojackers, and clipboard hijackers abusing open source package registries to compromise Web3 development environments.
Security News
pnpm 10.12.1 introduces a global virtual store for faster installs and new options for managing dependencies with version catalogs.