3239 lines
205 KiB
Plaintext
3239 lines
205 KiB
Plaintext
{
|
||
"cells": [
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": 1,
|
||
"metadata": {},
|
||
"outputs": [
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Looking in indexes: https://pypi.org/simple, https://pypi.ngc.nvidia.com\n",
|
||
"Requirement already satisfied: tavily-python in c:\\users\\timmy_3aupohg\\anaconda3\\lib\\site-packages (0.3.5)\n",
|
||
"Requirement already satisfied: requests in c:\\users\\timmy_3aupohg\\anaconda3\\lib\\site-packages (from tavily-python) (2.32.3)\n",
|
||
"Requirement already satisfied: tiktoken>=0.5.1 in c:\\users\\timmy_3aupohg\\anaconda3\\lib\\site-packages (from tavily-python) (0.7.0)\n",
|
||
"Requirement already satisfied: httpx in c:\\users\\timmy_3aupohg\\anaconda3\\lib\\site-packages (from tavily-python) (0.27.0)\n",
|
||
"Requirement already satisfied: regex>=2022.1.18 in c:\\users\\timmy_3aupohg\\anaconda3\\lib\\site-packages (from tiktoken>=0.5.1->tavily-python) (2023.10.3)\n",
|
||
"Requirement already satisfied: charset-normalizer<4,>=2 in c:\\users\\timmy_3aupohg\\anaconda3\\lib\\site-packages (from requests->tavily-python) (2.0.4)\n",
|
||
"Requirement already satisfied: idna<4,>=2.5 in c:\\users\\timmy_3aupohg\\anaconda3\\lib\\site-packages (from requests->tavily-python) (3.4)\n",
|
||
"Requirement already satisfied: urllib3<3,>=1.21.1 in c:\\users\\timmy_3aupohg\\anaconda3\\lib\\site-packages (from requests->tavily-python) (2.0.7)\n",
|
||
"Requirement already satisfied: certifi>=2017.4.17 in c:\\users\\timmy_3aupohg\\anaconda3\\lib\\site-packages (from requests->tavily-python) (2024.8.30)\n",
|
||
"Requirement already satisfied: anyio in c:\\users\\timmy_3aupohg\\anaconda3\\lib\\site-packages (from httpx->tavily-python) (4.2.0)\n",
|
||
"Requirement already satisfied: httpcore==1.* in c:\\users\\timmy_3aupohg\\anaconda3\\lib\\site-packages (from httpx->tavily-python) (1.0.5)\n",
|
||
"Requirement already satisfied: sniffio in c:\\users\\timmy_3aupohg\\anaconda3\\lib\\site-packages (from httpx->tavily-python) (1.3.0)\n",
|
||
"Requirement already satisfied: h11<0.15,>=0.13 in c:\\users\\timmy_3aupohg\\anaconda3\\lib\\site-packages (from httpcore==1.*->httpx->tavily-python) (0.14.0)\n"
|
||
]
|
||
}
|
||
],
|
||
"source": [
|
||
"!pip install tavily-python"
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": 1,
|
||
"metadata": {},
|
||
"outputs": [
|
||
{
|
||
"data": {
|
||
"text/plain": [
|
||
"True"
|
||
]
|
||
},
|
||
"execution_count": 1,
|
||
"metadata": {},
|
||
"output_type": "execute_result"
|
||
}
|
||
],
|
||
"source": [
|
||
"from openai import OpenAI\n",
|
||
"import os\n",
|
||
"import requests\n",
|
||
"from dotenv import load_dotenv\n",
|
||
"from langchain_openai import ChatOpenAI\n",
|
||
"from tavily import TavilyClient\n",
|
||
"from langchain_core.prompts.prompt import PromptTemplate\n",
|
||
"from langchain_core.output_parsers import StrOutputParser, JsonOutputParser\n",
|
||
"from loguru import logger\n",
|
||
"import concurrent.futures\n",
|
||
"import json\n",
|
||
"load_dotenv()"
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": 2,
|
||
"metadata": {},
|
||
"outputs": [],
|
||
"source": [
|
||
"os.environ[\"OPENAI_API_KEY\"] = os.getenv(\"OPENAI_API_KEY\")\n",
|
||
"os.environ[\"TAVILY_API_KEY\"] = os.getenv(\"TAVILY_API_KEY\")\n",
|
||
"os.environ[\"PERPLEXITY_AI_API\"] = os.getenv(\"PERPLEXITY_AI_API\")"
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": 3,
|
||
"metadata": {},
|
||
"outputs": [
|
||
{
|
||
"ename": "UsageLimitExceededError",
|
||
"evalue": "This request exceeds your plan's set usage limit. Please upgrade your plan or contact support@tavily.com",
|
||
"output_type": "error",
|
||
"traceback": [
|
||
"\u001b[1;31m---------------------------------------------------------------------------\u001b[0m",
|
||
"\u001b[1;31mUsageLimitExceededError\u001b[0m Traceback (most recent call last)",
|
||
"Cell \u001b[1;32mIn[3], line 5\u001b[0m\n\u001b[0;32m 2\u001b[0m tavily_client \u001b[38;5;241m=\u001b[39m TavilyClient()\n\u001b[0;32m 4\u001b[0m \u001b[38;5;66;03m# Step 2. Executing a simple search query\u001b[39;00m\n\u001b[1;32m----> 5\u001b[0m response \u001b[38;5;241m=\u001b[39m \u001b[43mtavily_client\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43msearch\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mwho scored hatric in real madrid most recent match?\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m)\u001b[49m\n\u001b[0;32m 7\u001b[0m \u001b[38;5;66;03m# Step 3. That's it! You've done a Tavily Search!\u001b[39;00m\n\u001b[0;32m 8\u001b[0m \u001b[38;5;28mprint\u001b[39m(response)\n",
|
||
"File \u001b[1;32mc:\\Users\\timmy_3aupohg\\anaconda3\\envs\\ai_env\\Lib\\site-packages\\tavily\\tavily.py:96\u001b[0m, in \u001b[0;36mTavilyClient.search\u001b[1;34m(self, query, search_depth, topic, days, max_results, include_domains, exclude_domains, include_answer, include_raw_content, include_images, **kwargs)\u001b[0m\n\u001b[0;32m 79\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21msearch\u001b[39m(\u001b[38;5;28mself\u001b[39m,\n\u001b[0;32m 80\u001b[0m query: \u001b[38;5;28mstr\u001b[39m,\n\u001b[0;32m 81\u001b[0m search_depth: Literal[\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mbasic\u001b[39m\u001b[38;5;124m\"\u001b[39m, \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124madvanced\u001b[39m\u001b[38;5;124m\"\u001b[39m] \u001b[38;5;241m=\u001b[39m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mbasic\u001b[39m\u001b[38;5;124m\"\u001b[39m,\n\u001b[1;32m (...)\u001b[0m\n\u001b[0;32m 90\u001b[0m \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkwargs, \u001b[38;5;66;03m# Accept custom arguments\u001b[39;00m\n\u001b[0;32m 91\u001b[0m ) \u001b[38;5;241m-\u001b[39m\u001b[38;5;241m>\u001b[39m \u001b[38;5;28mdict\u001b[39m:\n\u001b[0;32m 92\u001b[0m \u001b[38;5;250m \u001b[39m\u001b[38;5;124;03m\"\"\"\u001b[39;00m\n\u001b[0;32m 93\u001b[0m \u001b[38;5;124;03m Combined search method.\u001b[39;00m\n\u001b[0;32m 94\u001b[0m \u001b[38;5;124;03m \"\"\"\u001b[39;00m\n\u001b[1;32m---> 96\u001b[0m response_dict \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_search\u001b[49m\u001b[43m(\u001b[49m\u001b[43mquery\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 97\u001b[0m \u001b[43m \u001b[49m\u001b[43msearch_depth\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43msearch_depth\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 98\u001b[0m \u001b[43m \u001b[49m\u001b[43mtopic\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mtopic\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 99\u001b[0m \u001b[43m \u001b[49m\u001b[43mdays\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mdays\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 100\u001b[0m \u001b[43m \u001b[49m\u001b[43mmax_results\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mmax_results\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 101\u001b[0m \u001b[43m \u001b[49m\u001b[43minclude_domains\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43minclude_domains\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 102\u001b[0m \u001b[43m \u001b[49m\u001b[43mexclude_domains\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mexclude_domains\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 103\u001b[0m \u001b[43m \u001b[49m\u001b[43minclude_answer\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43minclude_answer\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 104\u001b[0m \u001b[43m \u001b[49m\u001b[43minclude_raw_content\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43minclude_raw_content\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 105\u001b[0m \u001b[43m \u001b[49m\u001b[43minclude_images\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43minclude_images\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 106\u001b[0m \u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 107\u001b[0m \u001b[43m \u001b[49m\u001b[43m)\u001b[49m\n\u001b[0;32m 109\u001b[0m tavily_results \u001b[38;5;241m=\u001b[39m response_dict\u001b[38;5;241m.\u001b[39mget(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mresults\u001b[39m\u001b[38;5;124m\"\u001b[39m, [])\n\u001b[0;32m 111\u001b[0m response_dict[\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mresults\u001b[39m\u001b[38;5;124m\"\u001b[39m] \u001b[38;5;241m=\u001b[39m tavily_results\n",
|
||
"File \u001b[1;32mc:\\Users\\timmy_3aupohg\\anaconda3\\envs\\ai_env\\Lib\\site-packages\\tavily\\tavily.py:73\u001b[0m, in \u001b[0;36mTavilyClient._search\u001b[1;34m(self, query, search_depth, topic, days, max_results, include_domains, exclude_domains, include_answer, include_raw_content, include_images, **kwargs)\u001b[0m\n\u001b[0;32m 70\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m:\n\u001b[0;32m 71\u001b[0m \u001b[38;5;28;01mpass\u001b[39;00m\n\u001b[1;32m---> 73\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m UsageLimitExceededError(detail)\n\u001b[0;32m 74\u001b[0m \u001b[38;5;28;01melif\u001b[39;00m response\u001b[38;5;241m.\u001b[39mstatus_code \u001b[38;5;241m==\u001b[39m \u001b[38;5;241m401\u001b[39m:\n\u001b[0;32m 75\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m InvalidAPIKeyError()\n",
|
||
"\u001b[1;31mUsageLimitExceededError\u001b[0m: This request exceeds your plan's set usage limit. Please upgrade your plan or contact support@tavily.com"
|
||
]
|
||
}
|
||
],
|
||
"source": [
|
||
"\n",
|
||
"# Step 1. Instantiating your TavilyClient\n",
|
||
"tavily_client = TavilyClient()\n",
|
||
"\n",
|
||
"# Step 2. Executing a simple search query\n",
|
||
"response = tavily_client.search(\"who scored hatric in real madrid most recent match?\")\n",
|
||
"\n",
|
||
"# Step 3. That's it! You've done a Tavily Search!\n",
|
||
"print(response)"
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": 4,
|
||
"metadata": {},
|
||
"outputs": [
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Vinícius Jr. scored a hat-trick in Real Madrid's most recent match.\n"
|
||
]
|
||
}
|
||
],
|
||
"source": [
|
||
"# Step 2. Executing a Q&A search query\n",
|
||
"answer = tavily_client.qna_search(query=\"who scored hatric in real madrid most recent match?\")\n",
|
||
"\n",
|
||
"# Step 3. That's it! Your question has been answered!\n",
|
||
"print(answer)"
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": 5,
|
||
"metadata": {},
|
||
"outputs": [],
|
||
"source": [
|
||
"prompt = \"\"\"\n",
|
||
" I'm a business owner in serach for influencers to promote my brand.\\n\n",
|
||
" My brand falls under this category : \"Beauty & Skincare\" \\n.\n",
|
||
" I need your help with getting information for at least the top 30 influencers in Alabama in the USA. \\n\n",
|
||
"\"\"\""
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": 6,
|
||
"metadata": {},
|
||
"outputs": [
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Based on the provided data, some of the top influencers in the \"Beauty & Skincare\" category in Alabama, USA are Victoria, Huda, and Blackess LaToya Lanice. These influencers are known for their expertise in beauty, hair, skin, and skincare content creation. For more detailed information on these influencers and their reach, it is recommended to further explore their social media platforms and engagement metrics.\n"
|
||
]
|
||
}
|
||
],
|
||
"source": [
|
||
"# Step 2. Executing a Q&A search query\n",
|
||
"answer = tavily_client.qna_search(query=prompt)\n",
|
||
"\n",
|
||
"# Step 3. That's it! Your question has been answered!\n",
|
||
"print(answer)"
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": 18,
|
||
"metadata": {},
|
||
"outputs": [
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"{'query': 'Give me a list of the names of the top 30 beauty and skincare influencers in alabama us.', 'follow_up_questions': None, 'answer': None, 'images': [], 'results': [{'title': '32 Top Beauty Influencers You Should Follow Right Now', 'url': 'https://influencermarketinghub.com/beauty-influencers/', 'content': 'She also shares skincare videos, life updates, and tries out different products. 22. Rachel Claire Levin. Rachel Claire Levin is a beauty influencer who was featured in an episode of Steve Harvey and boasts more than 14 million YouTube subscribers. In 2020, Rachel launched her own makeup brand, RCLÓ Cosmetics.', 'score': 0.96138906, 'raw_content': None}, {'title': 'Top 100 Skincare Influencers in 2024 - FeedSpot for Influencers', 'url': 'https://influencers.feedspot.com/skincare_instagram_influencers/', 'content': \"Skincare Influencers. Here are Top 100 Skincare Influencers. 1. Victoria. Bio ɢlαd yoυ're нere тнe laтeѕт тrendѕ вeαυтy, нαιr & ѕĸιɴ нow-тo & мore ****@victorialyn.net Instagram Handle @victorialyn Instagram Followers 1.4M Type Mega Gender Female Get Email Contact. 2.\", 'score': 0.9175984, 'raw_content': None}, {'title': 'Skincare Influencers: 20 With Top Beauty Routines - IZEA', 'url': 'https://izea.com/resources/skincare-influencers/', 'content': \"The skincare content community falls under a broad umbrella. You may see beauty elements mixed in with skincare content or a feed full of serums, masks, scrubbing brushes, moisturizers, toners, and all the other skincare essentials. On the flip side, having so many products can be overwhelming for some people, so here's a list of some of the top skincare influencers and their particular take\", 'score': 0.8899121, 'raw_content': None}, {'title': 'Top 37 Beauty Influencers in the U.S. - The Social Shepherd', 'url': 'https://thesocialshepherd.com/blog/top-beauty-influencers-us', 'content': \"Harnessing the power of top beauty influencers in the U.S. is not just an option; it's a necessity. The global influencer marketing market has skyrocketed, doubling in size since 2019, reaching an impressive 21.1 billion U.S. dollars in 2023. The fact is that brands today are investing up to 20% of their marketing budget on influencers.\", 'score': 0.8556101, 'raw_content': None}, {'title': '15 of the Top Skincare Influencers on Instagram - Get Hyped', 'url': 'https://gethypedmedia.com/skincare-influencers-on-instagram/', 'content': '10. Okikiola Emaleku. Image via Instagram. Okikiola Emaleku is a UK-based beauty influencer on Instagram, who is also a licensed aesthetician. Also known as The Skin Priest, Okikiola refers to herself as the Harriet Tubman of skincare owing to her passion for creating skincare content for people of color.', 'score': 0.64422506, 'raw_content': None}, {'title': '75+ Skincare Influencers To Follow in 2024 [Non-Celebrity]', 'url': 'https://blog.ainfluencer.com/skincare-influencers/', 'content': 'Shani Darden (@shanidarden) Shani is an esthetician, skin expert, and one of the top skincare influencers on our list with 329K followers. She is a mom of two little cuties and the founder of the Shani Darden Skincare brand. Her products are available to shop online and in Sephora stores. View this post on Instagram.', 'score': 0.4631407, 'raw_content': None}, {'title': 'Top 20 Beauty Influencers on Instagram, TikTok & YouTube - Glewee', 'url': 'https://glewee.com/blog/beauty-influencers/', 'content': 'Who are some of the most popular makeup influencers right now? Below is a list of big names in beauty, from top beauty influencers to up and coming stars. List of the Most Popular Makeup Influencers on Instagram, YouTube, and TikTok James Charles. YouTube: 23.9 M subscribers . Instagram: 21.1M followers . TikTok: 38.4M followers', 'score': 0.22101425, 'raw_content': None}, {'title': 'The Most Popular Beauty & Skincare Products Our Readers Could Not Stop ...', 'url': 'https://www.allure.com/gallery/most-popular-beauty-products-2021', 'content': \"It seems like SkinCeuticals C E Ferulic might never be dethroned as a top-selling product, despite its hefty $166 price tag. This three-time Best of Beauty Award and one-time Readers' Choice Award\", 'score': 0.008511303, 'raw_content': None}, {'title': '30 Best Skincare Products of 2024, Tested by Experts - Good Housekeeping', 'url': 'https://www.goodhousekeeping.com/beauty/anti-aging/g28135730/best-skincare-products/', 'content': 'Guide to Your Best Skin Ever\\nThe Best At-Home Red Light Therapy Devices\\nThe Best Anti-Aging Creams\\n11 Best Razors for Women of 2023\\nThe Best Face Washes for Oily Skin\\nDerms Say This Is the Best Daily Skincare Routine\\n20 Best Eye Creams of 2023\\n10 Best Razors for Women of 2023\\n18 Best Dark Spot Correctors\\nThe Best Skin Scrubbers and Spatulas\\nWhat Does Glycolic Acid Do?\\n Our top picks:\\nBest Face Cleanser\\nBest Value Face Cleanser\\nBest Anti-Aging Day Cream\\nBest Anti-Aging Moisturizer\\nBest Day Cream\\nBest Dark Spot Treatment\\nBest Anti-Aging Face Serum\\nBest Face Scrub\\nBest Face Moisturizer\\nBest Face Moisturizer with Sunscreen\\nThe GH Beauty Lab thoroughly evaluates skincare products using technical Lab instruments and consumer feedback. \"\\nRELATED: The Best Face Moisturizers With Sunscreen for One-Step Sun Protection\\nPalmer\\'s Cocoa Butter Formula Moisturizing Skin Therapy Oil for Face\\nPalmer\\'s Cocoa Butter Formula Moisturizing Skin Therapy Oil for Face\\nThe best bargain in the GH Beauty Lab’s test of face oils, this Seal Star is a 10-botanical oil blend (with argan, apricot and almond oils) that effectively boosts skin’s softness. RELATED:\\nThe Best Anti-Aging Serums, According to Skin Experts\\nAcure Brightening Facial Scrub\\nAcure Brightening Facial Scrub\\nNumber one in the GH Beauty Lab’s test of face scrubs, the Acure face exfoliator clarifies skin with a blend of walnut shell powder and green clay. The Best Face Washes Ever, According to Skincare Pros\\nCetaphil Daily Facial Cleanser\\nCetaphil Daily Facial Cleanser\\nWith a powder fresh scent and mild suds, Cetaphil\\'s dermatologist-recommended face wash was a winner in the GH Beauty Lab’s face wash test for cleansing thoroughly yet leaving skin soft.', 'score': 0.008283626, 'raw_content': None}, {'title': 'The 18 Best Beauty Products of 2021, According to Top ... - Vogue', 'url': 'https://www.vogue.com/article/best-beauty-products', 'content': 'The Sleep Masque Night Repair is the first bottle you should grab. Healthy hair gives colorists a solid foundation to work with for the best possible end-result color, and this masque leaves hair', 'score': 0.0060739345, 'raw_content': None}], 'response_time': 3.91}\n"
|
||
]
|
||
}
|
||
],
|
||
"source": [
|
||
"# Step 2. Executing a simple search query\n",
|
||
"response = tavily_client.search(\"Give me a list of the names of the top 30 beauty and skincare influencers in alabama us.\", search_depth='advanced', max_results=10)\n",
|
||
"\n",
|
||
"# Step 3. That's it! You've done a Tavily Search!\n",
|
||
"print(response)"
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": 23,
|
||
"metadata": {},
|
||
"outputs": [
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"{'query': 'Get me all the social media details of Faye Davis, a beauty and skincare influencer.', 'follow_up_questions': None, 'answer': 'Faye Davis, a beauty and skincare influencer, has a significant presence on social media platforms such as Instagram and TikTok. She actively engages with her followers by sharing skincare tips, product reviews, and beauty tutorials. Faye Davis has successfully partnered with various beauty brands to promote their products to her audience, showcasing her influence in the beauty industry.', 'images': [], 'results': [{'title': 'Skincare Influencer: How To Become A Successful Skincare Influencer On ...', 'url': 'https://www.netinfluencer.com/how-to-be-a-skincare-influencer/', 'content': \"Now that we've covered what being a skincare influencer is all about, let's take a quick look at the benefits you can receive. Sponsored Content. Brand partnerships are a vital source of income for most social media influencers. A typical skincare influencer with 100k followers and good engagement earns roughly $1000 for each sponsored post.\", 'score': 0.9719393, 'raw_content': None}, {'title': '20 Beauty Influencers Reshaping the Industry - Dash Hudson', 'url': 'https://www.dashhudson.com/blog/top-beauty-influencers', 'content': 'The beauty landscape on social media encompasses a range of influencers, from makeup artists and skincare enthusiasts to hairstylists and beauty gurus, collectively shaping trends and sharing their expertise with an expansive audience. The volume of influencers is ever-changing, making it hard to pinpoint an exact number.', 'score': 0.9657707, 'raw_content': None}, {'title': 'Skincare Influencers: 20 With Top Beauty Routines - IZEA', 'url': 'https://izea.com/resources/skincare-influencers/', 'content': \"The skincare content community falls under a broad umbrella. You may see beauty elements mixed in with skincare content or a feed full of serums, masks, scrubbing brushes, moisturizers, toners, and all the other skincare essentials. On the flip side, having so many products can be overwhelming for some people, so here's a list of some of the top skincare influencers and their particular take\", 'score': 0.9502266, 'raw_content': None}, {'title': 'The Rise Of \"Dermatology Influencers\" Is Changing The Beauty Social ...', 'url': 'https://www.byrdie.com/dermatologist-beauty-influencers-5210605', 'content': \"This growth has added yet another layer to the ever-evolving social media space. Consumers demand more knowledge and transparency from all areas of the beauty industry, including brands and influencers. And thus, another shift. On buzzy platforms like TikTok and Instagram, there's been an uptick in the number of doctors and dermatologists\", 'score': 0.82233185, 'raw_content': None}, {'title': \"Social Media's Impact On The Beauty Industry | Beautifi\", 'url': 'https://www.beautifi.com/social-medias-impact-on-the-beauty-industry/', 'content': \"Many positive impacts have come from social media, especially in the beauty industry. Brands can now get consumers' attention anywhere, plus it's easy to shop with them. This is great for anyone that loves to embrace the latest makeup or skincare trend. However, sometimes this constant exposure to beauty adverts can also affect our\", 'score': 0.7905303, 'raw_content': None}, {'title': 'Top Beauty Influencers in 2024 - Metricool', 'url': 'https://metricool.com/beauty-influencers/', 'content': 'Sign up here for the online presentation\\nAnalytics\\nThe data that matters\\nCompetitors\\nAnalyze your competition\\nReports\\nNetwork reports at the click of a button\\nLooker Studio\\nLooker Studio conector\\nHashtag tracker\\nMeasure and follow your hashtags\\nPlanner\\nPlan your social networks\\nApproval System\\nAllow your clients to review your content\\nSmartLinks\\nThe definitive link in bio\\nAI Assistant\\nGenerate copies from a single prompt\\nChrome Extension\\nProgram while browsing\\nInbox\\nComments and messages management\\nAds\\nManage and measure your advertising\\nInstagram\\nAnalyze your Instagram account\\nTikTok\\nGrowing on TikTok\\nYouTube\\nMeasure, programme and move forward\\nTwitter\\nMeasure and publish threads and tweets\\nTwitch\\nAnalyse your channel and competitors on Twitch\\nGoogle Business Profile\\nSchedule and answer reviews on Google Business Profile\\nFacebook\\nManage Facebook like a pro\\nPinterest\\nGet growing on Pinterest\\nLinkedIn\\nAnalyze and schedule your personal or company profile\\nTutorials\\nHow to use Metricool\\nNewsletter\\nFind out all the news of social networks in one click\\nMasterclass\\nLearn with social media professionals\\nMarketing Tutorials\\nOnline Advertising Tutorials\\nInstagram\\nTikTok\\nYouTube\\nThreads\\nTwitter\\nTwitch\\nGoogle Business Profile\\nFacebook\\nPinterest\\nLinkedIn\\nAnalytics\\nInfluencer Marketing\\nContent Marketing\\nEmail Marketing\\nOnline Advertising\\nHome / Top Beauty Influencers in 2024\\nTop Beauty Influencers in 2024\\nBeauty influencers have been and will continue to take over many of the social media platforms, especially on Instagram and Tiktok. Top Podcast Influencers in 2024\\nTop Lifestyle Influencers in 2024\\nHow to create an influencer Media Kit\\nCompany\\nProduct\\nResources\\nStudies\\n Required fields are marked *\\nName *\\nEmail *\\nMetricool Software, S.L. is the data controller of your data, with the purpose of moderating and publishing your comment with your name (in no case will your email address be published). All in all, beauty influencers aren’t going anywhere, and here are some to be aware of!\\nBeauty or Makeup Influencers to Know\\nSelena Gomez\\nSelena Gomez has recently been deemed the most followed woman on Instagram! More information in Metricool Privacy Policy\\nI have read and accepted the\\xa0Legal Notice\\nSend comment\\nΔ\\nRelated articles\\n', 'score': 0.7889086, 'raw_content': None}, {'title': '32 Top Beauty Influencers You Should Follow Right Now', 'url': 'https://influencermarketinghub.com/beauty-influencers/', 'content': 'She also shares skincare videos, life updates, and tries out different products. 22. Rachel Claire Levin. Rachel Claire Levin is a beauty influencer who was featured in an episode of Steve Harvey and boasts more than 14 million YouTube subscribers. In 2020, Rachel launched her own makeup brand, RCLÓ Cosmetics.', 'score': 0.77713084, 'raw_content': None}, {'title': \"As attitudes change, what's next for beauty influencers?\", 'url': 'https://www.voguebusiness.com/beauty/as-attitudes-change-whats-next-for-beauty-influencers', 'content': 'Customer acquisition costs continue to rise. According to research by influencer marketing software platform, Creator iQ, over 52 per cent of beauty brands surveyed spent more than $200,000 on influencer marketing in 2022, with 28 per cent saying their spend had \"significantly increased\" in the last year.', 'score': 0.55983156, 'raw_content': None}, {'title': 'Top 37 Beauty Influencers in the U.S. - The Social Shepherd', 'url': 'https://thesocialshepherd.com/blog/top-beauty-influencers-us', 'content': \"She has solidified her status as an influencer for brands like Fashion Nova, Maven Beauty, Nova Kids, and more. Alissa Janay's influence extends beyond makeup and fashion; it's about empowering individuals to be confident in their natural selves. 3. Mia Anjelica.\", 'score': 0.12368282, 'raw_content': None}, {'title': 'Beauty Influencers: What They Are and Top Influencers to Strengthen ...', 'url': 'https://influencity.com/blog/en/top-beauty-influencer-what-is-it', 'content': 'Kylie Jenner. Kylie Jenner, the biggest beauty influencer on TikTok in 2023 with 54.4 million followers, is a world-famous American media personality and businesswoman who has revolutionized the beauty industry with her influential presence on social media and successful entrepreneurial ventures, notably Kylie Cosmetics.', 'score': 0.08678673, 'raw_content': None}], 'response_time': 5.65}\n"
|
||
]
|
||
}
|
||
],
|
||
"source": [
|
||
"# Step 2. Executing a Q&A search query\n",
|
||
"answer = tavily_client.search(query=\"Get me all the social media details of Faye Davis, a beauty and skincare influencer.\", search_depth='advanced', max_results=10, include_answer=True)\n",
|
||
"\n",
|
||
"# Step 3. That's it! Your question has been answered!\n",
|
||
"print(answer)"
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": 25,
|
||
"metadata": {},
|
||
"outputs": [
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Based on the provided data, there is no specific information available regarding the number of Facebook followers Faye Davis, a beauty and skincare influencer, has.\n"
|
||
]
|
||
}
|
||
],
|
||
"source": [
|
||
"# Step 2. Executing a Q&A search query\n",
|
||
"answer = tavily_client.qna_search(query=\"how many facebook followers does Faye Davis, a beauty and skincare influencer have?.\", search_depth='advanced', max_results=10)\n",
|
||
"\n",
|
||
"# Step 3. That's it! Your question has been answered!\n",
|
||
"print(answer)"
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": 4,
|
||
"metadata": {},
|
||
"outputs": [],
|
||
"source": [
|
||
"llm = ChatOpenAI(model=\"gpt-4o\")"
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": 5,
|
||
"metadata": {},
|
||
"outputs": [],
|
||
"source": [
|
||
"def get_influencer_data(social_media: str, influencer_name:str , socialmedia_name: str, socialmedia_followers:str) -> dict:\n",
|
||
" logger.info(f\"Formatting Influencer Data\")\n",
|
||
" initiator_prompt = PromptTemplate(\n",
|
||
" template=\"\"\"<|begin_of_text|><|start_header_id|>system<|end_header_id|>\n",
|
||
" You are a Influencer Data Extractor AI Agent tasked with extracting information from a search result\\n\n",
|
||
" You are provided with three informations: \\n\n",
|
||
" 1. The social media name \\n\n",
|
||
" 2. The influencer social media name search result \\n\n",
|
||
" 3. The influencer social media followers/subscribers search results \\n\n",
|
||
" \n",
|
||
" Your job is to extract the influencer social media name, and social media followers or subscriber. \\n \n",
|
||
" You are to return this as a JSON output. Two data should be there, the influencer social media name, and social media followers or subscribers.\\n \n",
|
||
" Do this decently and properly. If the search result isn't showing the social media name or social media folloers/subscribers, return the data as NULL. \\n\n",
|
||
" Don not add to the search result, just return the JSON data as expected. Also rmember to replace social media with the given social media name in the JSON output.\\n\n",
|
||
"\n",
|
||
" <|eot_id|><|start_header_id|>user<|end_header_id|>\n",
|
||
" SOCIALMEDIA: {social_media} \\n \n",
|
||
" INFLUENCER_NAME: {influencer_name}\\n\n",
|
||
" SOCIALMEDIA_NAME: {socialmedia_name} \\n\n",
|
||
" SOCIALMEDIA_FOLLOWERS: {socialmedia_followers} \\n\n",
|
||
" \n",
|
||
" <|eot_id|><|start_header_id|>assistant<|end_header_id|>\"\"\",\n",
|
||
" input_variables=[\"social_media\", \"socialmedia_name\", \"socialmedia_followers\", \"influencer_name\"],\n",
|
||
" )\n",
|
||
"\n",
|
||
" initiator_router = initiator_prompt | llm | JsonOutputParser()\n",
|
||
" output = initiator_router.invoke({\"social_media\":social_media, \"socialmedia_name\":socialmedia_name, \"socialmedia_followers\":socialmedia_followers, \"influencer_name\":influencer_name})\n",
|
||
" return output"
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": 6,
|
||
"metadata": {},
|
||
"outputs": [],
|
||
"source": [
|
||
"def socialmedia_details(social_media:str, influencer_name:str, product_category:str): \n",
|
||
" logger.info(f\"{social_media} name search\")\n",
|
||
" name_question = f\"What is the {social_media} username of {influencer_name}, this person is a popular {product_category} influencer.\"\n",
|
||
" print(name_question)\n",
|
||
" name = tavily_client.qna_search(query=name_question, search_depth='advanced', max_results=10)\n",
|
||
" print(name)\n",
|
||
" \n",
|
||
" logger.info(f\"{social_media} followers search\")\n",
|
||
" followers_question = f\"How many {social_media} followers does {influencer_name} have? Note this is a {product_category} popular influencer.\"\n",
|
||
" print(followers_question)\n",
|
||
" followers = tavily_client.qna_search(query=followers_question, search_depth='advanced', max_results=10)\n",
|
||
" print(followers)\n",
|
||
" \n",
|
||
" logger.info(f\"Formatting Influencer {social_media} Data\")\n",
|
||
" format_response = get_influencer_data(social_media={social_media}, influencer_name=influencer_name, socialmedia_name=name, socialmedia_followers=followers)\n",
|
||
" return format_response"
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": 7,
|
||
"metadata": {},
|
||
"outputs": [],
|
||
"source": [
|
||
"def get_influencer_contact(influencer_name:str, contact:str, location:str) -> dict:\n",
|
||
" logger.info(f\"Formatting Influencer Data\")\n",
|
||
" initiator_prompt = PromptTemplate(\n",
|
||
" template=\"\"\"<|begin_of_text|><|start_header_id|>system<|end_header_id|>\n",
|
||
" You are a Influencer Data Extractor AI Agent tasked with extracting information from a search result\\n\n",
|
||
" You are provided with three informations: \\n\n",
|
||
" 1. The social media name \\n\n",
|
||
" 2. The influencer contact info search result \\n\n",
|
||
" 3. The influencer location or state search results \\n\n",
|
||
" \n",
|
||
" Your job is to extract the influencer's contact info, and location. Make sure things are properly filtered and good. \\n\n",
|
||
" Pick relevalt info, that can be useful for reaching the influencer \\n\n",
|
||
" You are to return this as a JSON output. The contact and location should be the keys in the JSON \\n\n",
|
||
" Do not add to the search result, just return the JSON data as expected.\\n\n",
|
||
"\n",
|
||
" <|eot_id|><|start_header_id|>user<|end_header_id|>\n",
|
||
" INFLUENCER_NAME: {influencer_name}\\n\n",
|
||
" CONTACT: {contact} \\n\n",
|
||
" LOCATION: {location} \\n\n",
|
||
" \n",
|
||
" <|eot_id|><|start_header_id|>assistant<|end_header_id|>\"\"\",\n",
|
||
" input_variables=[\"contact\", \"location\", \"influencer_name\"],\n",
|
||
" )\n",
|
||
"\n",
|
||
" initiator_router = initiator_prompt | llm | JsonOutputParser()\n",
|
||
" output = initiator_router.invoke({\"contact\":contact, \"location\":location, \"influencer_name\":influencer_name})\n",
|
||
" return output"
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": 8,
|
||
"metadata": {},
|
||
"outputs": [],
|
||
"source": [
|
||
"def contact_details(influencer_name:str, product_category:str): \n",
|
||
" logger.info(f\"contact details search\")\n",
|
||
" contact_question = f\"What is the contact details or email of {influencer_name}, this person is a popular {product_category} influencer.\"\n",
|
||
" print(contact_question)\n",
|
||
" contact = tavily_client.qna_search(query=contact_question, search_depth='advanced', max_results=10)\n",
|
||
" print(contact)\n",
|
||
" \n",
|
||
" logger.info(f\"Location details search\")\n",
|
||
" location_question = f\"What is the location of {influencer_name}, this person is a popular {product_category} influencer. Check for state and country.\"\n",
|
||
" print(location_question)\n",
|
||
" location = tavily_client.qna_search(query=location_question, search_depth='advanced', max_results=10)\n",
|
||
" print(location)\n",
|
||
" \n",
|
||
" logger.info(f\"Formatting Influencer contact details\")\n",
|
||
" format_response = get_influencer_contact(influencer_name=influencer_name, contact=contact, location=location)\n",
|
||
" return format_response"
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": 9,
|
||
"metadata": {},
|
||
"outputs": [
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-08 19:52:09.079\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mInstagram name search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"What is the Instagram username of Jennifer Mathews, this person is a popular Beauty & skincare influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"ename": "UsageLimitExceededError",
|
||
"evalue": "This request exceeds your plan's set usage limit. Please upgrade your plan or contact support@tavily.com",
|
||
"output_type": "error",
|
||
"traceback": [
|
||
"\u001b[1;31m---------------------------------------------------------------------------\u001b[0m",
|
||
"\u001b[1;31mUsageLimitExceededError\u001b[0m Traceback (most recent call last)",
|
||
"Cell \u001b[1;32mIn[9], line 1\u001b[0m\n\u001b[1;32m----> 1\u001b[0m instagram \u001b[38;5;241m=\u001b[39m \u001b[43msocialmedia_details\u001b[49m\u001b[43m(\u001b[49m\u001b[43msocial_media\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mInstagram\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43minfluencer_name\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mJennifer Mathews\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mproduct_category\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mBeauty & skincare\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m)\u001b[49m\n",
|
||
"Cell \u001b[1;32mIn[6], line 5\u001b[0m, in \u001b[0;36msocialmedia_details\u001b[1;34m(social_media, influencer_name, product_category)\u001b[0m\n\u001b[0;32m 3\u001b[0m name_question \u001b[38;5;241m=\u001b[39m \u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mWhat is the \u001b[39m\u001b[38;5;132;01m{\u001b[39;00msocial_media\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m username of \u001b[39m\u001b[38;5;132;01m{\u001b[39;00minfluencer_name\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m, this person is a popular \u001b[39m\u001b[38;5;132;01m{\u001b[39;00mproduct_category\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m influencer.\u001b[39m\u001b[38;5;124m\"\u001b[39m\n\u001b[0;32m 4\u001b[0m \u001b[38;5;28mprint\u001b[39m(name_question)\n\u001b[1;32m----> 5\u001b[0m name \u001b[38;5;241m=\u001b[39m \u001b[43mtavily_client\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mqna_search\u001b[49m\u001b[43m(\u001b[49m\u001b[43mquery\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mname_question\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43msearch_depth\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[38;5;124;43madvanced\u001b[39;49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mmax_results\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;241;43m10\u001b[39;49m\u001b[43m)\u001b[49m\n\u001b[0;32m 6\u001b[0m \u001b[38;5;28mprint\u001b[39m(name)\n\u001b[0;32m 8\u001b[0m logger\u001b[38;5;241m.\u001b[39minfo(\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;132;01m{\u001b[39;00msocial_media\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m followers search\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n",
|
||
"File \u001b[1;32mc:\\Users\\timmy_3aupohg\\anaconda3\\envs\\ai_env\\Lib\\site-packages\\tavily\\tavily.py:219\u001b[0m, in \u001b[0;36mTavilyClient.qna_search\u001b[1;34m(self, query, search_depth, topic, days, max_results, include_domains, exclude_domains, **kwargs)\u001b[0m\n\u001b[0;32m 206\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21mqna_search\u001b[39m(\u001b[38;5;28mself\u001b[39m,\n\u001b[0;32m 207\u001b[0m query: \u001b[38;5;28mstr\u001b[39m,\n\u001b[0;32m 208\u001b[0m search_depth: Literal[\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mbasic\u001b[39m\u001b[38;5;124m\"\u001b[39m, \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124madvanced\u001b[39m\u001b[38;5;124m\"\u001b[39m] \u001b[38;5;241m=\u001b[39m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124madvanced\u001b[39m\u001b[38;5;124m\"\u001b[39m,\n\u001b[1;32m (...)\u001b[0m\n\u001b[0;32m 214\u001b[0m \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkwargs, \u001b[38;5;66;03m# Accept custom arguments\u001b[39;00m\n\u001b[0;32m 215\u001b[0m ) \u001b[38;5;241m-\u001b[39m\u001b[38;5;241m>\u001b[39m \u001b[38;5;28mstr\u001b[39m:\n\u001b[0;32m 216\u001b[0m \u001b[38;5;250m \u001b[39m\u001b[38;5;124;03m\"\"\"\u001b[39;00m\n\u001b[0;32m 217\u001b[0m \u001b[38;5;124;03m Q&A search method. Search depth is advanced by default to get the best answer.\u001b[39;00m\n\u001b[0;32m 218\u001b[0m \u001b[38;5;124;03m \"\"\"\u001b[39;00m\n\u001b[1;32m--> 219\u001b[0m response_dict \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_search\u001b[49m\u001b[43m(\u001b[49m\u001b[43mquery\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 220\u001b[0m \u001b[43m \u001b[49m\u001b[43msearch_depth\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43msearch_depth\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 221\u001b[0m \u001b[43m \u001b[49m\u001b[43mtopic\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mtopic\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 222\u001b[0m \u001b[43m \u001b[49m\u001b[43mdays\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mdays\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 223\u001b[0m \u001b[43m \u001b[49m\u001b[43mmax_results\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mmax_results\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 224\u001b[0m \u001b[43m \u001b[49m\u001b[43minclude_domains\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43minclude_domains\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 225\u001b[0m \u001b[43m \u001b[49m\u001b[43mexclude_domains\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mexclude_domains\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 226\u001b[0m \u001b[43m \u001b[49m\u001b[43minclude_raw_content\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43;01mFalse\u001b[39;49;00m\u001b[43m,\u001b[49m\n\u001b[0;32m 227\u001b[0m \u001b[43m \u001b[49m\u001b[43minclude_images\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43;01mFalse\u001b[39;49;00m\u001b[43m,\u001b[49m\n\u001b[0;32m 228\u001b[0m \u001b[43m \u001b[49m\u001b[43minclude_answer\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43;01mTrue\u001b[39;49;00m\u001b[43m,\u001b[49m\n\u001b[0;32m 229\u001b[0m \u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 230\u001b[0m \u001b[43m \u001b[49m\u001b[43m)\u001b[49m\n\u001b[0;32m 231\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m response_dict\u001b[38;5;241m.\u001b[39mget(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124manswer\u001b[39m\u001b[38;5;124m\"\u001b[39m, \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n",
|
||
"File \u001b[1;32mc:\\Users\\timmy_3aupohg\\anaconda3\\envs\\ai_env\\Lib\\site-packages\\tavily\\tavily.py:73\u001b[0m, in \u001b[0;36mTavilyClient._search\u001b[1;34m(self, query, search_depth, topic, days, max_results, include_domains, exclude_domains, include_answer, include_raw_content, include_images, **kwargs)\u001b[0m\n\u001b[0;32m 70\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m:\n\u001b[0;32m 71\u001b[0m \u001b[38;5;28;01mpass\u001b[39;00m\n\u001b[1;32m---> 73\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m UsageLimitExceededError(detail)\n\u001b[0;32m 74\u001b[0m \u001b[38;5;28;01melif\u001b[39;00m response\u001b[38;5;241m.\u001b[39mstatus_code \u001b[38;5;241m==\u001b[39m \u001b[38;5;241m401\u001b[39m:\n\u001b[0;32m 75\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m InvalidAPIKeyError()\n",
|
||
"\u001b[1;31mUsageLimitExceededError\u001b[0m: This request exceeds your plan's set usage limit. Please upgrade your plan or contact support@tavily.com"
|
||
]
|
||
}
|
||
],
|
||
"source": [
|
||
"instagram = socialmedia_details(social_media=\"Instagram\", influencer_name=\"Jennifer Mathews\", product_category=\"Beauty & skincare\")"
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": 68,
|
||
"metadata": {},
|
||
"outputs": [
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"{'Instagram': {'social_media_name': '@skincare_jen19', 'social_media_followers': '16.6 million'}}\n"
|
||
]
|
||
}
|
||
],
|
||
"source": [
|
||
"print(instagram)"
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": 22,
|
||
"metadata": {},
|
||
"outputs": [
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-10-25 22:09:34.132\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mTiktok name search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"What is the Tiktok username of Chriselle Lim, this person is a popular Beauty & skincare influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-10-25 22:09:41.528\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mTiktok followers search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"The Tiktok username of Chriselle Lim, a popular Beauty & skincare influencer, is @chrisellelim. She has 2.7 million followers on TikTok and is known for being the founder of PHLUR fragrance.\n",
|
||
"How many Tiktok followers does Chriselle Lim have? Note this is a Beauty & skincare popular influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-10-25 22:09:47.974\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Tiktok Data\u001b[0m\n",
|
||
"\u001b[32m2024-10-25 22:09:47.975\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Chriselle Lim has 2.7 million TikTok followers as of the latest available data.\n"
|
||
]
|
||
}
|
||
],
|
||
"source": [
|
||
"tiktok = socialmedia_details(social_media=\"Tiktok\", influencer_name=\"Chriselle Lim\", product_category=\"Beauty & skincare\")"
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": 70,
|
||
"metadata": {},
|
||
"outputs": [
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"{'Tiktok': {'social_media_name': '@jennifermathewssince93', 'social_media_followers': None}}\n"
|
||
]
|
||
}
|
||
],
|
||
"source": [
|
||
"print(tiktok)"
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": 71,
|
||
"metadata": {},
|
||
"outputs": [
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-10-25 00:05:04.964\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mcontact_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mcontact details search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"What is the contact details or email of Jennifer Matthews, this person is a popular Beauty & Skincare influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-10-25 00:05:11.384\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mcontact_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mLocation details search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Jennifer Matthews, a popular Beauty & Skincare influencer, can be contacted via email at [email protected] as indicated on the influence.co website.\n",
|
||
"What is the location of Jennifer Matthews, this person is a popular Beauty & Skincare influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-10-25 00:05:17.171\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mcontact_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer contact details\u001b[0m\n",
|
||
"\u001b[32m2024-10-25 00:05:17.173\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_contact\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Based on the available data, there is no information indicating the current location of Jennifer Matthews, who was a CIA officer known for her work in counterterrorism.\n"
|
||
]
|
||
}
|
||
],
|
||
"source": [
|
||
"contact = contact_details(influencer_name=\"Jennifer Matthews\", product_category=\"Beauty & Skincare\")"
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": 62,
|
||
"metadata": {},
|
||
"outputs": [
|
||
{
|
||
"data": {
|
||
"text/plain": [
|
||
"{'contact': {'emails': ['j***@oakland.edu',\n",
|
||
" 'j**@thebloc.com',\n",
|
||
" 'j***@thecementbond.com'],\n",
|
||
" 'phone_numbers': ['(248) XXX-XXXX', '(917) XXX-XXXX', '(707) 864-8774']},\n",
|
||
" 'location': None}"
|
||
]
|
||
},
|
||
"execution_count": 62,
|
||
"metadata": {},
|
||
"output_type": "execute_result"
|
||
}
|
||
],
|
||
"source": [
|
||
"\n",
|
||
"contact"
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": 9,
|
||
"metadata": {},
|
||
"outputs": [],
|
||
"source": [
|
||
"# creating a function to get all the influencer data\n",
|
||
"def influencer_data(influencer_name: str, product_category:str):\n",
|
||
" logger.info(\"Getting {influencer_name} social media data\")\n",
|
||
" facebook = socialmedia_details(social_media=\"Facebook\", influencer_name=influencer_name, product_category=product_category)\n",
|
||
" instagram = socialmedia_details(social_media=\"Instagram\", influencer_name=influencer_name, product_category=product_category)\n",
|
||
" tiktok = socialmedia_details(social_media=\"Tiktok\", influencer_name=influencer_name, product_category=product_category)\n",
|
||
" youtube = socialmedia_details(social_media=\"Youtube\", influencer_name=influencer_name, product_category=product_category)\n",
|
||
" contact_info = contact_details(influencer_name=influencer_name, product_category=product_category)\n",
|
||
" \n",
|
||
" response = { \n",
|
||
" \"name\": influencer_name,\n",
|
||
" \"facebook\": facebook, \n",
|
||
" \"instagram\": instagram, \n",
|
||
" \"tiktok\": tiktok, \n",
|
||
" \"youtube\": youtube, \n",
|
||
" \"contact\" : contact_info\n",
|
||
" }\n",
|
||
" \n",
|
||
" return json.dumps(response)"
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": 31,
|
||
"metadata": {},
|
||
"outputs": [
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-10-25 22:25:28.531\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36minfluencer_data\u001b[0m:\u001b[36m3\u001b[0m - \u001b[1mGetting {influencer_name} social media data\u001b[0m\n",
|
||
"\u001b[32m2024-10-25 22:25:28.534\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFacebook name search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"What is the Facebook username of Chriselle Lim, this person is a popular Beauty & Skincare influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-10-25 22:25:35.705\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mFacebook followers search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Chriselle Lim's Facebook username is ChriselleINC.\n",
|
||
"How many Facebook followers does Chriselle Lim have? Note this is a Beauty & Skincare popular influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-10-25 22:25:43.788\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Facebook Data\u001b[0m\n",
|
||
"\u001b[32m2024-10-25 22:25:43.789\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Based on the information available, Chriselle Lim has around 2.5 million followers across YouTube, Facebook, and Instagram.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-10-25 22:25:45.084\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mInstagram name search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"What is the Instagram username of Chriselle Lim, this person is a popular Beauty & Skincare influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-10-25 22:25:51.159\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mInstagram followers search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"chrisellelim is the Instagram username of Chriselle Lim, a popular Beauty & Skincare influencer, with 2M followers.\n",
|
||
"How many Instagram followers does Chriselle Lim have? Note this is a Beauty & Skincare popular influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-10-25 22:25:57.328\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Instagram Data\u001b[0m\n",
|
||
"\u001b[32m2024-10-25 22:25:57.329\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Chriselle Lim has 2 million Instagram followers as of the most recent data available.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-10-25 22:25:59.213\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mTiktok name search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"What is the Tiktok username of Chriselle Lim, this person is a popular Beauty & Skincare influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-10-25 22:26:05.991\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mTiktok followers search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"The TikTok username of Chriselle Lim, a popular Beauty & Skincare influencer, is @chrisellelim. She has a following of 2.7 million and is also the founder of PHLUR fragrance brand.\n",
|
||
"How many Tiktok followers does Chriselle Lim have? Note this is a Beauty & Skincare popular influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-10-25 22:26:12.322\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Tiktok Data\u001b[0m\n",
|
||
"\u001b[32m2024-10-25 22:26:12.323\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Chriselle Lim has 2.7 million followers on TikTok as of the most recent data available.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-10-25 22:26:13.997\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mYoutube name search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"What is the Youtube username of Chriselle Lim, this person is a popular Beauty & Skincare influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-10-25 22:26:20.202\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mYoutube followers search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"chrisellelim\n",
|
||
"How many Youtube followers does Chriselle Lim have? Note this is a Beauty & Skincare popular influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-10-25 22:26:27.353\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Youtube Data\u001b[0m\n",
|
||
"\u001b[32m2024-10-25 22:26:27.355\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Based on the information provided, Chriselle Lim has approximately 2.5 million followers across YouTube, Facebook, and Instagram as of the most recent data available.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-10-25 22:26:29.192\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mcontact_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mcontact details search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"What is the contact details or email of Chriselle Lim, this person is a popular Beauty & Skincare influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-10-25 22:26:40.019\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mcontact_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mLocation details search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Chriselle Lim's contact email for inquiries is hello@chriselleinc.com.\n",
|
||
"What is the location of Chriselle Lim, this person is a popular Beauty & Skincare influencer. Check for state and country.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-10-25 22:26:49.666\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mcontact_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer contact details\u001b[0m\n",
|
||
"\u001b[32m2024-10-25 22:26:49.666\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_contact\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Chriselle Lim is currently in Paris, France, as per the most recent data available.\n"
|
||
]
|
||
}
|
||
],
|
||
"source": [
|
||
"data = influencer_data(influencer_name=\"Chriselle Lim\", product_category=\"Beauty & Skincare\")"
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": 32,
|
||
"metadata": {},
|
||
"outputs": [
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"{\"name\": \"Chriselle Lim\", \"facebook\": {\"Facebook_name\": \"ChriselleINC\", \"Facebook_followers\": null}, \"instagram\": {\"Instagram_name\": \"chrisellelim\", \"Instagram_followers\": \"2M\"}, \"tiktok\": {\"influencer_tiktok_name\": \"@chrisellelim\", \"tiktok_followers\": \"2.7 million\"}, \"youtube\": {\"Youtube_name\": \"chrisellelim\", \"Youtube_followers\": null}, \"contact\": {\"contact\": \"hello@chriselleinc.com\", \"location\": \"Paris, France\"}}\n"
|
||
]
|
||
}
|
||
],
|
||
"source": [
|
||
"print(data)"
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": 22,
|
||
"metadata": {},
|
||
"outputs": [],
|
||
"source": [
|
||
"category = \"Entertainment & Pop Culture\""
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": 23,
|
||
"metadata": {},
|
||
"outputs": [],
|
||
"source": [
|
||
"\n",
|
||
"names =[\n",
|
||
" \"Cristiano Ronaldo\",\n",
|
||
" \"Selena Gomez\",\n",
|
||
" \"MrBeast (Jimmy Donaldson)\",\n",
|
||
" \"Leo Messi\",\n",
|
||
" \"Justin Bieber\",\n",
|
||
" \"Kylie Jenner\",\n",
|
||
" \"Dwayne Johnson\",\n",
|
||
" \"Taylor Swift\",\n",
|
||
" \"Ariana Grande\",\n",
|
||
" \"Kim Kardashian\",\n",
|
||
" \"Katy Perry\",\n",
|
||
" \"Beyonc\\u00e9\",\n",
|
||
" \"Khaby Lame\",\n",
|
||
" \"Kourtney Kardashian\",\n",
|
||
" \"Kevin Hart\",\n",
|
||
" \"Cardi B\",\n",
|
||
" \"Billie Eilish\",\n",
|
||
" \"Demi Lovato\",\n",
|
||
" \"Miley Cyrus\",\n",
|
||
" \"Charlie D\\u2019Amelio\",\n",
|
||
" \"Nicholas Stewart (Jynxzi)\",\n",
|
||
" \"Kai Cenat\",\n",
|
||
" \"Tarik Rahmi Celik (Tarik)\",\n",
|
||
" \"Hasan Piker (HasanAbi)\",\n",
|
||
" \"Juan Alberto Garc\\u00eda (IlloJuan)\",\n",
|
||
" \"Saqib Zahid (LIRIK)\",\n",
|
||
" \"Jaryd Russell Lazar (Summit1g)\",\n",
|
||
" \"Chikara \\u2018Shaka\\u2019 Kawakami (fps_shaka)\",\n",
|
||
" \"Sodapoppin (Chance Morris)\"\n",
|
||
" ]"
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": 24,
|
||
"metadata": {},
|
||
"outputs": [
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:16.435\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36minfluencer_data\u001b[0m:\u001b[36m3\u001b[0m - \u001b[1mGetting {influencer_name} social media data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:16.438\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFacebook name search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:16.441\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36minfluencer_data\u001b[0m:\u001b[36m3\u001b[0m - \u001b[1mGetting {influencer_name} social media data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:16.443\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFacebook name search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:16.443\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36minfluencer_data\u001b[0m:\u001b[36m3\u001b[0m - \u001b[1mGetting {influencer_name} social media data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:16.447\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36minfluencer_data\u001b[0m:\u001b[36m3\u001b[0m - \u001b[1mGetting {influencer_name} social media data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:16.449\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFacebook name search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:16.450\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36minfluencer_data\u001b[0m:\u001b[36m3\u001b[0m - \u001b[1mGetting {influencer_name} social media data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:16.452\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36minfluencer_data\u001b[0m:\u001b[36m3\u001b[0m - \u001b[1mGetting {influencer_name} social media data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:16.452\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFacebook name search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:16.454\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36minfluencer_data\u001b[0m:\u001b[36m3\u001b[0m - \u001b[1mGetting {influencer_name} social media data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:16.457\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFacebook name search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:16.459\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36minfluencer_data\u001b[0m:\u001b[36m3\u001b[0m - \u001b[1mGetting {influencer_name} social media data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:16.461\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFacebook name search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:16.463\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36minfluencer_data\u001b[0m:\u001b[36m3\u001b[0m - \u001b[1mGetting {influencer_name} social media data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:16.466\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36minfluencer_data\u001b[0m:\u001b[36m3\u001b[0m - \u001b[1mGetting {influencer_name} social media data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:16.467\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFacebook name search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:16.467\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36minfluencer_data\u001b[0m:\u001b[36m3\u001b[0m - \u001b[1mGetting {influencer_name} social media data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:16.470\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36minfluencer_data\u001b[0m:\u001b[36m3\u001b[0m - \u001b[1mGetting {influencer_name} social media data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:16.473\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36minfluencer_data\u001b[0m:\u001b[36m3\u001b[0m - \u001b[1mGetting {influencer_name} social media data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:16.475\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36minfluencer_data\u001b[0m:\u001b[36m3\u001b[0m - \u001b[1mGetting {influencer_name} social media data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:16.498\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36minfluencer_data\u001b[0m:\u001b[36m3\u001b[0m - \u001b[1mGetting {influencer_name} social media data\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"What is the Facebook username of Olivia J Owen, this person is a popular Parenting & Family influencer.\n",
|
||
"What is the Facebook username of Jo Frost, this person is a popular Parenting & Family influencer.\n",
|
||
"What is the Facebook username of Nataliia, this person is a popular Parenting & Family influencer.\n",
|
||
"What is the Facebook username of Kolter Bouchard, this person is a popular Parenting & Family influencer.\n",
|
||
"What is the Facebook username of Ashley Lewis, this person is a popular Parenting & Family influencer.\n",
|
||
"What is the Facebook username of Chinyelu, this person is a popular Parenting & Family influencer.\n",
|
||
"What is the Facebook username of Roland Hall, this person is a popular Parenting & Family influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:16.630\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFacebook name search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:16.506\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36minfluencer_data\u001b[0m:\u001b[36m3\u001b[0m - \u001b[1mGetting {influencer_name} social media data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:16.517\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFacebook name search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:16.521\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFacebook name search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:16.533\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFacebook name search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:16.550\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFacebook name search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:16.565\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFacebook name search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:16.586\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFacebook name search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:16.502\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFacebook name search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:16.649\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFacebook name search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"What is the Facebook username of ModernMom, this person is a popular Parenting & Family influencer.\n",
|
||
"What is the Facebook username of Paige Turner, this person is a popular Parenting & Family influencer.\n",
|
||
"What is the Facebook username of Brenden Guy, this person is a popular Parenting & Family influencer.\n",
|
||
"What is the Facebook username of Kylie, Scott, and Addi, this person is a popular Parenting & Family influencer.\n",
|
||
"What is the Facebook username of Janet Lansbury, this person is a popular Parenting & Family influencer.\n",
|
||
"What is the Facebook username of Honest Mum, this person is a popular Parenting & Family influencer.\n",
|
||
"What is the Facebook username of 24/7 Moms, this person is a popular Parenting & Family influencer.\n",
|
||
"What is the Facebook username of Rachel Samson, this person is a popular Parenting & Family influencer.\n",
|
||
"What is the Facebook username of CafeMom, this person is a popular Parenting & Family influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:20.860\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mFacebook followers search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:21.049\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mFacebook followers search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"CafeMom's Facebook username is @CafeMom.\n",
|
||
"How many Facebook followers does CafeMom have? Note this is a Parenting & Family popular influencer.\n",
|
||
"Based on the data provided, the Facebook username of Jo Frost, a popular Parenting & Family influencer, is \"NannyJoFrost.\"\n",
|
||
"How many Facebook followers does Jo Frost have? Note this is a Parenting & Family popular influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:21.306\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mFacebook followers search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:21.416\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mFacebook followers search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:21.469\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mFacebook followers search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Based on the available data, the Facebook username of Chinyelu, a popular Parenting & Family influencer, is \"Chinyelu Kunz.\"\n",
|
||
"How many Facebook followers does Chinyelu have? Note this is a Parenting & Family popular influencer.\n",
|
||
"Based on the data provided, the Facebook username of Honest Mum, a popular Parenting & Family influencer, is \"Thehonestmumblog.\"\n",
|
||
"How many Facebook followers does Honest Mum have? Note this is a Parenting & Family popular influencer.\n",
|
||
"The Facebook username for ModernMom, a popular Parenting & Family influencer, is not explicitly provided in the data sources provided.\n",
|
||
"How many Facebook followers does ModernMom have? Note this is a Parenting & Family popular influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:21.682\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mFacebook followers search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"The Facebook username of 24/7 Moms is \"247moms\".\n",
|
||
"How many Facebook followers does 24/7 Moms have? Note this is a Parenting & Family popular influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:22.059\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mFacebook followers search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:22.090\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mFacebook followers search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:22.123\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mFacebook followers search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:22.160\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mFacebook followers search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:22.194\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mFacebook followers search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:22.218\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mFacebook followers search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Based on the data provided, the Facebook username of Kolter Bouchard, a popular Parenting & Family influencer, is not explicitly mentioned. However, it can be inferred that the Facebook username might be \"kolter.bouchard.9\" based on the available information.\n",
|
||
"How many Facebook followers does Kolter Bouchard have? Note this is a Parenting & Family popular influencer.\n",
|
||
"The Facebook username of Roland Hall, a popular Parenting & Family influencer, is roland.hall.94064.\n",
|
||
"How many Facebook followers does Roland Hall have? Note this is a Parenting & Family popular influencer.\n",
|
||
"The Facebook username of Paige Turner, a popular Parenting & Family influencer, is @sheisapaigeturner.\n",
|
||
"How many Facebook followers does Paige Turner have? Note this is a Parenting & Family popular influencer.\n",
|
||
"Olivia J Owen's Facebook username is \"livjowen1\" as per her Facebook profile.\n",
|
||
"How many Facebook followers does Olivia J Owen have? Note this is a Parenting & Family popular influencer.\n",
|
||
"Based on the data provided, the Facebook username of Rachel Samson, a popular Parenting & Family influencer, is \"Rachel Samson\".\n",
|
||
"How many Facebook followers does Rachel Samson have? Note this is a Parenting & Family popular influencer.\n",
|
||
"Based on the provided data, the Facebook username of Ashley Lewis, a popular Parenting & Family influencer, is likely \"ashweelewis.\"\n",
|
||
"How many Facebook followers does Ashley Lewis have? Note this is a Parenting & Family popular influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:22.312\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mFacebook followers search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:22.496\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mFacebook followers search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"The Facebook username of Brenden Guy, a popular Parenting & Family influencer, is \"brenden.guy\".\n",
|
||
"How many Facebook followers does Brenden Guy have? Note this is a Parenting & Family popular influencer.\n",
|
||
"Based on the provided data, there are multiple Facebook profiles associated with the name Nataliia, but none specifically identified as a popular Parenting & Family influencer. Therefore, there is no conclusive information available regarding the Facebook username of Nataliia, the popular Parenting & Family influencer.\n",
|
||
"How many Facebook followers does Nataliia have? Note this is a Parenting & Family popular influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:22.849\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mFacebook followers search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"The Facebook username of Janet Lansbury, a popular Parenting & Family influencer, is @janetlansbury.\n",
|
||
"How many Facebook followers does Janet Lansbury have? Note this is a Parenting & Family popular influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:23.275\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mFacebook followers search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Unfortunately, based on the provided data, the Facebook usernames of Kylie, Scott, and Addi, the popular Parenting & Family influencer, could not be determined.\n",
|
||
"How many Facebook followers does Kylie, Scott, and Addi have? Note this is a Parenting & Family popular influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:25.913\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Facebook Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:25.916\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Answer: CafeMom has 395,090 Facebook followers as of the latest available data.\n",
|
||
"Based on the data provided, Jo Frost has 375,823 Facebook followers as of the most recent update.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:26.097\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Facebook Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:26.100\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:26.674\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Facebook Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:26.675\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:26.880\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Facebook Data\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Based on the data provided, Honest Mum has 46,772 Facebook likes on her Facebook page as of the most recent information available.\n",
|
||
"Based on the most recent data available, 24/7 MOMS has 829,735 Facebook followers.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:26.882\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:27.124\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mInstagram name search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:27.301\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Facebook Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:27.303\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:27.307\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Facebook Data\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"What is the Instagram username of CafeMom, this person is a popular Parenting & Family influencer.\n",
|
||
"Olivia J Owen has 40 likes on her Facebook page as of the most recent data available.\n",
|
||
"Based on the data provided, there is no specific information available about the number of Facebook followers Chinyelu, the Parenting & Family popular influencer, has. The sources mainly contain information about various individuals with the name Chinyelu, but not the specific influencer in question.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:27.309\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:27.354\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mInstagram name search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:27.401\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Facebook Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:27.401\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:27.523\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Facebook Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:27.531\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"What is the Instagram username of Jo Frost, this person is a popular Parenting & Family influencer.\n",
|
||
"Based on the available data, there is no specific information provided regarding the number of Facebook followers Kolter Bouchard has.\n",
|
||
"Based on the available data, Rachel Samson's Facebook followers count is not explicitly mentioned.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:27.711\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Facebook Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:27.713\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:27.815\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Facebook Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:27.816\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:27.838\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Facebook Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:27.839\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:27.863\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Facebook Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:27.870\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Based on the most recent data available, Paige Turner has 42,388 Facebook followers as of the most recent update.\n",
|
||
"Based on the available data, Nataliia has 613,000 likes on Facebook as of the most recent information.\n",
|
||
"ModernMom has 67,197 Facebook followers.\n",
|
||
"The popular Parenting & Family influencer Brenden Guy has 2,667 likes on his official Facebook page as of the latest available data.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:27.912\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mInstagram name search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:27.939\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Facebook Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:27.943\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"What is the Instagram username of Honest Mum, this person is a popular Parenting & Family influencer.\n",
|
||
"Based on the available data, Ashley Lewis has 2,879 likes on her Facebook page as of the most recent information gathered.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:28.126\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mInstagram name search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:28.247\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mInstagram name search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:28.335\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mInstagram name search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"What is the Instagram username of 24/7 Moms, this person is a popular Parenting & Family influencer.\n",
|
||
"What is the Instagram username of Olivia J Owen, this person is a popular Parenting & Family influencer.\n",
|
||
"What is the Instagram username of Chinyelu, this person is a popular Parenting & Family influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:28.648\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mInstagram name search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:28.790\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mInstagram name search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"What is the Instagram username of Kolter Bouchard, this person is a popular Parenting & Family influencer.\n",
|
||
"What is the Instagram username of Rachel Samson, this person is a popular Parenting & Family influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:29.001\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mInstagram name search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:29.027\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mInstagram name search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:29.045\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mInstagram name search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:29.113\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mInstagram name search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"What is the Instagram username of Ashley Lewis, this person is a popular Parenting & Family influencer.\n",
|
||
"What is the Instagram username of Nataliia, this person is a popular Parenting & Family influencer.\n",
|
||
"What is the Instagram username of Paige Turner, this person is a popular Parenting & Family influencer.\n",
|
||
"What is the Instagram username of Brenden Guy, this person is a popular Parenting & Family influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:29.458\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Facebook Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:29.462\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:29.615\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mInstagram name search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Janet Lansbury has 585,705 Facebook followers.\n",
|
||
"What is the Instagram username of ModernMom, this person is a popular Parenting & Family influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:29.718\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Facebook Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:29.721\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Kylie Scott has 40K followers on Instagram. There is no specific information available about the Facebook followers of Kylie Scott. Addie McCracken, another parenting and family influencer, has more than 2.4 million followers on a platform, which is likely TikTok based on the context provided. Unfortunately, there is no data available on the Facebook followers of Addie.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:30.215\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Facebook Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:30.220\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Based on the information available, Roland Hall has over 140,000 Facebook followers.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:30.482\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mInstagram name search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:30.592\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mInstagram name search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"What is the Instagram username of Janet Lansbury, this person is a popular Parenting & Family influencer.\n",
|
||
"What is the Instagram username of Kylie, Scott, and Addi, this person is a popular Parenting & Family influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:31.179\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mInstagram name search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"What is the Instagram username of Roland Hall, this person is a popular Parenting & Family influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:31.533\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mInstagram followers search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"The Instagram username of CafeMom, a popular Parenting & Family influencer, is \"cafemomofficial.\"\n",
|
||
"How many Instagram followers does CafeMom have? Note this is a Parenting & Family popular influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:31.977\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mInstagram followers search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Instagram username of Jo Frost, a popular Parenting & Family influencer, is @jofrost.\n",
|
||
"How many Instagram followers does Jo Frost have? Note this is a Parenting & Family popular influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:32.675\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mInstagram followers search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"24/7 MOMS, a popular Parenting & Family influencer, does not have an Instagram account based on the available data.\n",
|
||
"How many Instagram followers does 24/7 Moms have? Note this is a Parenting & Family popular influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:33.150\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mInstagram followers search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Based on the provided data, the Instagram username of Chinyelu, a popular Parenting & Family influencer, is \"we_nurture.\" This information was last updated on February 5, 2021.\n",
|
||
"How many Instagram followers does Chinyelu have? Note this is a Parenting & Family popular influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:33.515\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mInstagram followers search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:33.667\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mInstagram followers search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"livjowen\n",
|
||
"How many Instagram followers does Olivia J Owen have? Note this is a Parenting & Family popular influencer.\n",
|
||
"@the_honest_mum_ is the Instagram username of Honest Mum, a popular Parenting & Family influencer.\n",
|
||
"How many Instagram followers does Honest Mum have? Note this is a Parenting & Family popular influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:33.789\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mInstagram followers search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:33.904\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mInstagram followers search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"koltertalks\n",
|
||
"How many Instagram followers does Kolter Bouchard have? Note this is a Parenting & Family popular influencer.\n",
|
||
"The Instagram username of the popular Parenting & Family influencer Nataliia is @nataliia_walker. She currently has 47K followers on Instagram.\n",
|
||
"How many Instagram followers does Nataliia have? Note this is a Parenting & Family popular influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:34.021\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mInstagram followers search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:34.185\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mInstagram followers search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"The Instagram username of ModernMom, a popular Parenting & Family influencer, is @modernmomlounge.\n",
|
||
"How many Instagram followers does ModernMom have? Note this is a Parenting & Family popular influencer.\n",
|
||
"Based on the data provided, the Instagram username of the popular Parenting & Family influencer Ashley Lewis is @lewisempire6.\n",
|
||
"How many Instagram followers does Ashley Lewis have? Note this is a Parenting & Family popular influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:34.698\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mInstagram followers search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:34.823\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mInstagram followers search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"The Instagram username of Brenden Guy, a popular Parenting & Family influencer, is @brendenandellie. He has 139K followers on Instagram and creates relatable parent content for moms and dads.\n",
|
||
"How many Instagram followers does Brenden Guy have? Note this is a Parenting & Family popular influencer.\n",
|
||
"The Instagram username of Rachel Samson, a popular Parenting & Family influencer, is @stickaforkinme with 459K followers.\n",
|
||
"How many Instagram followers does Rachel Samson have? Note this is a Parenting & Family popular influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:34.992\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mInstagram followers search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Answer: The Instagram username of the popular Parenting & Family influencer Paige Turner is @sheisapaigeturner. She has 163K followers and shares content about parenting, childcare, and the mental load.\n",
|
||
"How many Instagram followers does Paige Turner have? Note this is a Parenting & Family popular influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:35.653\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mInstagram followers search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:35.809\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mInstagram followers search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"janetlansbury.\n",
|
||
"How many Instagram followers does Janet Lansbury have? Note this is a Parenting & Family popular influencer.\n",
|
||
"The Instagram username of Kylie, Scott, and Addi, who are popular Parenting & Family influencers, is @lovehardtraveloften.\n",
|
||
"How many Instagram followers does Kylie, Scott, and Addi have? Note this is a Parenting & Family popular influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:36.643\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Instagram Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:36.647\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"CafeMom has 40K followers on Instagram as of the most recent data available.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:37.044\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mInstagram followers search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"The Instagram username of Roland Hall, a popular Parenting & Family influencer, is @rolandhall. He has 143.1K followers on Instagram and describes himself as a Dad Of Two, involved in co-parenting, family lifestyle, and travel.\n",
|
||
"How many Instagram followers does Roland Hall have? Note this is a Parenting & Family popular influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:37.835\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mTiktok name search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"What is the Tiktok username of CafeMom, this person is a popular Parenting & Family influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:38.134\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Instagram Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:38.136\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:38.212\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Instagram Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:38.213\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Jo Frost (@jofrost) has 122.4K Instagram followers as of the most recent data available.\n",
|
||
"24/7 Moms has 113K Instagram followers as of the most recent data available.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:38.515\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Instagram Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:38.516\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Chinyelu, the Parenting & Family influencer, has 185K Instagram followers as of the most recent data available.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:38.826\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Instagram Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:38.827\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Olivia J Owen has 714K followers on Instagram as of 04/11/2024.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:39.035\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Instagram Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:39.036\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:39.099\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Instagram Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:39.101\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:39.112\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Instagram Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:39.115\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:39.153\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Instagram Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:39.157\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Nataliia, a popular Parenting & Family influencer, has 414K Instagram followers as of the most recent data available.\n",
|
||
"Kolter Bouchard has 343K Instagram followers as of April 11, 2024.\n",
|
||
"ModernMom has 9,769 followers on Instagram as of the most recent data available.\n",
|
||
"Based on the most recent data available, Honest Mum, also known as Vicki Broadbent, has 113K followers on Instagram as of October 9, 2024.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:39.494\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mTiktok name search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:39.664\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mTiktok name search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"What is the Tiktok username of 24/7 Moms, this person is a popular Parenting & Family influencer.\n",
|
||
"What is the Tiktok username of Jo Frost, this person is a popular Parenting & Family influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:39.791\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mTiktok name search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"What is the Tiktok username of Chinyelu, this person is a popular Parenting & Family influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:40.262\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Instagram Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:40.265\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:40.271\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mTiktok name search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:40.302\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mTiktok name search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:40.385\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mTiktok name search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Rachel Samson, a popular Parenting & Family influencer, has 145K Instagram followers as of the most recent data available.\n",
|
||
"What is the Tiktok username of Olivia J Owen, this person is a popular Parenting & Family influencer.\n",
|
||
"What is the Tiktok username of Kolter Bouchard, this person is a popular Parenting & Family influencer.\n",
|
||
"What is the Tiktok username of Nataliia, this person is a popular Parenting & Family influencer.\n",
|
||
"Brenden Guy, a popular Parenting & Family influencer, has approximately 142.3K Instagram followers as of the most recent data available.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:40.457\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Instagram Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:40.464\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:40.509\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mTiktok name search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"What is the Tiktok username of Honest Mum, this person is a popular Parenting & Family influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:40.790\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mTiktok name search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:40.868\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Instagram Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:40.871\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"What is the Tiktok username of ModernMom, this person is a popular Parenting & Family influencer.\n",
|
||
"394K\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:41.096\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Instagram Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:41.099\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:41.216\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Instagram Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:41.216\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:41.236\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mTiktok name search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"According to the most recent data available, Paige Turner has 163K followers on Instagram.\n",
|
||
"Kylie, Scott, and Addi, a popular parenting and family influencer, have 40K followers on their Instagram account \"lovehardtraveloften\".\n",
|
||
"What is the Tiktok username of Rachel Samson, this person is a popular Parenting & Family influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:41.476\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mTiktok name search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"What is the Tiktok username of Brenden Guy, this person is a popular Parenting & Family influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:41.796\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mTiktok name search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:41.832\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Instagram Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:41.834\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"What is the Tiktok username of Janet Lansbury, this person is a popular Parenting & Family influencer.\n",
|
||
"The Instagram account of Roland Hall, a popular Parenting & Family influencer, currently has 150K followers.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:42.166\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mTiktok followers search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:42.198\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mTiktok name search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"The TikTok username of CafeMom, a popular Parenting & Family influencer, is @cafemom6.\n",
|
||
"How many Tiktok followers does CafeMom have? Note this is a Parenting & Family popular influencer.\n",
|
||
"What is the Tiktok username of Kylie, Scott, and Addi, this person is a popular Parenting & Family influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:42.477\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mTiktok name search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"What is the Tiktok username of Paige Turner, this person is a popular Parenting & Family influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:42.948\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mTiktok name search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"What is the Tiktok username of Roland Hall, this person is a popular Parenting & Family influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:43.165\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Instagram Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:43.167\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Ashley Lewis, a popular Parenting & Family influencer, currently has 249K followers on Instagram as of the most recent data available.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:43.744\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mTiktok followers search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Based on the data provided, the TikTok username of the popular Parenting & Family influencer known as 24/7 Moms is @muddlethroughmummy.\n",
|
||
"How many Tiktok followers does 24/7 Moms have? Note this is a Parenting & Family popular influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:44.077\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mTiktok followers search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:44.110\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mTiktok name search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"@jofrost is the TikTok username of Jo Frost, a popular Parenting & Family influencer. She has 3,281 followers on TikTok and describes herself as a Global Parenting Expert.\n",
|
||
"How many Tiktok followers does Jo Frost have? Note this is a Parenting & Family popular influencer.\n",
|
||
"What is the Tiktok username of Ashley Lewis, this person is a popular Parenting & Family influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:44.734\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mTiktok followers search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:44.866\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mTiktok followers search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:44.899\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mTiktok followers search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"The TikTok username of the popular Parenting & Family influencer Chinyelu is @chinforshort. Chinyelu has 544.4K followers and 23.4M likes on TikTok.\n",
|
||
"How many Tiktok followers does Chinyelu have? Note this is a Parenting & Family popular influencer.\n",
|
||
"The Tiktok username of Honest Mum, a popular Parenting & Family influencer, is @the_honest_mum.\n",
|
||
"How many Tiktok followers does Honest Mum have? Note this is a Parenting & Family popular influencer.\n",
|
||
"Answer: The Tiktok username of Nataliia, a popular Parenting & Family influencer, is @nataliia_92_official. She has 518.8K followers and 2.7M likes on TikTok.\n",
|
||
"How many Tiktok followers does Nataliia have? Note this is a Parenting & Family popular influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:44.966\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mTiktok followers search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"The TikTok username of the popular Parenting & Family influencer ModernMom is @the_modernmom.\n",
|
||
"How many Tiktok followers does ModernMom have? Note this is a Parenting & Family popular influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:45.391\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mTiktok followers search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:45.493\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mTiktok followers search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"The TikTok username of Olivia J Owen, a popular Parenting & Family influencer, is \"livjowen.\"\n",
|
||
"How many Tiktok followers does Olivia J Owen have? Note this is a Parenting & Family popular influencer.\n",
|
||
"The TikTok username of Kolter Bouchard, a popular Parenting & Family influencer, is @koltertalks.\n",
|
||
"How many Tiktok followers does Kolter Bouchard have? Note this is a Parenting & Family popular influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:46.102\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mTiktok followers search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Brenden Guy's Tiktok username is @brendenandellie.\n",
|
||
"How many Tiktok followers does Brenden Guy have? Note this is a Parenting & Family popular influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:46.366\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Tiktok Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:46.368\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:46.385\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mTiktok followers search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:46.507\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mTiktok followers search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"CafeMom, a popular influencer in the Parenting & Family niche, has not been specifically mentioned in the provided data sources regarding their TikTok follower count.\n",
|
||
"The TikTok username of Rachel Samson, a popular Parenting & Family influencer, is @stickaforkinme.\n",
|
||
"How many Tiktok followers does Rachel Samson have? Note this is a Parenting & Family popular influencer.\n",
|
||
"@janetlansbury\n",
|
||
"How many Tiktok followers does Janet Lansbury have? Note this is a Parenting & Family popular influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:46.796\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mTiktok followers search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"The TikTok username of Paige Turner, a popular Parenting & Family influencer, is @sheisapaigeturner.\n",
|
||
"How many Tiktok followers does Paige Turner have? Note this is a Parenting & Family popular influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:47.357\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mTiktok followers search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:47.369\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mYoutube name search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"The TikTok username of Roland Hall, a popular Parenting & Family influencer, is @rolandhall6.\n",
|
||
"How many Tiktok followers does Roland Hall have? Note this is a Parenting & Family popular influencer.\n",
|
||
"What is the Youtube username of CafeMom, this person is a popular Parenting & Family influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:47.819\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mTiktok followers search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"The Tiktok username of Kylie, Scott, and Addi, a popular Parenting & Family influencer, is @dearkyliescott.\n",
|
||
"How many Tiktok followers does Kylie, Scott, and Addi have? Note this is a Parenting & Family popular influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:48.283\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Tiktok Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:48.285\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:48.381\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Tiktok Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:48.385\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Based on the available data, the TikTok account 24/7 Moms is not specifically mentioned in the provided sources. Therefore, the exact number of TikTok followers for 24/7 Moms is not available in the provided information.\n",
|
||
"Jo Frost, a popular Parenting & Family influencer, has just under 100,000 followers on TikTok as of the most recent data available.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:49.217\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mTiktok followers search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:49.268\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mYoutube name search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"The Tiktok username of Ashley Lewis, a popular Parenting & Family influencer, is @ashleylewis66.\n",
|
||
"How many Tiktok followers does Ashley Lewis have? Note this is a Parenting & Family popular influencer.\n",
|
||
"What is the Youtube username of 24/7 Moms, this person is a popular Parenting & Family influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:49.490\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Tiktok Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:49.493\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:49.632\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Tiktok Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:49.635\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"ModernMom, a popular Parenting & Family influencer on TikTok, has 0 followers based on the available data sources.\n",
|
||
"Chinyelu, a popular Parenting & Family influencer on TikTok, has 7.5K followers as of the latest available data.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:49.932\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Tiktok Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:49.934\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:50.045\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Tiktok Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:50.049\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Honest Mum has 11K followers on TikTok as of the latest available data.\n",
|
||
"Based on the available data, it is not possible to provide the exact number of TikTok followers Nataliia has as there is no specific information or source that directly mentions the follower count of this particular influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:50.253\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mYoutube name search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"What is the Youtube username of Jo Frost, this person is a popular Parenting & Family influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:50.516\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Tiktok Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:50.517\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:50.570\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mYoutube name search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:50.581\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Tiktok Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:50.587\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Olivia J Owen has 379.9K followers on TikTok.\n",
|
||
"What is the Youtube username of ModernMom, this person is a popular Parenting & Family influencer.\n",
|
||
"Kolter Bouchard (@koltertalks) has 812.9K followers on TikTok as of the most recent data available.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:50.912\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mYoutube name search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"What is the Youtube username of Chinyelu, this person is a popular Parenting & Family influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:51.236\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Tiktok Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:51.237\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Brenden Guy, a popular influencer in the Parenting & Family niche, has 178.4K followers on TikTok as of the most recent data available.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:51.423\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mYoutube name search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:51.513\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mYoutube name search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:51.561\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mYoutube name search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:51.571\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Tiktok Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:51.574\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"What is the Youtube username of Nataliia, this person is a popular Parenting & Family influencer.\n",
|
||
"What is the Youtube username of Olivia J Owen, this person is a popular Parenting & Family influencer.\n",
|
||
"What is the Youtube username of Kolter Bouchard, this person is a popular Parenting & Family influencer.\n",
|
||
"Rachel Samson has 160.5K followers on TikTok.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:51.738\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Tiktok Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:51.740\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:51.806\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mYoutube name search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Janet Lansbury has 11.7K followers on TikTok as of the most recent data available.\n",
|
||
"What is the Youtube username of Honest Mum, this person is a popular Parenting & Family influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:52.120\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Tiktok Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:52.123\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:52.199\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mYoutube name search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Based on the data provided, Paige Turner, a popular Parenting & Family influencer on TikTok, has 225.3K followers.\n",
|
||
"What is the Youtube username of Brenden Guy, this person is a popular Parenting & Family influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:52.335\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mYoutube followers search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"The Youtube username of CafeMom, a popular Parenting & Family influencer, is CafeMomStudios.\n",
|
||
"How many Youtube followers does CafeMom have? Note this is a Parenting & Family popular influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:52.523\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mYoutube name search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:52.699\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Tiktok Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:52.701\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:52.710\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Tiktok Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:52.712\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"What is the Youtube username of Rachel Samson, this person is a popular Parenting & Family influencer.\n",
|
||
"Based on the most recent data, Roland Hall, a popular Parenting & Family influencer, has 404.8K followers on TikTok as of the latest update.\n",
|
||
"Kylie Scott has 64.2K followers on TikTok.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:52.805\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mYoutube name search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"What is the Youtube username of Janet Lansbury, this person is a popular Parenting & Family influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:53.186\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mYoutube name search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"What is the Youtube username of Paige Turner, this person is a popular Parenting & Family influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:53.632\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mYoutube name search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:53.646\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mYoutube followers search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"What is the Youtube username of Roland Hall, this person is a popular Parenting & Family influencer.\n",
|
||
"The Youtube username of 24/7 Moms is 24/7 MOMS - Trisha Novotny, with the handle @247moms.\n",
|
||
"How many Youtube followers does 24/7 Moms have? Note this is a Parenting & Family popular influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:54.194\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mYoutube name search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:54.374\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Tiktok Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:54.377\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"What is the Youtube username of Kylie, Scott, and Addi, this person is a popular Parenting & Family influencer.\n",
|
||
"Ashley Lewis, a popular Parenting & Family influencer on TikTok, has 54.2K followers as of now.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:54.860\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mYoutube followers search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:54.865\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mYoutube followers search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Based on the data provided, Jo Frost's Youtube username is not explicitly mentioned in any of the sources. Therefore, the specific Youtube username of Jo Frost, the popular Parenting & Family influencer, could not be determined from the given information.The Youtube username of ModernMom, a popular Parenting & Family influencer, is \"ModernMom.\"\n",
|
||
"\n",
|
||
"How many Youtube followers does ModernMom have? Note this is a Parenting & Family popular influencer.\n",
|
||
"How many Youtube followers does Jo Frost have? Note this is a Parenting & Family popular influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:55.385\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mYoutube followers search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:55.429\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mYoutube name search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Based on the data provided, the Youtube username of the popular Parenting & Family influencer Chinyelu is @JessicaChinyelu.\n",
|
||
"How many Youtube followers does Chinyelu have? Note this is a Parenting & Family popular influencer.\n",
|
||
"What is the Youtube username of Ashley Lewis, this person is a popular Parenting & Family influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:56.282\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mYoutube followers search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"The YouTube username of Honest Mum, a popular Parenting & Family influencer, is Honest Mom.\n",
|
||
"How many Youtube followers does Honest Mum have? Note this is a Parenting & Family popular influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:56.745\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Youtube Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:56.747\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:56.802\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mYoutube followers search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"As of the most recent data available, CafeMom has 6,946 followers on YouTube.\n",
|
||
"The Youtube username of Nataliia, a popular Parenting & Family influencer, is \"Natalia__Taylor\".\n",
|
||
"How many Youtube followers does Nataliia have? Note this is a Parenting & Family popular influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:57.261\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mYoutube followers search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"The Youtube username of Olivia J Owen, a popular Parenting & Family influencer, is \"livjowen.\"\n",
|
||
"How many Youtube followers does Olivia J Owen have? Note this is a Parenting & Family popular influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:57.601\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mYoutube followers search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:57.732\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mcontact_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mcontact details search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"The Youtube username of Brenden Guy, a popular Parenting & Family influencer, is @brendenandellie.\n",
|
||
"How many Youtube followers does Brenden Guy have? Note this is a Parenting & Family popular influencer.\n",
|
||
"What is the contact details or email of CafeMom, this person is a popular Parenting & Family influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:57.843\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mYoutube followers search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:57.844\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mYoutube followers search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"The Youtube username of Rachel Samson, a popular Parenting & Family influencer, is \"RacheL Pinay Mommy youtuber Philippines.\"Based on the provided data, the Youtube username of Janet Lansbury, a popular Parenting & Family influencer, is \"Janet Lansbury.\"\n",
|
||
"\n",
|
||
"How many Youtube followers does Janet Lansbury have? Note this is a Parenting & Family popular influencer.\n",
|
||
"How many Youtube followers does Rachel Samson have? Note this is a Parenting & Family popular influencer.\n",
|
||
"The Youtube username of Roland Hall, a popular Parenting & Family influencer, is \"The3Halls\".\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:58.025\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mYoutube followers search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"How many Youtube followers does Roland Hall have? Note this is a Parenting & Family popular influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:58.375\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mYoutube followers search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:58.561\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Youtube Data\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"sheisapaigeturner\n",
|
||
"How many Youtube followers does Paige Turner have? Note this is a Parenting & Family popular influencer.\n",
|
||
"24/7 Moms has a YouTube channel with the username \"247momslive.\" The channel currently has no public subscriber count available.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:39:58.562\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:59.482\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Youtube Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:59.486\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:39:59.512\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mcontact_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mcontact details search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Based on the available data, Jo Frost, a popular Parenting & Family influencer, has 604K followers on Instagram. There is no specific information provided regarding her YouTube followers in the given data sources.\n",
|
||
"What is the contact details or email of 24/7 Moms, this person is a popular Parenting & Family influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:40:00.085\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mYoutube followers search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:00.085\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Youtube Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:00.089\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:00.217\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Youtube Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:00.219\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:00.284\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mYoutube followers search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Chinyelu has 15.9K subscribers on YouTube as of the most recent data available.The Youtube username of Ashley Lewis, a popular Parenting & Family influencer, is @AshleyLewis.\n",
|
||
"\n",
|
||
"How many Youtube followers does Ashley Lewis have? Note this is a Parenting & Family popular influencer.\n",
|
||
"Based on the information provided, there is no specific data available on the exact number of YouTube followers that ModernMom currently has.\n",
|
||
"Based on the data provided, the Youtube username of Kylie, Scott, and Addi, a popular Parenting & Family influencer, is not explicitly mentioned in the sources. The information mainly focuses on Kylie Jenner and Travis Scott as co-parents to their daughter, Stormi. It appears that the query does not match the content of the sources provided.\n",
|
||
"How many Youtube followers does Kylie, Scott, and Addi have? Note this is a Parenting & Family popular influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:40:00.635\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mcontact_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mcontact details search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"What is the contact details or email of Jo Frost, this person is a popular Parenting & Family influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:40:01.075\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mcontact_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mcontact details search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:01.163\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Youtube Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:01.166\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:01.178\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Youtube Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:01.180\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"What is the contact details or email of Chinyelu, this person is a popular Parenting & Family influencer.\n",
|
||
"Honest Mum, a popular Parenting & Family influencer, has 4.1K YouTube subscribers as of the latest available data.\n",
|
||
"Nataliia has 390K subscribers on YouTube as of the most recent data available.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:40:01.790\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mcontact_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mcontact details search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"What is the contact details or email of ModernMom, this person is a popular Parenting & Family influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:40:02.187\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mcontact_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mcontact details search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:02.345\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mYoutube followers search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:02.406\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mcontact_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mcontact details search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"What is the contact details or email of Nataliia, this person is a popular Parenting & Family influencer.\n",
|
||
"Unfortunately, there is no available data to provide the Youtube username of Kolter Bouchard, the popular Parenting & Family influencer.\n",
|
||
"How many Youtube followers does Kolter Bouchard have? Note this is a Parenting & Family popular influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:40:02.439\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Youtube Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:02.439\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"What is the contact details or email of Honest Mum, this person is a popular Parenting & Family influencer.\n",
|
||
"Olivia J Owen has more than 600,000 followers on YouTube as of the most recent data available.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:40:03.265\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Youtube Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:03.265\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:03.316\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Youtube Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:03.316\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:03.350\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Youtube Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:03.357\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Roland Hall has over 320,000 subscribers on his YouTube channel, The3Halls, as of the most recent data available.\n",
|
||
"Paige Turner has not specified the exact number of YouTube followers she has on her channel.\n",
|
||
"Janet Lansbury has 393K followers on Instagram, but the data provided does not specify the number of YouTube followers she has.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:40:03.460\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mcontact_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mcontact details search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"What is the contact details or email of Olivia J Owen, this person is a popular Parenting & Family influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:40:03.835\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mcontact_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mLocation details search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:04.025\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Youtube Data\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"CafeMom's contact details are as follows:\n",
|
||
"- Address: 417 5th Ave 7th Floor, New York, New York 10016, US\n",
|
||
"- Phone: (646) 435-6500\n",
|
||
"\n",
|
||
"Unfortunately, the specific email address of CafeMom is not provided in the available data sources.\n",
|
||
"What is the location of CafeMom, this person is a popular Parenting & Family influencer. Check for state and country.\n",
|
||
"Based on the available data, Rachel Samson has 177k YouTube subscribers.\n",
|
||
"Brenden Guy, a popular Parenting & Family influencer, has the following number of followers on different platforms:\n",
|
||
"\n",
|
||
"1. TikTok: 178.4K followers\n",
|
||
"2. Instagram: 139K followers\n",
|
||
"3. Facebook: Likes are not specifically mentioned, but a video on Facebook has 11M views\n",
|
||
"\n",
|
||
"Therefore, combining the data from TikTok, Instagram, and Facebook, Brenden Guy has a total of approximately 328.4K followers across these platforms.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:40:04.025\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Youtube Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:04.030\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:04.035\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:04.284\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mcontact_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mcontact details search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:04.297\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mcontact_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mcontact details search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"What is the contact details or email of Roland Hall, this person is a popular Parenting & Family influencer.\n",
|
||
"What is the contact details or email of Paige Turner, this person is a popular Parenting & Family influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:40:04.756\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mcontact_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mcontact details search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"What is the contact details or email of Janet Lansbury, this person is a popular Parenting & Family influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:40:04.965\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mcontact_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mcontact details search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:05.135\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mcontact_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mLocation details search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"What is the contact details or email of Brenden Guy, this person is a popular Parenting & Family influencer.\n",
|
||
"24/7 Moms can be contacted through their website at 247moms.com. They have a contact form available on their website where you can reach out to them, and they aim to respond within 48 hours.\n",
|
||
"What is the location of 24/7 Moms, this person is a popular Parenting & Family influencer. Check for state and country.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:40:05.997\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Youtube Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:05.997\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:06.015\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mcontact_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mcontact details search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:06.108\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Youtube Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:06.108\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Ashley Lewis does not have a specified number of YouTube followers available in the provided data sources as of the current date and time.\n",
|
||
"What is the contact details or email of Rachel Samson, this person is a popular Parenting & Family influencer.\n",
|
||
"Kylie, Scott, and Addi do not have a YouTube channel or presence based on the provided data.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:40:06.728\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mcontact_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mLocation details search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Based on the provided data, the contact details for Jo Frost, the popular Parenting & Family influencer, can be reached via email at familymatters@itv.com or by telephone at 09011 223344. These contact details are specified for inquiries related to Jo Frost's show \"Jo Frost Family Matters\" commissioned by UK's ITV Daytime.\n",
|
||
"What is the location of Jo Frost, this person is a popular Parenting & Family influencer. Check for state and country.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:40:06.935\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mcontact_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mcontact details search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:07.060\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mcontact_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mcontact details search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"What is the contact details or email of Kylie, Scott, and Addi, this person is a popular Parenting & Family influencer.\n",
|
||
"What is the contact details or email of Ashley Lewis, this person is a popular Parenting & Family influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:40:07.307\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mcontact_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mLocation details search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:07.434\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mcontact_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mLocation details search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:07.435\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Youtube Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:07.437\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Based on the provided data, Chinyelu is associated with various parenting and family-related activities, including being the founder of We Nurture and a Waldorf Inspired Parenting influencer. However, there is no specific contact details or email address available for Chinyelu in the provided information. It is recommended to visit her official website or social media profiles for updated contact information.\n",
|
||
"What is the location of Chinyelu, this person is a popular Parenting & Family influencer. Check for state and country.\n",
|
||
"The contact details for ModernMom, a popular Parenting & Family influencer, can be found on their official website. You can fill out a form on their website for any questions or requests you may have.\n",
|
||
"812.9K YouTube followers\n",
|
||
"What is the location of ModernMom, this person is a popular Parenting & Family influencer. Check for state and country.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:40:07.895\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mcontact_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mLocation details search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Based on the information provided, Nataliia Gotsii's email address for collaborations is nataliia.sahm@gmail.com.\n",
|
||
"What is the location of Nataliia, this person is a popular Parenting & Family influencer. Check for state and country.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:40:08.125\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mcontact_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mLocation details search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"The contact email for Honest Mum, a popular Parenting & Family influencer, is mum@honestmum.com.\n",
|
||
"What is the location of Honest Mum, this person is a popular Parenting & Family influencer. Check for state and country.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:40:08.466\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mcontact_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mcontact details search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"What is the contact details or email of Kolter Bouchard, this person is a popular Parenting & Family influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:40:09.187\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mcontact_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mLocation details search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"The contact email of Olivia J Owen, a popular Parenting & Family influencer, is livjowen1@gmail.com.\n",
|
||
"What is the location of Olivia J Owen, this person is a popular Parenting & Family influencer. Check for state and country.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:40:09.978\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mcontact_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mLocation details search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:10.005\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mcontact_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mLocation details search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Based on the available data, the contact details or email of Roland Hall, a popular Parenting & Family influencer, can be obtained through The Handbook's influencer marketing platform. You can access Roland Hall's phone number, email list, address, agent info, manager contacts, and more by searching their celebrity and influencer database.\n",
|
||
"What is the location of Roland Hall, this person is a popular Parenting & Family influencer. Check for state and country.\n",
|
||
"Janet Lansbury's contact email is janet@janetlansbury.com.\n",
|
||
"What is the location of Janet Lansbury, this person is a popular Parenting & Family influencer. Check for state and country.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:40:10.211\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mcontact_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer contact details\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:10.214\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_contact\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:10.304\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mcontact_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mLocation details search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:10.386\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mcontact_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mLocation details search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"CafeMom is located at 417 5th Ave 7th Floor, New York, New York 10016, United States.\n",
|
||
"Based on the available data, the contact email for Paige Turner, a popular Parenting & Family influencer, is not explicitly provided. However, individuals seeking to contact Paige Turner can sign up with their email address on her website to receive news and updates.\n",
|
||
"What is the location of Paige Turner, this person is a popular Parenting & Family influencer. Check for state and country.\n",
|
||
"The contact email for Brenden Guy, a popular Parenting & Family influencer, is brendenandellie@gmail.com as listed on his Instagram and TikTok profiles.\n",
|
||
"What is the location of Brenden Guy, this person is a popular Parenting & Family influencer. Check for state and country.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:40:10.749\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mcontact_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer contact details\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:10.749\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_contact\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"24/7 Moms, a popular Parenting & Family influencer, is located in the United States.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:40:11.210\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mcontact_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mLocation details search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Rachel Samson's contact details for discussing speaking engagements or media interviews can be obtained by contacting the administrative assistant, Sue, at (08) 8164 5220 or emailing reception@samsonandbulluss.com.\n",
|
||
"What is the location of Rachel Samson, this person is a popular Parenting & Family influencer. Check for state and country.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:40:11.716\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36minfluencer_data\u001b[0m:\u001b[36m3\u001b[0m - \u001b[1mGetting {influencer_name} social media data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:11.716\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFacebook name search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:11.732\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36minfluencer_data\u001b[0m:\u001b[36m3\u001b[0m - \u001b[1mGetting {influencer_name} social media data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:11.734\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFacebook name search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"What is the Facebook username of Grown & Flown, this person is a popular Parenting & Family influencer.\n",
|
||
"What is the Facebook username of Mom Spark, this person is a popular Parenting & Family influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:40:12.207\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mcontact_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer contact details\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:12.207\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_contact\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Jo Frost, the popular Parenting & Family influencer, was born on June 27, 1970, in London, England. This places her in the country of England, United Kingdom.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:40:12.435\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mcontact_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer contact details\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:12.435\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_contact\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:12.475\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mcontact_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer contact details\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:12.475\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_contact\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:12.565\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mcontact_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mLocation details search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Based on the data provided, the location information of ModernMom, a popular Parenting & Family influencer, is not explicitly mentioned in the available sources.\n",
|
||
"State: Texas, Country: United States\n",
|
||
"Based on the available data, Ashley Lewis, a popular Parenting & Family influencer, can be contacted for collaborations or business opportunities via email at sam@thearteagency.com.\n",
|
||
"What is the location of Ashley Lewis, this person is a popular Parenting & Family influencer. Check for state and country.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:40:12.877\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mcontact_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mLocation details search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Based on the available data sources, the contact details or email of Kylie Scott, a popular Parenting & Family influencer, can be found through platforms like The Handbook and Spokeo. These platforms provide access to Kylie Scott's phone number, email list, address, agent info, and manager contacts. For the most current and accurate contact information, it is recommended to visit these platforms directly.\n",
|
||
"What is the location of Kylie, Scott, and Addi, this person is a popular Parenting & Family influencer. Check for state and country.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:40:13.165\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mcontact_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer contact details\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:13.170\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_contact\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Based on the information available, the popular Parenting & Family influencer known as Honest Mum is located in the United Kingdom.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:40:13.547\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36minfluencer_data\u001b[0m:\u001b[36m3\u001b[0m - \u001b[1mGetting {influencer_name} social media data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:13.547\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFacebook name search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:13.617\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36minfluencer_data\u001b[0m:\u001b[36m3\u001b[0m - \u001b[1mGetting {influencer_name} social media data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:13.617\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFacebook name search\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:13.629\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mcontact_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer contact details\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:13.631\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_contact\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:13.687\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mcontact_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mLocation details search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"What is the Facebook username of The Simple Parent, this person is a popular Parenting & Family influencer.\n",
|
||
"What is the Facebook username of Adina Soclof, this person is a popular Parenting & Family influencer.\n",
|
||
"Nataliia, the popular Parenting & Family influencer, is located in Texas, USA.\n",
|
||
"The contact email for Kolter Bouchard, a popular Parenting & Family influencer, is kolter@creatorx.agency as per his Instagram profile.\n",
|
||
"What is the location of Kolter Bouchard, this person is a popular Parenting & Family influencer. Check for state and country.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:40:14.599\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mcontact_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer contact details\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:14.605\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_contact\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Olivia J Owen, the popular Parenting & Family influencer, is based in the United States.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:40:15.096\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mcontact_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer contact details\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:15.104\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_contact\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Janet Lansbury is located in the Los Angeles Metropolitan Area, which is in the state of California, United States.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:40:15.430\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mcontact_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer contact details\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:15.430\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_contact\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:15.497\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mcontact_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer contact details\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:15.497\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_contact\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:15.510\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mcontact_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer contact details\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:15.510\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_contact\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Roland Hall, a popular Parenting & Family influencer, is located in the United Kingdom.\n",
|
||
"Brenden Guy, a popular Parenting & Family influencer, is located in the Philadelphia Suburbs in the state of Pennsylvania, United States.\n",
|
||
"Location of Paige Turner: Paige Turner, the popular Parenting & Family influencer, is based in the United States.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:40:16.156\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mcontact_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer contact details\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:16.156\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_contact\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:16.267\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mFacebook followers search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Australia\n",
|
||
"The Facebook username of Mom Spark, a popular Parenting & Family influencer, is \"Mom Spark.\" The official Facebook page has 266,101 likes and is focused on providing easy recipes, crafts, and home tips.\n",
|
||
"How many Facebook followers does Mom Spark have? Note this is a Parenting & Family popular influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:40:17.785\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mcontact_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer contact details\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:17.790\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_contact\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Based on the provided data, Ashley Lewis, a popular Parenting & Family influencer, is located in Palm Beach, Florida, United States.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:40:18.096\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mcontact_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer contact details\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:18.097\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_contact\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:18.245\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mFacebook followers search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"The popular Parenting & Family influencers, Kylie, Scott, and Addi, are located in the United States, specifically in New York.\n",
|
||
"The Facebook username of Grown & Flown, a popular Parenting & Family influencer, is not explicitly provided in the data sources.\n",
|
||
"How many Facebook followers does Grown & Flown have? Note this is a Parenting & Family popular influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:40:18.905\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mFacebook followers search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"The Facebook username of The Simple Parent, a popular Parenting & Family influencer, is @thesimpleparent.\n",
|
||
"How many Facebook followers does The Simple Parent have? Note this is a Parenting & Family popular influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:40:19.245\u001b[0m | \u001b[31m\u001b[1mERROR \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_all_influencer_data\u001b[0m:\u001b[36m16\u001b[0m - \u001b[31m\u001b[1mGrown & Flown generated an exception: This request exceeds your plan's set usage limit. Please upgrade your plan or contact support@tavily.com\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:19.485\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mcontact_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer contact details\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:19.487\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_contact\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Kolter Bouchard, a popular Parenting & Family influencer, is located in Toronto, Canada.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:40:19.925\u001b[0m | \u001b[31m\u001b[1mERROR \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_all_influencer_data\u001b[0m:\u001b[36m16\u001b[0m - \u001b[31m\u001b[1mThe Simple Parent generated an exception: This request exceeds your plan's set usage limit. Please upgrade your plan or contact support@tavily.com\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:20.035\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m8\u001b[0m - \u001b[1mFacebook followers search\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Based on the data provided, the Facebook username of Adina Soclof, a popular Parenting & Family influencer, is \"Adina David Soclof.\"\n",
|
||
"How many Facebook followers does Adina Soclof have? Note this is a Parenting & Family popular influencer.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:40:21.005\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36msocialmedia_details\u001b[0m:\u001b[36m14\u001b[0m - \u001b[1mFormatting Influencer Facebook Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:21.007\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_influencer_data\u001b[0m:\u001b[36m2\u001b[0m - \u001b[1mFormatting Influencer Data\u001b[0m\n",
|
||
"\u001b[32m2024-11-04 23:40:21.197\u001b[0m | \u001b[31m\u001b[1mERROR \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_all_influencer_data\u001b[0m:\u001b[36m16\u001b[0m - \u001b[31m\u001b[1mAdina Soclof generated an exception: This request exceeds your plan's set usage limit. Please upgrade your plan or contact support@tavily.com\u001b[0m\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Mom Spark has 269,394 Facebook followers as of the latest available data.\n"
|
||
]
|
||
},
|
||
{
|
||
"name": "stderr",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"\u001b[32m2024-11-04 23:40:22.277\u001b[0m | \u001b[31m\u001b[1mERROR \u001b[0m | \u001b[36m__main__\u001b[0m:\u001b[36mget_all_influencer_data\u001b[0m:\u001b[36m16\u001b[0m - \u001b[31m\u001b[1mMom Spark generated an exception: Invalid json output: ```json\n",
|
||
"{\n",
|
||
" \"Facebook_name\": \"Mom Spark\",\n",
|
||
" \"Facebook_followers\": 269,394\n",
|
||
"}\n",
|
||
"```\n",
|
||
"For troubleshooting, visit: https://python.langchain.com/docs/troubleshooting/errors/OUTPUT_PARSING_FAILURE\u001b[0m\n"
|
||
]
|
||
}
|
||
],
|
||
"source": [
|
||
"# Function to get all influencers details concurrently for a category\n",
|
||
"def get_all_influencer_data(influencer_names: list, category: str):\n",
|
||
" all_influencers_data = []\n",
|
||
"\n",
|
||
" # Using ThreadPoolExecutor to fetch influencer data concurrently\n",
|
||
" with concurrent.futures.ThreadPoolExecutor() as executor:\n",
|
||
" # Submit tasks for each influencer and collect the future objects\n",
|
||
" future_to_influencer = {executor.submit(influencer_data, name, category): name for name in influencer_names}\n",
|
||
"\n",
|
||
" for future in concurrent.futures.as_completed(future_to_influencer):\n",
|
||
" influencer = future_to_influencer[future]\n",
|
||
" try:\n",
|
||
" influencer_details = future.result() # Get the result of the completed future\n",
|
||
" all_influencers_data.append(influencer_details)\n",
|
||
" except Exception as exc:\n",
|
||
" logger.error(f\"{influencer} generated an exception: {exc}\")\n",
|
||
" \n",
|
||
" return all_influencers_data\n",
|
||
"\n",
|
||
"\n",
|
||
"# Fetch all influencer details for the given category concurrently\n",
|
||
"all_influencers_data = get_all_influencer_data(names, category)\n",
|
||
"\n",
|
||
"# Convert the result to JSON format\n",
|
||
"all_influencers_json = json.dumps(all_influencers_data, indent=4)"
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": 25,
|
||
"metadata": {},
|
||
"outputs": [
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Data saved to Parenting & Family_influencers_data.json\n"
|
||
]
|
||
}
|
||
],
|
||
"source": [
|
||
"# Save the JSON data to a file\n",
|
||
"output_file = 'Entertainment & Pop Culture_influencers_data.json'\n",
|
||
"with open(output_file, 'w') as file:\n",
|
||
" file.write(all_influencers_json)\n",
|
||
"\n",
|
||
"# Optionally, print the saved file path\n",
|
||
"print(f\"Data saved to {output_file}\")"
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": null,
|
||
"metadata": {},
|
||
"outputs": [],
|
||
"source": []
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": null,
|
||
"metadata": {},
|
||
"outputs": [],
|
||
"source": []
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": null,
|
||
"metadata": {},
|
||
"outputs": [],
|
||
"source": []
|
||
}
|
||
],
|
||
"metadata": {
|
||
"kernelspec": {
|
||
"display_name": "base",
|
||
"language": "python",
|
||
"name": "python3"
|
||
},
|
||
"language_info": {
|
||
"codemirror_mode": {
|
||
"name": "ipython",
|
||
"version": 3
|
||
},
|
||
"file_extension": ".py",
|
||
"mimetype": "text/x-python",
|
||
"name": "python",
|
||
"nbconvert_exporter": "python",
|
||
"pygments_lexer": "ipython3",
|
||
"version": "3.11.10"
|
||
}
|
||
},
|
||
"nbformat": 4,
|
||
"nbformat_minor": 2
|
||
}
|