
Security News
Vite Releases Technical Preview of Rolldown-Vite, a Rust-Based Bundler
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
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.
Security News
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
Research
Security News
A malicious npm typosquat uses remote commands to silently delete entire project directories after a single mistyped install.
Research
Security News
Malicious PyPI package semantic-types steals Solana private keys via transitive dependency installs using monkey patching and blockchain exfiltration.