Skip to content
View erelinz's full-sized avatar
  • Boston, MA
  • 10:03 (UTC -04:00)
Block or Report

Block or report erelinz

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. delete_bucket delete_bucket
    1
    """Delete all objects in a bucket and then delete the bucket."""
    2
    # Description: delete all objects in a bucket and then delete the bucket"""
    3
    # Usage: python bucket_delete.py --bucket_name <bucket_name> --profile_name <profile_name>
    4
    # Author: @ereli
    5
    # Date: 2023-04-11
  2. parquet2json is a Python script tha... parquet2json is a Python script that converts a Parquet file to JSON format
    1
    #!/usr/bin/python3
    2
    import sys; import pandas as pd; pd.read_parquet(sys.argv[1]).to_json(sys.stdout, orient='records')