Open-Discord
/
EPS
/Help
/Everyone's Programming Server - help - Mini Web Scraping Project [1209973607850057799].json
{ | |
"guild": { | |
"id": "743031115207540836", | |
"name": "Everyone's Programming Server", | |
"iconUrl": "https://cdn.discordapp.com/icons/743031115207540836/1d4d00866818b8f61051002dd9f3167a.png?size=512" | |
}, | |
"channel": { | |
"id": "1209973607850057799", | |
"type": "GuildPublicThread", | |
"categoryId": "1022562971743948963", | |
"category": "help", | |
"name": "Mini Web Scraping Project", | |
"topic": null | |
}, | |
"dateRange": { | |
"after": null, | |
"before": null | |
}, | |
"exportedAt": "2025-02-26T20:34:02.070819-05:00", | |
"messages": [ | |
{ | |
"id": "1209973607850057799", | |
"type": "Default", | |
"timestamp": "2024-02-21T16:23:08.334-05:00", | |
"timestampEdited": null, | |
"callEndedTimestamp": null, | |
"isPinned": false, | |
"content": "hi, doing a web scraping project with EPL matches using python, but ive ran into this error\n\nheres my code\n\n```py\nimport requests\nfrom bs4 import BeautifulSoup\n\n# The URL of the page you want to scrape\nstandings_url = \"https://fbref.com/en/comps/9/Premier-League-Stats\"\n\n# Send a GET request to the page\ndata = requests.get(standings_url)\n\n# Parse the HTML content of the page with BeautifulSoup\nsoup = BeautifulSoup(data.text, 'html.parser')\n\n# Try to find the table with the class 'stats_table'\nstats_tables = soup.select('table.stats_table')\n\n# Check if the list is not empty before accessing its elements\nif stats_tables:\n # Get the first table in the list\n standings_table = stats_tables[0]\n \n # Find all 'a' tags within the table\n links = standings_table.find_all('a')\n \n # Extract the 'href' attribute from each 'a' tag\n links = [l.get(\"href\") for l in links]\n \n # Filter the links to only include those that contain '/squads/'\n links = [l for l in links if '/squads/' in l]\n \n # Prepend 'https://fbref.com' to each link\n team_urls = [f\"https://fbref.com{l}\" for l in links]\n \n # Print the list of team URLs\n print(team_urls)\nelse:\n print(\"No stats tables found.\")```\n\n\nerror:\n\nUser\n---------------------------------------------------------------------------\nIndexError Traceback (most recent call last)\nCell In[8], line 6\n 4 from bs4 import BeautifulSoup\n 5 soup = BeautifulSoup(data.text)\n----> 6 standings_table = soup.select('table.stats_table')[0]\n 7 links = standings_table.find_all('a')\n 8 links = [l.get(\"href\") for l in links]\n\nIndexError: list index out of range", | |
"author": { | |
"id": "658881928744927292", | |
"name": "hzz23", | |
"discriminator": "0000", | |
"nickname": "Hz23", | |
"color": "#A6D5FF", | |
"isBot": false, | |
"roles": [ | |
{ | |
"id": "743483193721749564", | |
"name": "Level 2", | |
"color": "#A6D5FF", | |
"position": 78 | |
}, | |
{ | |
"id": "746976713959014460", | |
"name": "Help-Python", | |
"color": null, | |
"position": 60 | |
}, | |
{ | |
"id": "1028001755260276856", | |
"name": "Help-Rust", | |
"color": null, | |
"position": 6 | |
} | |
], | |
"avatarUrl": "https://cdn.discordapp.com/avatars/658881928744927292/892ef5f74bc0c60e327024733b0a6ba6.png?size=512" | |
}, | |
"attachments": [], | |
"embeds": [], | |
"stickers": [], | |
"reactions": [], | |
"mentions": [], | |
"inlineEmojis": [] | |
}, | |
{ | |
"id": "1209973756110569583", | |
"type": "Default", | |
"timestamp": "2024-02-21T16:23:43.682-05:00", | |
"timestampEdited": "2024-02-21T16:24:06.523-05:00", | |
"callEndedTimestamp": null, | |
"isPinned": false, | |
"content": "this is what gpt thinks may be causing it", | |
"author": { | |
"id": "658881928744927292", | |
"name": "hzz23", | |
"discriminator": "0000", | |
"nickname": "Hz23", | |
"color": "#A6D5FF", | |
"isBot": false, | |
"roles": [ | |
{ | |
"id": "743483193721749564", | |
"name": "Level 2", | |
"color": "#A6D5FF", | |
"position": 78 | |
}, | |
{ | |
"id": "746976713959014460", | |
"name": "Help-Python", | |
"color": null, | |
"position": 60 | |
}, | |
{ | |
"id": "1028001755260276856", | |
"name": "Help-Rust", | |
"color": null, | |
"position": 6 | |
} | |
], | |
"avatarUrl": "https://cdn.discordapp.com/avatars/658881928744927292/892ef5f74bc0c60e327024733b0a6ba6.png?size=512" | |
}, | |
"attachments": [], | |
"embeds": [], | |
"stickers": [], | |
"reactions": [], | |
"mentions": [], | |
"inlineEmojis": [] | |
}, | |
{ | |
"id": "1209973810728796170", | |
"type": "Default", | |
"timestamp": "2024-02-21T16:23:56.704-05:00", | |
"timestampEdited": null, | |
"callEndedTimestamp": null, | |
"isPinned": false, | |
"content": "```c\n/* \nThe error you are encountering, IndexError: list index out of range, is happening in this part of your code:\n\npython\nCopy code\nstandings_table = soup.select('table.stats_table')[0]\nThis error indicates that the list returned by soup.select('table.stats_table') is empty, and you are trying to access its first element (index 0), which doesn't exist.\n\nThere could be a few reasons for this issue:\n\nIncorrect HTML Structure: The HTML structure might have changed on the website, and the table with the class stats_table may no longer exist or may be nested differently.\n\nPage Loading: The page may not have loaded completely when you make the request, and the table might not be present in the HTML at that moment.\n\nWebsite Changes: The website structure or content may have changed since your last successful run.*/\n```", | |
"author": { | |
"id": "658881928744927292", | |
"name": "hzz23", | |
"discriminator": "0000", | |
"nickname": "Hz23", | |
"color": "#A6D5FF", | |
"isBot": false, | |
"roles": [ | |
{ | |
"id": "743483193721749564", | |
"name": "Level 2", | |
"color": "#A6D5FF", | |
"position": 78 | |
}, | |
{ | |
"id": "746976713959014460", | |
"name": "Help-Python", | |
"color": null, | |
"position": 60 | |
}, | |
{ | |
"id": "1028001755260276856", | |
"name": "Help-Rust", | |
"color": null, | |
"position": 6 | |
} | |
], | |
"avatarUrl": "https://cdn.discordapp.com/avatars/658881928744927292/892ef5f74bc0c60e327024733b0a6ba6.png?size=512" | |
}, | |
"attachments": [], | |
"embeds": [], | |
"stickers": [], | |
"reactions": [], | |
"mentions": [], | |
"inlineEmojis": [] | |
}, | |
{ | |
"id": "1209973936557916160", | |
"type": "Default", | |
"timestamp": "2024-02-21T16:24:26.704-05:00", | |
"timestampEdited": null, | |
"callEndedTimestamp": null, | |
"isPinned": false, | |
"content": "this is the website im utilizing for my project\nhttps://fbref.com/en/comps/9/Premier-League-Stats", | |
"author": { | |
"id": "658881928744927292", | |
"name": "hzz23", | |
"discriminator": "0000", | |
"nickname": "Hz23", | |
"color": "#A6D5FF", | |
"isBot": false, | |
"roles": [ | |
{ | |
"id": "743483193721749564", | |
"name": "Level 2", | |
"color": "#A6D5FF", | |
"position": 78 | |
}, | |
{ | |
"id": "746976713959014460", | |
"name": "Help-Python", | |
"color": null, | |
"position": 60 | |
}, | |
{ | |
"id": "1028001755260276856", | |
"name": "Help-Rust", | |
"color": null, | |
"position": 6 | |
} | |
], | |
"avatarUrl": "https://cdn.discordapp.com/avatars/658881928744927292/892ef5f74bc0c60e327024733b0a6ba6.png?size=512" | |
}, | |
"attachments": [], | |
"embeds": [ | |
{ | |
"title": "Premier League Stats | FBref.com", | |
"url": "https://fbref.com/en/comps/9/Premier-League-Stats", | |
"timestamp": null, | |
"description": "Check out Stats for the 2023-2024 Premier League season.", | |
"thumbnail": { | |
"url": "https://images-ext-1.discordapp.net/external/LEWZn1zRk3wO3afx8eBqJV3BPiLQjmNOAzzNxE9PBx4/%3Fmin%3D200%26url%3Dhttps%3A%2F%2Fcdn.ssref.net%2Freq%2F202402161%2Ftlogo%2Ffb%2F9.png/http/cdn.ssref.net/scripts/image_resize.cgi", | |
"width": 200, | |
"height": 200 | |
}, | |
"images": [], | |
"fields": [], | |
"inlineEmojis": [] | |
} | |
], | |
"stickers": [], | |
"reactions": [], | |
"mentions": [], | |
"inlineEmojis": [] | |
}, | |
{ | |
"id": "1209974087464783902", | |
"type": "Default", | |
"timestamp": "2024-02-21T16:25:02.683-05:00", | |
"timestampEdited": null, | |
"callEndedTimestamp": null, | |
"isPinned": false, | |
"content": "tried debugging but not sure why the list index is out of range", | |
"author": { | |
"id": "658881928744927292", | |
"name": "hzz23", | |
"discriminator": "0000", | |
"nickname": "Hz23", | |
"color": "#A6D5FF", | |
"isBot": false, | |
"roles": [ | |
{ | |
"id": "743483193721749564", | |
"name": "Level 2", | |
"color": "#A6D5FF", | |
"position": 78 | |
}, | |
{ | |
"id": "746976713959014460", | |
"name": "Help-Python", | |
"color": null, | |
"position": 60 | |
}, | |
{ | |
"id": "1028001755260276856", | |
"name": "Help-Rust", | |
"color": null, | |
"position": 6 | |
} | |
], | |
"avatarUrl": "https://cdn.discordapp.com/avatars/658881928744927292/892ef5f74bc0c60e327024733b0a6ba6.png?size=512" | |
}, | |
"attachments": [], | |
"embeds": [], | |
"stickers": [], | |
"reactions": [], | |
"mentions": [], | |
"inlineEmojis": [] | |
}, | |
{ | |
"id": "1209974767004815370", | |
"type": "Default", | |
"timestamp": "2024-02-21T16:27:44.698-05:00", | |
"timestampEdited": null, | |
"callEndedTimestamp": null, | |
"isPinned": false, | |
"content": "@Help-Python", | |
"author": { | |
"id": "658881928744927292", | |
"name": "hzz23", | |
"discriminator": "0000", | |
"nickname": "Hz23", | |
"color": "#A6D5FF", | |
"isBot": false, | |
"roles": [ | |
{ | |
"id": "743483193721749564", | |
"name": "Level 2", | |
"color": "#A6D5FF", | |
"position": 78 | |
}, | |
{ | |
"id": "746976713959014460", | |
"name": "Help-Python", | |
"color": null, | |
"position": 60 | |
}, | |
{ | |
"id": "1028001755260276856", | |
"name": "Help-Rust", | |
"color": null, | |
"position": 6 | |
} | |
], | |
"avatarUrl": "https://cdn.discordapp.com/avatars/658881928744927292/892ef5f74bc0c60e327024733b0a6ba6.png?size=512" | |
}, | |
"attachments": [], | |
"embeds": [], | |
"stickers": [], | |
"reactions": [], | |
"mentions": [], | |
"inlineEmojis": [] | |
}, | |
{ | |
"id": "1210020124510257235", | |
"type": "Reply", | |
"timestamp": "2024-02-21T19:27:58.77-05:00", | |
"timestampEdited": null, | |
"callEndedTimestamp": null, | |
"isPinned": false, | |
"content": "works when I run it", | |
"author": { | |
"id": "770728067550150708", | |
"name": "uelsam", | |
"discriminator": "0000", | |
"nickname": "Sammy", | |
"color": "#E67E22", | |
"isBot": false, | |
"roles": [ | |
{ | |
"id": "743482290180587614", | |
"name": "Moderator", | |
"color": "#E67E22", | |
"position": 89 | |
}, | |
{ | |
"id": "802264469832597526", | |
"name": "Trial moderator", | |
"color": "#992D22", | |
"position": 88 | |
}, | |
{ | |
"id": "743482969359908968", | |
"name": "Level 3", | |
"color": "#A6AEFF", | |
"position": 79 | |
}, | |
{ | |
"id": "746976140937396224", | |
"name": "Helper", | |
"color": "#6F0035", | |
"position": 76 | |
}, | |
{ | |
"id": "848201437573152790", | |
"name": "Highly Active", | |
"color": "#A26D27", | |
"position": 73 | |
}, | |
{ | |
"id": "800385754219937792", | |
"name": "CodeCom Participant", | |
"color": "#E91E63", | |
"position": 72 | |
}, | |
{ | |
"id": "874858515838148608", | |
"name": "Music", | |
"color": "#2ECC71", | |
"position": 66 | |
}, | |
{ | |
"id": "746976912181821511", | |
"name": "Help-JS", | |
"color": null, | |
"position": 58 | |
}, | |
{ | |
"id": "854548376393089044", | |
"name": "User-Made Challenge Ping", | |
"color": null, | |
"position": 51 | |
}, | |
{ | |
"id": "854547959445323806", | |
"name": "Official Challenge Ping", | |
"color": "#525252", | |
"position": 50 | |
}, | |
{ | |
"id": "814614879045812324", | |
"name": "Poll Ping", | |
"color": null, | |
"position": 49 | |
}, | |
{ | |
"id": "849178678701064203", | |
"name": "pog a conversation starter", | |
"color": "#E74C3C", | |
"position": 48 | |
}, | |
{ | |
"id": "831902814950522900", | |
"name": "Stream Ping", | |
"color": null, | |
"position": 47 | |
}, | |
{ | |
"id": "849032245279850506", | |
"name": "Announcement Ping", | |
"color": null, | |
"position": 46 | |
}, | |
{ | |
"id": "878363922099490846", | |
"name": "Misc Access", | |
"color": "#009BFF", | |
"position": 14 | |
}, | |
{ | |
"id": "928781011641311265", | |
"name": "Project: argon-assistant", | |
"color": "#9B59B6", | |
"position": 13 | |
} | |
], | |
"avatarUrl": "https://cdn.discordapp.com/avatars/770728067550150708/a17f51e52db621ec6f652cad191b0491.png?size=512" | |
}, | |
"attachments": [], | |
"embeds": [], | |
"stickers": [], | |
"reactions": [], | |
"mentions": [ | |
{ | |
"id": "658881928744927292", | |
"name": "hzz23", | |
"discriminator": "0000", | |
"nickname": "Hz23", | |
"color": "#A6D5FF", | |
"isBot": false, | |
"roles": [ | |
{ | |
"id": "743483193721749564", | |
"name": "Level 2", | |
"color": "#A6D5FF", | |
"position": 78 | |
}, | |
{ | |
"id": "746976713959014460", | |
"name": "Help-Python", | |
"color": null, | |
"position": 60 | |
}, | |
{ | |
"id": "1028001755260276856", | |
"name": "Help-Rust", | |
"color": null, | |
"position": 6 | |
} | |
], | |
"avatarUrl": "https://cdn.discordapp.com/avatars/658881928744927292/892ef5f74bc0c60e327024733b0a6ba6.png?size=512" | |
} | |
], | |
"reference": { | |
"messageId": "1209973607850057799", | |
"channelId": "1209973607850057799", | |
"guildId": "743031115207540836" | |
}, | |
"inlineEmojis": [] | |
}, | |
{ | |
"id": "1210020284237881365", | |
"type": "Default", | |
"timestamp": "2024-02-21T19:28:36.852-05:00", | |
"timestampEdited": null, | |
"callEndedTimestamp": null, | |
"isPinned": false, | |
"content": "also just my opinion but I just wouldn't rely on chat gpt to ask what's wrong", | |
"author": { | |
"id": "770728067550150708", | |
"name": "uelsam", | |
"discriminator": "0000", | |
"nickname": "Sammy", | |
"color": "#E67E22", | |
"isBot": false, | |
"roles": [ | |
{ | |
"id": "743482290180587614", | |
"name": "Moderator", | |
"color": "#E67E22", | |
"position": 89 | |
}, | |
{ | |
"id": "802264469832597526", | |
"name": "Trial moderator", | |
"color": "#992D22", | |
"position": 88 | |
}, | |
{ | |
"id": "743482969359908968", | |
"name": "Level 3", | |
"color": "#A6AEFF", | |
"position": 79 | |
}, | |
{ | |
"id": "746976140937396224", | |
"name": "Helper", | |
"color": "#6F0035", | |
"position": 76 | |
}, | |
{ | |
"id": "848201437573152790", | |
"name": "Highly Active", | |
"color": "#A26D27", | |
"position": 73 | |
}, | |
{ | |
"id": "800385754219937792", | |
"name": "CodeCom Participant", | |
"color": "#E91E63", | |
"position": 72 | |
}, | |
{ | |
"id": "874858515838148608", | |
"name": "Music", | |
"color": "#2ECC71", | |
"position": 66 | |
}, | |
{ | |
"id": "746976912181821511", | |
"name": "Help-JS", | |
"color": null, | |
"position": 58 | |
}, | |
{ | |
"id": "854548376393089044", | |
"name": "User-Made Challenge Ping", | |
"color": null, | |
"position": 51 | |
}, | |
{ | |
"id": "854547959445323806", | |
"name": "Official Challenge Ping", | |
"color": "#525252", | |
"position": 50 | |
}, | |
{ | |
"id": "814614879045812324", | |
"name": "Poll Ping", | |
"color": null, | |
"position": 49 | |
}, | |
{ | |
"id": "849178678701064203", | |
"name": "pog a conversation starter", | |
"color": "#E74C3C", | |
"position": 48 | |
}, | |
{ | |
"id": "831902814950522900", | |
"name": "Stream Ping", | |
"color": null, | |
"position": 47 | |
}, | |
{ | |
"id": "849032245279850506", | |
"name": "Announcement Ping", | |
"color": null, | |
"position": 46 | |
}, | |
{ | |
"id": "878363922099490846", | |
"name": "Misc Access", | |
"color": "#009BFF", | |
"position": 14 | |
}, | |
{ | |
"id": "928781011641311265", | |
"name": "Project: argon-assistant", | |
"color": "#9B59B6", | |
"position": 13 | |
} | |
], | |
"avatarUrl": "https://cdn.discordapp.com/avatars/770728067550150708/a17f51e52db621ec6f652cad191b0491.png?size=512" | |
}, | |
"attachments": [], | |
"embeds": [], | |
"stickers": [], | |
"reactions": [], | |
"mentions": [], | |
"inlineEmojis": [] | |
}, | |
{ | |
"id": "1210020786266447992", | |
"type": "Reply", | |
"timestamp": "2024-02-21T19:30:36.545-05:00", | |
"timestampEdited": null, | |
"callEndedTimestamp": null, | |
"isPinned": false, | |
"content": "even after attempting to debug yourself", | |
"author": { | |
"id": "658881928744927292", | |
"name": "hzz23", | |
"discriminator": "0000", | |
"nickname": "Hz23", | |
"color": "#A6D5FF", | |
"isBot": false, | |
"roles": [ | |
{ | |
"id": "743483193721749564", | |
"name": "Level 2", | |
"color": "#A6D5FF", | |
"position": 78 | |
}, | |
{ | |
"id": "746976713959014460", | |
"name": "Help-Python", | |
"color": null, | |
"position": 60 | |
}, | |
{ | |
"id": "1028001755260276856", | |
"name": "Help-Rust", | |
"color": null, | |
"position": 6 | |
} | |
], | |
"avatarUrl": "https://cdn.discordapp.com/avatars/658881928744927292/892ef5f74bc0c60e327024733b0a6ba6.png?size=512" | |
}, | |
"attachments": [], | |
"embeds": [], | |
"stickers": [], | |
"reactions": [], | |
"mentions": [ | |
{ | |
"id": "770728067550150708", | |
"name": "uelsam", | |
"discriminator": "0000", | |
"nickname": "Sammy", | |
"color": "#E67E22", | |
"isBot": false, | |
"roles": [ | |
{ | |
"id": "743482290180587614", | |
"name": "Moderator", | |
"color": "#E67E22", | |
"position": 89 | |
}, | |
{ | |
"id": "802264469832597526", | |
"name": "Trial moderator", | |
"color": "#992D22", | |
"position": 88 | |
}, | |
{ | |
"id": "743482969359908968", | |
"name": "Level 3", | |
"color": "#A6AEFF", | |
"position": 79 | |
}, | |
{ | |
"id": "746976140937396224", | |
"name": "Helper", | |
"color": "#6F0035", | |
"position": 76 | |
}, | |
{ | |
"id": "848201437573152790", | |
"name": "Highly Active", | |
"color": "#A26D27", | |
"position": 73 | |
}, | |
{ | |
"id": "800385754219937792", | |
"name": "CodeCom Participant", | |
"color": "#E91E63", | |
"position": 72 | |
}, | |
{ | |
"id": "874858515838148608", | |
"name": "Music", | |
"color": "#2ECC71", | |
"position": 66 | |
}, | |
{ | |
"id": "746976912181821511", | |
"name": "Help-JS", | |
"color": null, | |
"position": 58 | |
}, | |
{ | |
"id": "854548376393089044", | |
"name": "User-Made Challenge Ping", | |
"color": null, | |
"position": 51 | |
}, | |
{ | |
"id": "854547959445323806", | |
"name": "Official Challenge Ping", | |
"color": "#525252", | |
"position": 50 | |
}, | |
{ | |
"id": "814614879045812324", | |
"name": "Poll Ping", | |
"color": null, | |
"position": 49 | |
}, | |
{ | |
"id": "849178678701064203", | |
"name": "pog a conversation starter", | |
"color": "#E74C3C", | |
"position": 48 | |
}, | |
{ | |
"id": "831902814950522900", | |
"name": "Stream Ping", | |
"color": null, | |
"position": 47 | |
}, | |
{ | |
"id": "849032245279850506", | |
"name": "Announcement Ping", | |
"color": null, | |
"position": 46 | |
}, | |
{ | |
"id": "878363922099490846", | |
"name": "Misc Access", | |
"color": "#009BFF", | |
"position": 14 | |
}, | |
{ | |
"id": "928781011641311265", | |
"name": "Project: argon-assistant", | |
"color": "#9B59B6", | |
"position": 13 | |
} | |
], | |
"avatarUrl": "https://cdn.discordapp.com/avatars/770728067550150708/a17f51e52db621ec6f652cad191b0491.png?size=512" | |
} | |
], | |
"reference": { | |
"messageId": "1210020284237881365", | |
"channelId": "1209973607850057799", | |
"guildId": "743031115207540836" | |
}, | |
"inlineEmojis": [] | |
}, | |
{ | |
"id": "1210020826896928778", | |
"type": "Default", | |
"timestamp": "2024-02-21T19:30:46.232-05:00", | |
"timestampEdited": null, | |
"callEndedTimestamp": null, | |
"isPinned": false, | |
"content": "or straight up", | |
"author": { | |
"id": "658881928744927292", | |
"name": "hzz23", | |
"discriminator": "0000", | |
"nickname": "Hz23", | |
"color": "#A6D5FF", | |
"isBot": false, | |
"roles": [ | |
{ | |
"id": "743483193721749564", | |
"name": "Level 2", | |
"color": "#A6D5FF", | |
"position": 78 | |
}, | |
{ | |
"id": "746976713959014460", | |
"name": "Help-Python", | |
"color": null, | |
"position": 60 | |
}, | |
{ | |
"id": "1028001755260276856", | |
"name": "Help-Rust", | |
"color": null, | |
"position": 6 | |
} | |
], | |
"avatarUrl": "https://cdn.discordapp.com/avatars/658881928744927292/892ef5f74bc0c60e327024733b0a6ba6.png?size=512" | |
}, | |
"attachments": [], | |
"embeds": [], | |
"stickers": [], | |
"reactions": [], | |
"mentions": [], | |
"inlineEmojis": [] | |
}, | |
{ | |
"id": "1210021124784791604", | |
"type": "Default", | |
"timestamp": "2024-02-21T19:31:57.254-05:00", | |
"timestampEdited": null, | |
"callEndedTimestamp": null, | |
"isPinned": false, | |
"content": "I mean for repetitive tasks it's fine", | |
"author": { | |
"id": "770728067550150708", | |
"name": "uelsam", | |
"discriminator": "0000", | |
"nickname": "Sammy", | |
"color": "#E67E22", | |
"isBot": false, | |
"roles": [ | |
{ | |
"id": "743482290180587614", | |
"name": "Moderator", | |
"color": "#E67E22", | |
"position": 89 | |
}, | |
{ | |
"id": "802264469832597526", | |
"name": "Trial moderator", | |
"color": "#992D22", | |
"position": 88 | |
}, | |
{ | |
"id": "743482969359908968", | |
"name": "Level 3", | |
"color": "#A6AEFF", | |
"position": 79 | |
}, | |
{ | |
"id": "746976140937396224", | |
"name": "Helper", | |
"color": "#6F0035", | |
"position": 76 | |
}, | |
{ | |
"id": "848201437573152790", | |
"name": "Highly Active", | |
"color": "#A26D27", | |
"position": 73 | |
}, | |
{ | |
"id": "800385754219937792", | |
"name": "CodeCom Participant", | |
"color": "#E91E63", | |
"position": 72 | |
}, | |
{ | |
"id": "874858515838148608", | |
"name": "Music", | |
"color": "#2ECC71", | |
"position": 66 | |
}, | |
{ | |
"id": "746976912181821511", | |
"name": "Help-JS", | |
"color": null, | |
"position": 58 | |
}, | |
{ | |
"id": "854548376393089044", | |
"name": "User-Made Challenge Ping", | |
"color": null, | |
"position": 51 | |
}, | |
{ | |
"id": "854547959445323806", | |
"name": "Official Challenge Ping", | |
"color": "#525252", | |
"position": 50 | |
}, | |
{ | |
"id": "814614879045812324", | |
"name": "Poll Ping", | |
"color": null, | |
"position": 49 | |
}, | |
{ | |
"id": "849178678701064203", | |
"name": "pog a conversation starter", | |
"color": "#E74C3C", | |
"position": 48 | |
}, | |
{ | |
"id": "831902814950522900", | |
"name": "Stream Ping", | |
"color": null, | |
"position": 47 | |
}, | |
{ | |
"id": "849032245279850506", | |
"name": "Announcement Ping", | |
"color": null, | |
"position": 46 | |
}, | |
{ | |
"id": "878363922099490846", | |
"name": "Misc Access", | |
"color": "#009BFF", | |
"position": 14 | |
}, | |
{ | |
"id": "928781011641311265", | |
"name": "Project: argon-assistant", | |
"color": "#9B59B6", | |
"position": 13 | |
} | |
], | |
"avatarUrl": "https://cdn.discordapp.com/avatars/770728067550150708/a17f51e52db621ec6f652cad191b0491.png?size=512" | |
}, | |
"attachments": [], | |
"embeds": [], | |
"stickers": [], | |
"reactions": [], | |
"mentions": [], | |
"inlineEmojis": [] | |
}, | |
{ | |
"id": "1210021183173558292", | |
"type": "Default", | |
"timestamp": "2024-02-21T19:32:11.175-05:00", | |
"timestampEdited": null, | |
"callEndedTimestamp": null, | |
"isPinned": false, | |
"content": "but in all other cases I wouldn't reccomend using it", | |
"author": { | |
"id": "770728067550150708", | |
"name": "uelsam", | |
"discriminator": "0000", | |
"nickname": "Sammy", | |
"color": "#E67E22", | |
"isBot": false, | |
"roles": [ | |
{ | |
"id": "743482290180587614", | |
"name": "Moderator", | |
"color": "#E67E22", | |
"position": 89 | |
}, | |
{ | |
"id": "802264469832597526", | |
"name": "Trial moderator", | |
"color": "#992D22", | |
"position": 88 | |
}, | |
{ | |
"id": "743482969359908968", | |
"name": "Level 3", | |
"color": "#A6AEFF", | |
"position": 79 | |
}, | |
{ | |
"id": "746976140937396224", | |
"name": "Helper", | |
"color": "#6F0035", | |
"position": 76 | |
}, | |
{ | |
"id": "848201437573152790", | |
"name": "Highly Active", | |
"color": "#A26D27", | |
"position": 73 | |
}, | |
{ | |
"id": "800385754219937792", | |
"name": "CodeCom Participant", | |
"color": "#E91E63", | |
"position": 72 | |
}, | |
{ | |
"id": "874858515838148608", | |
"name": "Music", | |
"color": "#2ECC71", | |
"position": 66 | |
}, | |
{ | |
"id": "746976912181821511", | |
"name": "Help-JS", | |
"color": null, | |
"position": 58 | |
}, | |
{ | |
"id": "854548376393089044", | |
"name": "User-Made Challenge Ping", | |
"color": null, | |
"position": 51 | |
}, | |
{ | |
"id": "854547959445323806", | |
"name": "Official Challenge Ping", | |
"color": "#525252", | |
"position": 50 | |
}, | |
{ | |
"id": "814614879045812324", | |
"name": "Poll Ping", | |
"color": null, | |
"position": 49 | |
}, | |
{ | |
"id": "849178678701064203", | |
"name": "pog a conversation starter", | |
"color": "#E74C3C", | |
"position": 48 | |
}, | |
{ | |
"id": "831902814950522900", | |
"name": "Stream Ping", | |
"color": null, | |
"position": 47 | |
}, | |
{ | |
"id": "849032245279850506", | |
"name": "Announcement Ping", | |
"color": null, | |
"position": 46 | |
}, | |
{ | |
"id": "878363922099490846", | |
"name": "Misc Access", | |
"color": "#009BFF", | |
"position": 14 | |
}, | |
{ | |
"id": "928781011641311265", | |
"name": "Project: argon-assistant", | |
"color": "#9B59B6", | |
"position": 13 | |
} | |
], | |
"avatarUrl": "https://cdn.discordapp.com/avatars/770728067550150708/a17f51e52db621ec6f652cad191b0491.png?size=512" | |
}, | |
"attachments": [], | |
"embeds": [], | |
"stickers": [], | |
"reactions": [], | |
"mentions": [], | |
"inlineEmojis": [] | |
}, | |
{ | |
"id": "1210021310608969729", | |
"type": "Default", | |
"timestamp": "2024-02-21T19:32:41.558-05:00", | |
"timestampEdited": null, | |
"callEndedTimestamp": null, | |
"isPinned": false, | |
"content": "it's best to just think through a problem yourself, let alone the fact that chat gpt has a lot of issues of it's own", | |
"author": { | |
"id": "770728067550150708", | |
"name": "uelsam", | |
"discriminator": "0000", | |
"nickname": "Sammy", | |
"color": "#E67E22", | |
"isBot": false, | |
"roles": [ | |
{ | |
"id": "743482290180587614", | |
"name": "Moderator", | |
"color": "#E67E22", | |
"position": 89 | |
}, | |
{ | |
"id": "802264469832597526", | |
"name": "Trial moderator", | |
"color": "#992D22", | |
"position": 88 | |
}, | |
{ | |
"id": "743482969359908968", | |
"name": "Level 3", | |
"color": "#A6AEFF", | |
"position": 79 | |
}, | |
{ | |
"id": "746976140937396224", | |
"name": "Helper", | |
"color": "#6F0035", | |
"position": 76 | |
}, | |
{ | |
"id": "848201437573152790", | |
"name": "Highly Active", | |
"color": "#A26D27", | |
"position": 73 | |
}, | |
{ | |
"id": "800385754219937792", | |
"name": "CodeCom Participant", | |
"color": "#E91E63", | |
"position": 72 | |
}, | |
{ | |
"id": "874858515838148608", | |
"name": "Music", | |
"color": "#2ECC71", | |
"position": 66 | |
}, | |
{ | |
"id": "746976912181821511", | |
"name": "Help-JS", | |
"color": null, | |
"position": 58 | |
}, | |
{ | |
"id": "854548376393089044", | |
"name": "User-Made Challenge Ping", | |
"color": null, | |
"position": 51 | |
}, | |
{ | |
"id": "854547959445323806", | |
"name": "Official Challenge Ping", | |
"color": "#525252", | |
"position": 50 | |
}, | |
{ | |
"id": "814614879045812324", | |
"name": "Poll Ping", | |
"color": null, | |
"position": 49 | |
}, | |
{ | |
"id": "849178678701064203", | |
"name": "pog a conversation starter", | |
"color": "#E74C3C", | |
"position": 48 | |
}, | |
{ | |
"id": "831902814950522900", | |
"name": "Stream Ping", | |
"color": null, | |
"position": 47 | |
}, | |
{ | |
"id": "849032245279850506", | |
"name": "Announcement Ping", | |
"color": null, | |
"position": 46 | |
}, | |
{ | |
"id": "878363922099490846", | |
"name": "Misc Access", | |
"color": "#009BFF", | |
"position": 14 | |
}, | |
{ | |
"id": "928781011641311265", | |
"name": "Project: argon-assistant", | |
"color": "#9B59B6", | |
"position": 13 | |
} | |
], | |
"avatarUrl": "https://cdn.discordapp.com/avatars/770728067550150708/a17f51e52db621ec6f652cad191b0491.png?size=512" | |
}, | |
"attachments": [], | |
"embeds": [], | |
"stickers": [], | |
"reactions": [ | |
{ | |
"emoji": { | |
"id": "", | |
"name": "\uD83D\uDC4D", | |
"code": "thumbsup", | |
"isAnimated": false, | |
"imageUrl": "https://cdn.jsdelivr.net/gh/twitter/twemoji@latest/assets/svg/1f44d.svg" | |
}, | |
"count": 1, | |
"users": [ | |
{ | |
"id": "658881928744927292", | |
"name": "hzz23", | |
"discriminator": "0000", | |
"nickname": "Hz23", | |
"color": "#A6D5FF", | |
"isBot": false, | |
"avatarUrl": "https://cdn.discordapp.com/avatars/658881928744927292/892ef5f74bc0c60e327024733b0a6ba6.png?size=512" | |
} | |
] | |
} | |
], | |
"mentions": [], | |
"inlineEmojis": [] | |
}, | |
{ | |
"id": "1210044380044595260", | |
"type": "Reply", | |
"timestamp": "2024-02-21T21:04:21.74-05:00", | |
"timestampEdited": null, | |
"callEndedTimestamp": null, | |
"isPinned": false, | |
"content": "Personally, I find that when you get ChatGPT to help you debug, you end up with more bugs than you started with.", | |
"author": { | |
"id": "676414144643203120", | |
"name": "hudsong0", | |
"discriminator": "0000", | |
"nickname": "Hudson", | |
"color": "#D4AF37", | |
"isBot": false, | |
"roles": [ | |
{ | |
"id": "743031297089339492", | |
"name": "ADMIN", | |
"color": "#D4AF37", | |
"position": 93 | |
}, | |
{ | |
"id": "744557622262366309", | |
"name": "Trusted", | |
"color": "#11806A", | |
"position": 90 | |
}, | |
{ | |
"id": "743482290180587614", | |
"name": "Moderator", | |
"color": "#E67E22", | |
"position": 89 | |
}, | |
{ | |
"id": "802264469832597526", | |
"name": "Trial moderator", | |
"color": "#992D22", | |
"position": 88 | |
}, | |
{ | |
"id": "1019197326495064136", | |
"name": "FOOTED", | |
"color": "#E8BEAC", | |
"position": 83 | |
}, | |
{ | |
"id": "743481776676143205", | |
"name": "Level 5", | |
"color": "#3232E2", | |
"position": 81 | |
}, | |
{ | |
"id": "746976140937396224", | |
"name": "Helper", | |
"color": "#6F0035", | |
"position": 76 | |
}, | |
{ | |
"id": "805850008040898621", | |
"name": "CodeCom Judge", | |
"color": "#E74C3C", | |
"position": 74 | |
}, | |
{ | |
"id": "848201437573152790", | |
"name": "Highly Active", | |
"color": "#A26D27", | |
"position": 73 | |
}, | |
{ | |
"id": "809501289163391026", | |
"name": "Honorary member", | |
"color": "#3600FF", | |
"position": 70 | |
}, | |
{ | |
"id": "821492358326517840", | |
"name": "Server Bumper", | |
"color": "#A6AEFF", | |
"position": 69 | |
}, | |
{ | |
"id": "874858515838148608", | |
"name": "Music", | |
"color": "#2ECC71", | |
"position": 66 | |
}, | |
{ | |
"id": "821123781279350784", | |
"name": "Truth Seeker", | |
"color": "#2ECC71", | |
"position": 65 | |
}, | |
{ | |
"id": "743031248452321310", | |
"name": "Language Maker", | |
"color": "#2ECC71", | |
"position": 64 | |
}, | |
{ | |
"id": "813448238433959947", | |
"name": "Good Leader", | |
"color": "#2ECC71", | |
"position": 63 | |
}, | |
{ | |
"id": "821123981717274654", | |
"name": "Bot Maker", | |
"color": "#2ECC71", | |
"position": 62 | |
}, | |
{ | |
"id": "800384434825986048", | |
"name": "FullStack", | |
"color": "#2ECC71", | |
"position": 61 | |
}, | |
{ | |
"id": "746976713959014460", | |
"name": "Help-Python", | |
"color": null, | |
"position": 60 | |
}, | |
{ | |
"id": "750234470379946004", | |
"name": "Help-Aardvark", | |
"color": null, | |
"position": 59 | |
}, | |
{ | |
"id": "746976912181821511", | |
"name": "Help-JS", | |
"color": null, | |
"position": 58 | |
}, | |
{ | |
"id": "746976986777255937", | |
"name": "Help-C", | |
"color": null, | |
"position": 57 | |
}, | |
{ | |
"id": "824686275470032967", | |
"name": "Help-C++", | |
"color": null, | |
"position": 55 | |
}, | |
{ | |
"id": "1069778726457450557", | |
"name": "Help-HTML/CSS", | |
"color": null, | |
"position": 52 | |
}, | |
{ | |
"id": "854548376393089044", | |
"name": "User-Made Challenge Ping", | |
"color": null, | |
"position": 51 | |
}, | |
{ | |
"id": "854547959445323806", | |
"name": "Official Challenge Ping", | |
"color": "#525252", | |
"position": 50 | |
}, | |
{ | |
"id": "814614879045812324", | |
"name": "Poll Ping", | |
"color": null, | |
"position": 49 | |
}, | |
{ | |
"id": "849178678701064203", | |
"name": "pog a conversation starter", | |
"color": "#E74C3C", | |
"position": 48 | |
}, | |
{ | |
"id": "831902814950522900", | |
"name": "Stream Ping", | |
"color": null, | |
"position": 47 | |
}, | |
{ | |
"id": "849032245279850506", | |
"name": "Announcement Ping", | |
"color": null, | |
"position": 46 | |
}, | |
{ | |
"id": "744158968854741044", | |
"name": "Project: Aardvark", | |
"color": "#9B59B6", | |
"position": 43 | |
}, | |
{ | |
"id": "813475475816710184", | |
"name": "Project: Blossoming", | |
"color": "#9B59B6", | |
"position": 40 | |
}, | |
{ | |
"id": "808434733486571570", | |
"name": "Project: CSISP", | |
"color": "#9B59B6", | |
"position": 36 | |
}, | |
{ | |
"id": "878363922099490846", | |
"name": "Misc Access", | |
"color": "#009BFF", | |
"position": 14 | |
} | |
], | |
"avatarUrl": "https://cdn.discordapp.com/avatars/676414144643203120/5f7841effaedd08165f6f7588c987c11.png?size=512" | |
}, | |
"attachments": [], | |
"embeds": [], | |
"stickers": [], | |
"reactions": [ | |
{ | |
"emoji": { | |
"id": "", | |
"name": "\uD83D\uDC4D", | |
"code": "thumbsup", | |
"isAnimated": false, | |
"imageUrl": "https://cdn.jsdelivr.net/gh/twitter/twemoji@latest/assets/svg/1f44d.svg" | |
}, | |
"count": 1, | |
"users": [ | |
{ | |
"id": "658881928744927292", | |
"name": "hzz23", | |
"discriminator": "0000", | |
"nickname": "Hz23", | |
"color": "#A6D5FF", | |
"isBot": false, | |
"avatarUrl": "https://cdn.discordapp.com/avatars/658881928744927292/892ef5f74bc0c60e327024733b0a6ba6.png?size=512" | |
} | |
] | |
} | |
], | |
"mentions": [ | |
{ | |
"id": "658881928744927292", | |
"name": "hzz23", | |
"discriminator": "0000", | |
"nickname": "Hz23", | |
"color": "#A6D5FF", | |
"isBot": false, | |
"roles": [ | |
{ | |
"id": "743483193721749564", | |
"name": "Level 2", | |
"color": "#A6D5FF", | |
"position": 78 | |
}, | |
{ | |
"id": "746976713959014460", | |
"name": "Help-Python", | |
"color": null, | |
"position": 60 | |
}, | |
{ | |
"id": "1028001755260276856", | |
"name": "Help-Rust", | |
"color": null, | |
"position": 6 | |
} | |
], | |
"avatarUrl": "https://cdn.discordapp.com/avatars/658881928744927292/892ef5f74bc0c60e327024733b0a6ba6.png?size=512" | |
} | |
], | |
"reference": { | |
"messageId": "1210020786266447992", | |
"channelId": "1209973607850057799", | |
"guildId": "743031115207540836" | |
}, | |
"inlineEmojis": [] | |
}, | |
{ | |
"id": "1210046854847402035", | |
"type": "Default", | |
"timestamp": "2024-02-21T21:14:11.779-05:00", | |
"timestampEdited": null, | |
"callEndedTimestamp": null, | |
"isPinned": false, | |
"content": "https://github.com/hamzaelmi068/PremierLeague_webscraper", | |
"author": { | |
"id": "658881928744927292", | |
"name": "hzz23", | |
"discriminator": "0000", | |
"nickname": "Hz23", | |
"color": "#A6D5FF", | |
"isBot": false, | |
"roles": [ | |
{ | |
"id": "743483193721749564", | |
"name": "Level 2", | |
"color": "#A6D5FF", | |
"position": 78 | |
}, | |
{ | |
"id": "746976713959014460", | |
"name": "Help-Python", | |
"color": null, | |
"position": 60 | |
}, | |
{ | |
"id": "1028001755260276856", | |
"name": "Help-Rust", | |
"color": null, | |
"position": 6 | |
} | |
], | |
"avatarUrl": "https://cdn.discordapp.com/avatars/658881928744927292/892ef5f74bc0c60e327024733b0a6ba6.png?size=512" | |
}, | |
"attachments": [], | |
"embeds": [ | |
{ | |
"title": "GitHub - hamzaelmi068/PremierLeague_webscraper: Predicting the winn...", | |
"url": "https://github.com/hamzaelmi068/PremierLeague_webscraper", | |
"timestamp": null, | |
"description": "Predicting the winner of football matches in the English Premier League (EPL) - hamzaelmi068/PremierLeague_webscraper", | |
"color": "#1E2327", | |
"thumbnail": { | |
"url": "https://images-ext-1.discordapp.net/external/0e_Cp6SK1vwXPhTgQJnDXtzZBhJasSXcpp8ZPPZ59uU/https/opengraph.githubassets.com/1d777865e38ad9ad25d6a6be048663ecf38bde096b1eac88e3cd0d6845696fcc/hamzaelmi068/PremierLeague_webscraper", | |
"width": 1200, | |
"height": 600 | |
}, | |
"images": [], | |
"fields": [], | |
"inlineEmojis": [] | |
} | |
], | |
"stickers": [], | |
"reactions": [], | |
"mentions": [], | |
"inlineEmojis": [] | |
}, | |
{ | |
"id": "1210046916847468576", | |
"type": "Default", | |
"timestamp": "2024-02-21T21:14:26.561-05:00", | |
"timestampEdited": null, | |
"callEndedTimestamp": null, | |
"isPinned": false, | |
"content": "Any thoughts or suggestions? @Hudson @Sammy", | |
"author": { | |
"id": "658881928744927292", | |
"name": "hzz23", | |
"discriminator": "0000", | |
"nickname": "Hz23", | |
"color": "#A6D5FF", | |
"isBot": false, | |
"roles": [ | |
{ | |
"id": "743483193721749564", | |
"name": "Level 2", | |
"color": "#A6D5FF", | |
"position": 78 | |
}, | |
{ | |
"id": "746976713959014460", | |
"name": "Help-Python", | |
"color": null, | |
"position": 60 | |
}, | |
{ | |
"id": "1028001755260276856", | |
"name": "Help-Rust", | |
"color": null, | |
"position": 6 | |
} | |
], | |
"avatarUrl": "https://cdn.discordapp.com/avatars/658881928744927292/892ef5f74bc0c60e327024733b0a6ba6.png?size=512" | |
}, | |
"attachments": [], | |
"embeds": [], | |
"stickers": [], | |
"reactions": [], | |
"mentions": [ | |
{ | |
"id": "676414144643203120", | |
"name": "hudsong0", | |
"discriminator": "0000", | |
"nickname": "Hudson", | |
"color": "#D4AF37", | |
"isBot": false, | |
"roles": [ | |
{ | |
"id": "743031297089339492", | |
"name": "ADMIN", | |
"color": "#D4AF37", | |
"position": 93 | |
}, | |
{ | |
"id": "744557622262366309", | |
"name": "Trusted", | |
"color": "#11806A", | |
"position": 90 | |
}, | |
{ | |
"id": "743482290180587614", | |
"name": "Moderator", | |
"color": "#E67E22", | |
"position": 89 | |
}, | |
{ | |
"id": "802264469832597526", | |
"name": "Trial moderator", | |
"color": "#992D22", | |
"position": 88 | |
}, | |
{ | |
"id": "1019197326495064136", | |
"name": "FOOTED", | |
"color": "#E8BEAC", | |
"position": 83 | |
}, | |
{ | |
"id": "743481776676143205", | |
"name": "Level 5", | |
"color": "#3232E2", | |
"position": 81 | |
}, | |
{ | |
"id": "746976140937396224", | |
"name": "Helper", | |
"color": "#6F0035", | |
"position": 76 | |
}, | |
{ | |
"id": "805850008040898621", | |
"name": "CodeCom Judge", | |
"color": "#E74C3C", | |
"position": 74 | |
}, | |
{ | |
"id": "848201437573152790", | |
"name": "Highly Active", | |
"color": "#A26D27", | |
"position": 73 | |
}, | |
{ | |
"id": "809501289163391026", | |
"name": "Honorary member", | |
"color": "#3600FF", | |
"position": 70 | |
}, | |
{ | |
"id": "821492358326517840", | |
"name": "Server Bumper", | |
"color": "#A6AEFF", | |
"position": 69 | |
}, | |
{ | |
"id": "874858515838148608", | |
"name": "Music", | |
"color": "#2ECC71", | |
"position": 66 | |
}, | |
{ | |
"id": "821123781279350784", | |
"name": "Truth Seeker", | |
"color": "#2ECC71", | |
"position": 65 | |
}, | |
{ | |
"id": "743031248452321310", | |
"name": "Language Maker", | |
"color": "#2ECC71", | |
"position": 64 | |
}, | |
{ | |
"id": "813448238433959947", | |
"name": "Good Leader", | |
"color": "#2ECC71", | |
"position": 63 | |
}, | |
{ | |
"id": "821123981717274654", | |
"name": "Bot Maker", | |
"color": "#2ECC71", | |
"position": 62 | |
}, | |
{ | |
"id": "800384434825986048", | |
"name": "FullStack", | |
"color": "#2ECC71", | |
"position": 61 | |
}, | |
{ | |
"id": "746976713959014460", | |
"name": "Help-Python", | |
"color": null, | |
"position": 60 | |
}, | |
{ | |
"id": "750234470379946004", | |
"name": "Help-Aardvark", | |
"color": null, | |
"position": 59 | |
}, | |
{ | |
"id": "746976912181821511", | |
"name": "Help-JS", | |
"color": null, | |
"position": 58 | |
}, | |
{ | |
"id": "746976986777255937", | |
"name": "Help-C", | |
"color": null, | |
"position": 57 | |
}, | |
{ | |
"id": "824686275470032967", | |
"name": "Help-C++", | |
"color": null, | |
"position": 55 | |
}, | |
{ | |
"id": "1069778726457450557", | |
"name": "Help-HTML/CSS", | |
"color": null, | |
"position": 52 | |
}, | |
{ | |
"id": "854548376393089044", | |
"name": "User-Made Challenge Ping", | |
"color": null, | |
"position": 51 | |
}, | |
{ | |
"id": "854547959445323806", | |
"name": "Official Challenge Ping", | |
"color": "#525252", | |
"position": 50 | |
}, | |
{ | |
"id": "814614879045812324", | |
"name": "Poll Ping", | |
"color": null, | |
"position": 49 | |
}, | |
{ | |
"id": "849178678701064203", | |
"name": "pog a conversation starter", | |
"color": "#E74C3C", | |
"position": 48 | |
}, | |
{ | |
"id": "831902814950522900", | |
"name": "Stream Ping", | |
"color": null, | |
"position": 47 | |
}, | |
{ | |
"id": "849032245279850506", | |
"name": "Announcement Ping", | |
"color": null, | |
"position": 46 | |
}, | |
{ | |
"id": "744158968854741044", | |
"name": "Project: Aardvark", | |
"color": "#9B59B6", | |
"position": 43 | |
}, | |
{ | |
"id": "813475475816710184", | |
"name": "Project: Blossoming", | |
"color": "#9B59B6", | |
"position": 40 | |
}, | |
{ | |
"id": "808434733486571570", | |
"name": "Project: CSISP", | |
"color": "#9B59B6", | |
"position": 36 | |
}, | |
{ | |
"id": "878363922099490846", | |
"name": "Misc Access", | |
"color": "#009BFF", | |
"position": 14 | |
} | |
], | |
"avatarUrl": "https://cdn.discordapp.com/avatars/676414144643203120/5f7841effaedd08165f6f7588c987c11.png?size=512" | |
}, | |
{ | |
"id": "770728067550150708", | |
"name": "uelsam", | |
"discriminator": "0000", | |
"nickname": "Sammy", | |
"color": "#E67E22", | |
"isBot": false, | |
"roles": [ | |
{ | |
"id": "743482290180587614", | |
"name": "Moderator", | |
"color": "#E67E22", | |
"position": 89 | |
}, | |
{ | |
"id": "802264469832597526", | |
"name": "Trial moderator", | |
"color": "#992D22", | |
"position": 88 | |
}, | |
{ | |
"id": "743482969359908968", | |
"name": "Level 3", | |
"color": "#A6AEFF", | |
"position": 79 | |
}, | |
{ | |
"id": "746976140937396224", | |
"name": "Helper", | |
"color": "#6F0035", | |
"position": 76 | |
}, | |
{ | |
"id": "848201437573152790", | |
"name": "Highly Active", | |
"color": "#A26D27", | |
"position": 73 | |
}, | |
{ | |
"id": "800385754219937792", | |
"name": "CodeCom Participant", | |
"color": "#E91E63", | |
"position": 72 | |
}, | |
{ | |
"id": "874858515838148608", | |
"name": "Music", | |
"color": "#2ECC71", | |
"position": 66 | |
}, | |
{ | |
"id": "746976912181821511", | |
"name": "Help-JS", | |
"color": null, | |
"position": 58 | |
}, | |
{ | |
"id": "854548376393089044", | |
"name": "User-Made Challenge Ping", | |
"color": null, | |
"position": 51 | |
}, | |
{ | |
"id": "854547959445323806", | |
"name": "Official Challenge Ping", | |
"color": "#525252", | |
"position": 50 | |
}, | |
{ | |
"id": "814614879045812324", | |
"name": "Poll Ping", | |
"color": null, | |
"position": 49 | |
}, | |
{ | |
"id": "849178678701064203", | |
"name": "pog a conversation starter", | |
"color": "#E74C3C", | |
"position": 48 | |
}, | |
{ | |
"id": "831902814950522900", | |
"name": "Stream Ping", | |
"color": null, | |
"position": 47 | |
}, | |
{ | |
"id": "849032245279850506", | |
"name": "Announcement Ping", | |
"color": null, | |
"position": 46 | |
}, | |
{ | |
"id": "878363922099490846", | |
"name": "Misc Access", | |
"color": "#009BFF", | |
"position": 14 | |
}, | |
{ | |
"id": "928781011641311265", | |
"name": "Project: argon-assistant", | |
"color": "#9B59B6", | |
"position": 13 | |
} | |
], | |
"avatarUrl": "https://cdn.discordapp.com/avatars/770728067550150708/a17f51e52db621ec6f652cad191b0491.png?size=512" | |
} | |
], | |
"inlineEmojis": [] | |
}, | |
{ | |
"id": "1210047256313729044", | |
"type": "Default", | |
"timestamp": "2024-02-21T21:15:47.496-05:00", | |
"timestampEdited": null, | |
"callEndedTimestamp": null, | |
"isPinned": false, | |
"content": "my first time web scraping with jupyter and python libraries so open to any criticsm on how i can improve this / next steps", | |
"author": { | |
"id": "658881928744927292", | |
"name": "hzz23", | |
"discriminator": "0000", | |
"nickname": "Hz23", | |
"color": "#A6D5FF", | |
"isBot": false, | |
"roles": [ | |
{ | |
"id": "743483193721749564", | |
"name": "Level 2", | |
"color": "#A6D5FF", | |
"position": 78 | |
}, | |
{ | |
"id": "746976713959014460", | |
"name": "Help-Python", | |
"color": null, | |
"position": 60 | |
}, | |
{ | |
"id": "1028001755260276856", | |
"name": "Help-Rust", | |
"color": null, | |
"position": 6 | |
} | |
], | |
"avatarUrl": "https://cdn.discordapp.com/avatars/658881928744927292/892ef5f74bc0c60e327024733b0a6ba6.png?size=512" | |
}, | |
"attachments": [], | |
"embeds": [], | |
"stickers": [], | |
"reactions": [], | |
"mentions": [], | |
"inlineEmojis": [] | |
}, | |
{ | |
"id": "1210047634039902258", | |
"type": "Default", | |
"timestamp": "2024-02-21T21:17:17.553-05:00", | |
"timestampEdited": null, | |
"callEndedTimestamp": null, | |
"isPinned": false, | |
"content": "I don't do python haha but nice job with webscraping", | |
"author": { | |
"id": "770728067550150708", | |
"name": "uelsam", | |
"discriminator": "0000", | |
"nickname": "Sammy", | |
"color": "#E67E22", | |
"isBot": false, | |
"roles": [ | |
{ | |
"id": "743482290180587614", | |
"name": "Moderator", | |
"color": "#E67E22", | |
"position": 89 | |
}, | |
{ | |
"id": "802264469832597526", | |
"name": "Trial moderator", | |
"color": "#992D22", | |
"position": 88 | |
}, | |
{ | |
"id": "743482969359908968", | |
"name": "Level 3", | |
"color": "#A6AEFF", | |
"position": 79 | |
}, | |
{ | |
"id": "746976140937396224", | |
"name": "Helper", | |
"color": "#6F0035", | |
"position": 76 | |
}, | |
{ | |
"id": "848201437573152790", | |
"name": "Highly Active", | |
"color": "#A26D27", | |
"position": 73 | |
}, | |
{ | |
"id": "800385754219937792", | |
"name": "CodeCom Participant", | |
"color": "#E91E63", | |
"position": 72 | |
}, | |
{ | |
"id": "874858515838148608", | |
"name": "Music", | |
"color": "#2ECC71", | |
"position": 66 | |
}, | |
{ | |
"id": "746976912181821511", | |
"name": "Help-JS", | |
"color": null, | |
"position": 58 | |
}, | |
{ | |
"id": "854548376393089044", | |
"name": "User-Made Challenge Ping", | |
"color": null, | |
"position": 51 | |
}, | |
{ | |
"id": "854547959445323806", | |
"name": "Official Challenge Ping", | |
"color": "#525252", | |
"position": 50 | |
}, | |
{ | |
"id": "814614879045812324", | |
"name": "Poll Ping", | |
"color": null, | |
"position": 49 | |
}, | |
{ | |
"id": "849178678701064203", | |
"name": "pog a conversation starter", | |
"color": "#E74C3C", | |
"position": 48 | |
}, | |
{ | |
"id": "831902814950522900", | |
"name": "Stream Ping", | |
"color": null, | |
"position": 47 | |
}, | |
{ | |
"id": "849032245279850506", | |
"name": "Announcement Ping", | |
"color": null, | |
"position": 46 | |
}, | |
{ | |
"id": "878363922099490846", | |
"name": "Misc Access", | |
"color": "#009BFF", | |
"position": 14 | |
}, | |
{ | |
"id": "928781011641311265", | |
"name": "Project: argon-assistant", | |
"color": "#9B59B6", | |
"position": 13 | |
} | |
], | |
"avatarUrl": "https://cdn.discordapp.com/avatars/770728067550150708/a17f51e52db621ec6f652cad191b0491.png?size=512" | |
}, | |
"attachments": [], | |
"embeds": [], | |
"stickers": [], | |
"reactions": [ | |
{ | |
"emoji": { | |
"id": "", | |
"name": "\uD83D\uDC4D", | |
"code": "thumbsup", | |
"isAnimated": false, | |
"imageUrl": "https://cdn.jsdelivr.net/gh/twitter/twemoji@latest/assets/svg/1f44d.svg" | |
}, | |
"count": 1, | |
"users": [ | |
{ | |
"id": "658881928744927292", | |
"name": "hzz23", | |
"discriminator": "0000", | |
"nickname": "Hz23", | |
"color": "#A6D5FF", | |
"isBot": false, | |
"avatarUrl": "https://cdn.discordapp.com/avatars/658881928744927292/892ef5f74bc0c60e327024733b0a6ba6.png?size=512" | |
} | |
] | |
} | |
], | |
"mentions": [], | |
"inlineEmojis": [] | |
}, | |
{ | |
"id": "1210047679569199124", | |
"type": "Default", | |
"timestamp": "2024-02-21T21:17:28.408-05:00", | |
"timestampEdited": null, | |
"callEndedTimestamp": null, | |
"isPinned": false, | |
"content": "I know from experience it can be a pain sometimes", | |
"author": { | |
"id": "770728067550150708", | |
"name": "uelsam", | |
"discriminator": "0000", | |
"nickname": "Sammy", | |
"color": "#E67E22", | |
"isBot": false, | |
"roles": [ | |
{ | |
"id": "743482290180587614", | |
"name": "Moderator", | |
"color": "#E67E22", | |
"position": 89 | |
}, | |
{ | |
"id": "802264469832597526", | |
"name": "Trial moderator", | |
"color": "#992D22", | |
"position": 88 | |
}, | |
{ | |
"id": "743482969359908968", | |
"name": "Level 3", | |
"color": "#A6AEFF", | |
"position": 79 | |
}, | |
{ | |
"id": "746976140937396224", | |
"name": "Helper", | |
"color": "#6F0035", | |
"position": 76 | |
}, | |
{ | |
"id": "848201437573152790", | |
"name": "Highly Active", | |
"color": "#A26D27", | |
"position": 73 | |
}, | |
{ | |
"id": "800385754219937792", | |
"name": "CodeCom Participant", | |
"color": "#E91E63", | |
"position": 72 | |
}, | |
{ | |
"id": "874858515838148608", | |
"name": "Music", | |
"color": "#2ECC71", | |
"position": 66 | |
}, | |
{ | |
"id": "746976912181821511", | |
"name": "Help-JS", | |
"color": null, | |
"position": 58 | |
}, | |
{ | |
"id": "854548376393089044", | |
"name": "User-Made Challenge Ping", | |
"color": null, | |
"position": 51 | |
}, | |
{ | |
"id": "854547959445323806", | |
"name": "Official Challenge Ping", | |
"color": "#525252", | |
"position": 50 | |
}, | |
{ | |
"id": "814614879045812324", | |
"name": "Poll Ping", | |
"color": null, | |
"position": 49 | |
}, | |
{ | |
"id": "849178678701064203", | |
"name": "pog a conversation starter", | |
"color": "#E74C3C", | |
"position": 48 | |
}, | |
{ | |
"id": "831902814950522900", | |
"name": "Stream Ping", | |
"color": null, | |
"position": 47 | |
}, | |
{ | |
"id": "849032245279850506", | |
"name": "Announcement Ping", | |
"color": null, | |
"position": 46 | |
}, | |
{ | |
"id": "878363922099490846", | |
"name": "Misc Access", | |
"color": "#009BFF", | |
"position": 14 | |
}, | |
{ | |
"id": "928781011641311265", | |
"name": "Project: argon-assistant", | |
"color": "#9B59B6", | |
"position": 13 | |
} | |
], | |
"avatarUrl": "https://cdn.discordapp.com/avatars/770728067550150708/a17f51e52db621ec6f652cad191b0491.png?size=512" | |
}, | |
"attachments": [], | |
"embeds": [], | |
"stickers": [], | |
"reactions": [], | |
"mentions": [], | |
"inlineEmojis": [] | |
}, | |
{ | |
"id": "1210050980721332294", | |
"type": "Reply", | |
"timestamp": "2024-02-21T21:30:35.464-05:00", | |
"timestampEdited": null, | |
"callEndedTimestamp": null, | |
"isPinned": false, | |
"content": "Yea was my first time had some hurdles", | |
"author": { | |
"id": "658881928744927292", | |
"name": "hzz23", | |
"discriminator": "0000", | |
"nickname": "Hz23", | |
"color": "#A6D5FF", | |
"isBot": false, | |
"roles": [ | |
{ | |
"id": "743483193721749564", | |
"name": "Level 2", | |
"color": "#A6D5FF", | |
"position": 78 | |
}, | |
{ | |
"id": "746976713959014460", | |
"name": "Help-Python", | |
"color": null, | |
"position": 60 | |
}, | |
{ | |
"id": "1028001755260276856", | |
"name": "Help-Rust", | |
"color": null, | |
"position": 6 | |
} | |
], | |
"avatarUrl": "https://cdn.discordapp.com/avatars/658881928744927292/892ef5f74bc0c60e327024733b0a6ba6.png?size=512" | |
}, | |
"attachments": [], | |
"embeds": [], | |
"stickers": [], | |
"reactions": [], | |
"mentions": [ | |
{ | |
"id": "770728067550150708", | |
"name": "uelsam", | |
"discriminator": "0000", | |
"nickname": "Sammy", | |
"color": "#E67E22", | |
"isBot": false, | |
"roles": [ | |
{ | |
"id": "743482290180587614", | |
"name": "Moderator", | |
"color": "#E67E22", | |
"position": 89 | |
}, | |
{ | |
"id": "802264469832597526", | |
"name": "Trial moderator", | |
"color": "#992D22", | |
"position": 88 | |
}, | |
{ | |
"id": "743482969359908968", | |
"name": "Level 3", | |
"color": "#A6AEFF", | |
"position": 79 | |
}, | |
{ | |
"id": "746976140937396224", | |
"name": "Helper", | |
"color": "#6F0035", | |
"position": 76 | |
}, | |
{ | |
"id": "848201437573152790", | |
"name": "Highly Active", | |
"color": "#A26D27", | |
"position": 73 | |
}, | |
{ | |
"id": "800385754219937792", | |
"name": "CodeCom Participant", | |
"color": "#E91E63", | |
"position": 72 | |
}, | |
{ | |
"id": "874858515838148608", | |
"name": "Music", | |
"color": "#2ECC71", | |
"position": 66 | |
}, | |
{ | |
"id": "746976912181821511", | |
"name": "Help-JS", | |
"color": null, | |
"position": 58 | |
}, | |
{ | |
"id": "854548376393089044", | |
"name": "User-Made Challenge Ping", | |
"color": null, | |
"position": 51 | |
}, | |
{ | |
"id": "854547959445323806", | |
"name": "Official Challenge Ping", | |
"color": "#525252", | |
"position": 50 | |
}, | |
{ | |
"id": "814614879045812324", | |
"name": "Poll Ping", | |
"color": null, | |
"position": 49 | |
}, | |
{ | |
"id": "849178678701064203", | |
"name": "pog a conversation starter", | |
"color": "#E74C3C", | |
"position": 48 | |
}, | |
{ | |
"id": "831902814950522900", | |
"name": "Stream Ping", | |
"color": null, | |
"position": 47 | |
}, | |
{ | |
"id": "849032245279850506", | |
"name": "Announcement Ping", | |
"color": null, | |
"position": 46 | |
}, | |
{ | |
"id": "878363922099490846", | |
"name": "Misc Access", | |
"color": "#009BFF", | |
"position": 14 | |
}, | |
{ | |
"id": "928781011641311265", | |
"name": "Project: argon-assistant", | |
"color": "#9B59B6", | |
"position": 13 | |
} | |
], | |
"avatarUrl": "https://cdn.discordapp.com/avatars/770728067550150708/a17f51e52db621ec6f652cad191b0491.png?size=512" | |
} | |
], | |
"reference": { | |
"messageId": "1210047679569199124", | |
"channelId": "1209973607850057799", | |
"guildId": "743031115207540836" | |
}, | |
"inlineEmojis": [] | |
}, | |
{ | |
"id": "1210051128784322591", | |
"type": "Reply", | |
"timestamp": "2024-02-21T21:31:10.765-05:00", | |
"timestampEdited": null, | |
"callEndedTimestamp": null, | |
"isPinned": false, | |
"content": "I was maybe thinking of building a front end for this but not too sure how that'd work or if its suitable for this type of project", | |
"author": { | |
"id": "658881928744927292", | |
"name": "hzz23", | |
"discriminator": "0000", | |
"nickname": "Hz23", | |
"color": "#A6D5FF", | |
"isBot": false, | |
"roles": [ | |
{ | |
"id": "743483193721749564", | |
"name": "Level 2", | |
"color": "#A6D5FF", | |
"position": 78 | |
}, | |
{ | |
"id": "746976713959014460", | |
"name": "Help-Python", | |
"color": null, | |
"position": 60 | |
}, | |
{ | |
"id": "1028001755260276856", | |
"name": "Help-Rust", | |
"color": null, | |
"position": 6 | |
} | |
], | |
"avatarUrl": "https://cdn.discordapp.com/avatars/658881928744927292/892ef5f74bc0c60e327024733b0a6ba6.png?size=512" | |
}, | |
"attachments": [], | |
"embeds": [], | |
"stickers": [], | |
"reactions": [], | |
"mentions": [], | |
"reference": { | |
"messageId": "1210046854847402035", | |
"channelId": "1209973607850057799", | |
"guildId": "743031115207540836" | |
}, | |
"inlineEmojis": [] | |
}, | |
{ | |
"id": "1210051194224119889", | |
"type": "Default", | |
"timestamp": "2024-02-21T21:31:26.367-05:00", | |
"timestampEdited": null, | |
"callEndedTimestamp": null, | |
"isPinned": false, | |
"content": "just so they user can actually see the predctions being made and what not", | |
"author": { | |
"id": "658881928744927292", | |
"name": "hzz23", | |
"discriminator": "0000", | |
"nickname": "Hz23", | |
"color": "#A6D5FF", | |
"isBot": false, | |
"roles": [ | |
{ | |
"id": "743483193721749564", | |
"name": "Level 2", | |
"color": "#A6D5FF", | |
"position": 78 | |
}, | |
{ | |
"id": "746976713959014460", | |
"name": "Help-Python", | |
"color": null, | |
"position": 60 | |
}, | |
{ | |
"id": "1028001755260276856", | |
"name": "Help-Rust", | |
"color": null, | |
"position": 6 | |
} | |
], | |
"avatarUrl": "https://cdn.discordapp.com/avatars/658881928744927292/892ef5f74bc0c60e327024733b0a6ba6.png?size=512" | |
}, | |
"attachments": [], | |
"embeds": [], | |
"stickers": [], | |
"reactions": [], | |
"mentions": [], | |
"inlineEmojis": [] | |
}, | |
{ | |
"id": "1210051240378236968", | |
"type": "Default", | |
"timestamp": "2024-02-21T21:31:37.371-05:00", | |
"timestampEdited": null, | |
"callEndedTimestamp": null, | |
"isPinned": false, | |
"content": "then again not too versed with front end", | |
"author": { | |
"id": "658881928744927292", | |
"name": "hzz23", | |
"discriminator": "0000", | |
"nickname": "Hz23", | |
"color": "#A6D5FF", | |
"isBot": false, | |
"roles": [ | |
{ | |
"id": "743483193721749564", | |
"name": "Level 2", | |
"color": "#A6D5FF", | |
"position": 78 | |
}, | |
{ | |
"id": "746976713959014460", | |
"name": "Help-Python", | |
"color": null, | |
"position": 60 | |
}, | |
{ | |
"id": "1028001755260276856", | |
"name": "Help-Rust", | |
"color": null, | |
"position": 6 | |
} | |
], | |
"avatarUrl": "https://cdn.discordapp.com/avatars/658881928744927292/892ef5f74bc0c60e327024733b0a6ba6.png?size=512" | |
}, | |
"attachments": [], | |
"embeds": [], | |
"stickers": [], | |
"reactions": [], | |
"mentions": [], | |
"inlineEmojis": [] | |
} | |
], | |
"messageCount": 23 | |
} |