Skip to content
View Dminor7's full-sized avatar
😀
😀
Block or Report

Block or report Dminor7

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

  1. instagram-engagement-rate instagram-engagement-rate Public

    Chrome Extension to calculate instagram public profile engagement rate

    JavaScript 2

  2. Python pandas dataframe to google sh... Python pandas dataframe to google sheets [Read, Write, and Append]
    1
    import gspread_dataframe as gd
    2
    import gspread as gs
    3
    gc = gs.service_account(filename="credentials.json")
    4
    
                  
    5
    def export_to_sheets(sheet_name,df,mode='r'):
  3. Upload DataFrame to Azure Blob Stora... Upload DataFrame to Azure Blob Storage as CSV file and Download CSV file as dataframe. Azure Python v12.5.0
    1
    import os, uuid
    2
    from io import BytesIO
    3
    from datetime import datetime
    4
    from urllib.parse import urlparse
    5
    from azure.storage.blob import BlobServiceClient
  4. Python Script to write data in googl... Python Script to write data in google sheets
    1
    """
    2
    # Worksheet header to data key mapping
    3
    header_to_key = {
    4
        "Name":"name",
    5
        "Age":"age",
  5. Flatten Nested Dictionary within lis... Flatten Nested Dictionary within list or having list items. #flatten #python
    1
    """
    2
    Using a generator we can `yield` key and value pairs when the value is not an instance of `list` or `dict` 
    3
    else we recursively call the function to flatten the object. To preserve empty `list` and `dict` 
    4
    we add additional check on obj when checking the obj type.
    5
    """