On our website, one key goal is building trust and showcasing social proof.
Social proof can come from the number of users/customers, awards, and logos of existing customers and users. This is why it is important to periodically scan our user base for well-known brands using Blue.
The steps to do this are straightforward.
Firstly, export all emails of our entire customer base via Metabase. This should be just a one-column CSV file with the header "emails"
Then, use the following Python script to turn this into a list of unique customer domains in Blue.
import pandas as pd# Load the CSV filefile_path ='path_to_your_csv_file.csv'# Replace with your file pathdata = pd.read_csv(file_path)# List of possible column names for emailemail_column_variations = ['Email','e-mail','E-mail','EMAIL','E-MAIL','emails','Emails','E-mails','E-MAILS']# Find the actual column name used in the CSVemail_column =Nonefor col in email_column_variations:if col in data.columns: email_column = colbreak# Raise error if no email column is foundifnot email_column:raiseValueError("The CSV file does not have an 'Email' column or any variation of it.")# Extract domain from each email addressdata['Domain']= data[email_column].str.extract(r'@([\w\.-]+)')# Identify unique domainsunique_domains = data['Domain'].unique()# Create a new DataFrame with unique domainsunique_domains_df = pd.DataFrame(unique_domains, columns=['Unique Domains'])# Save to a new CSV fileoutput_file ='unique_domains.csv'unique_domains_df.to_csv(output_file, index=False)print(f"Unique domains have been saved to {output_file}")
Then, we can manually scan or use AI to find domains of famous/global brands.
To find SVG logos of global companies, we can use WorldVectorLogo