{ "cells": [ { "cell_type": "code", "execution_count": 1, "id": "4ed9b1c0-50dc-48ea-b1b6-6be3264255b6", "metadata": {}, "outputs": [], "source": [ "# imports\n", "\n", "import os\n", "import requests\n", "import json\n", "from typing import List\n", "from dotenv import load_dotenv\n", "from bs4 import BeautifulSoup\n", "from IPython.display import Markdown, display, update_display\n", "from openai import OpenAI" ] }, { "cell_type": "code", "execution_count": 2, "id": "23cc579a-43eb-44b5-8105-8ec3d46ec029", "metadata": {}, "outputs": [], "source": [ "# Initialize and constants\n", "\n", "load_dotenv()\n", "os.environ['OPENAI_API_KEY'] = os.getenv('OPENAI_API_KEY', 'your-key-if-not-using-env')\n", "MODEL = 'gpt-4o-mini'\n", "openai = OpenAI()" ] }, { "cell_type": "code", "execution_count": 3, "id": "0206cf1d-00c5-401d-8aa0-88a83aeb8c83", "metadata": {}, "outputs": [], "source": [ "# A class to represent a Webpage\n", "\n", "class Website:\n", " url: str\n", " title: str\n", " body: str\n", " links: List[str]\n", "\n", " def __init__(self, url):\n", " self.url = url\n", " response = requests.get(url)\n", " self.body = response.content\n", " soup = BeautifulSoup(self.body, 'html.parser')\n", " self.title = soup.title.string if soup.title else \"No title found\"\n", " if soup.body:\n", " for irrelevant in soup.body([\"script\", \"style\", \"img\", \"input\"]):\n", " irrelevant.decompose()\n", " self.text = soup.body.get_text(separator=\"\\n\", strip=True)\n", " else:\n", " self.text = \"\"\n", " links = [link.get('href') for link in soup.find_all('a')]\n", " self.links = [link for link in links if link]\n", "\n", " def get_contents(self):\n", " return f\"Webpage Title:\\n{self.title}\\nWebpage Contents:\\n{self.text}\\n\\n\"" ] }, { "cell_type": "code", "execution_count": 4, "id": "e1ab939b-0a81-4301-8820-abdc1b740a86", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Webpage Title:\n", "Washington Capitals | Washington Capitals\n", "Webpage Contents:\n", "Skip to Main Content\n", "Tickets\n", "All Capitals Tickets\n", "Single Game Tickets\n", "2024-25 Season Tickets\n", "Partial Plans\n", "Promotions Schedule\n", "GOVX Military & Govt Employee Discount Program\n", "Special Ticket Offers\n", "Group Tickets\n", "VIP Seating\n", "Account Manager\n", "Tickets for Business\n", "Using the New NHL Mobile App\n", "NHL Ticket Exchange\n", "Digital Ticketing\n", "Capital One Arena\n", "Transformation - The Vaults\n", "Schedule\n", "2024-25 Season Schedule\n", "Practice Schedule\n", "Where To Watch\n", "Home Jersey Schedule\n", "Schedule Sync & Download\n", "Team\n", "Capitals Roster\n", "Capitals Prospects\n", "Caps Alumni\n", "Management\n", "Coaching Staff\n", "Equipment and Trainers\n", "Staff Directory\n", "Monumental Sports and Entertainment\n", "AHL Hershey Bears\n", "ECHL South Carolina Stingrays\n", "News\n", "Capitals News\n", "Capitals Today\n", "Dump N' Chase\n", "Community News\n", "Ted's Take\n", "Video\n", "All Video\n", "Game Highlights\n", "Mic'd Up\n", "Capitals Locker Room\n", "Caps365\n", "Rinkside Update\n", "Off the Ice\n", "Coach's Corner\n", "Caps Game Entertainment\n", "Capitals Alumni\n", "Navigation Menu\n", "History\n", "History\n", "Franchise History\n", "50th Anniversary\n", "Anniversary Teams\n", "Jersey Timeline\n", "2018 Stanley Cup\n", "The Gr8 Chase\n", "Stats\n", "Standings\n", "Listen\n", "Listen\n", "Caps Radio 24/7\n", "Caps Podcasts\n", "Community\n", "Community\n", "Caps in the Community\n", "Diversity, Equity, and Inclusion\n", "Player Programs\n", "Community Initiatives\n", "Community News\n", "Community FAQ\n", "Caps In School\n", "CareFirst\n", "Military Commitment\n", "MSE Foundation\n", "Fans\n", "Fans\n", "Caps Kids Club\n", "Baby Caps\n", "Caps Canines\n", "Slapshot\n", "Win With the Caps\n", "District E powered by Ticketmaster\n", "Ice Chips E-News\n", "LED Board Announcements\n", "Getting to the Game\n", "NHL Code of Conduct\n", "Youth Hockey\n", "Shop\n", "Shop\n", "Official Capitals Online Store\n", "Official Team Stores\n", "NHL Auctions\n", "League\n", "NHL.com\n", "Caps Host Rangers in Homestand Opener\n", "Caps open three-game homestand vs. Metro rivals from Manhattan\n", "3:17\n", "Rinkside Update | Nic Dowd\n", "2:04\n", "Two-Man Advantage | October 29\n", "5:20\n", "Spencer Carbery | October 29\n", "Account Manager\n", "manage_accounts\n", "Season Tickets\n", "local_activity\n", "VIP Plans\n", "event_seat\n", "Facebook\n", "YouTube\n", "Instagram\n", "Twitter\n", "Threads\n", "Discord\n", "Twitch\n", "TikTok\n", "BUY TICKETS\n", "BUY TICKETS\n", "BUY TICKETS\n", "BUY TICKETS\n", "Locker Room in partnership with MedStar Health\n", "1:06\n", "Postgame | Tom Wilson\n", "1:06\n", "Postgame | Spencer Carbery\n", "0:41\n", "Postgame | Charlie Lindgren\n", "0:42\n", "Logan Thompson | Postgame\n", "2:59\n", "Nic Dowd | Postgame\n", "1:36\n", "Pierre-Luc Dubois | Postgame\n", "1:49\n", "Charlie Lindgren | Postgame\n", "1:22\n", "Andrew Mangiapane | Postgame\n", "2:36\n", "Jakob Chychrun | Postgame\n", "1:50\n", "John Carlson | Postgame\n", "Previous\n", "Next\n", "Quick Hits\n", "Caps Halloween 2024\n", "Now Available! Slapshot Halloween Grams\n", "Hockey Halloween\n", "Color of Hockey: Smith-Pelly's role expanding as Capitals TV analyst\n", "Transactions presented by Shift4\n", "Capitals Recall Mike Sgarbossa\n", "Capitals Sign Jakub Vrana\n", "Capitals Sign Eriks Mateiko\n", "Caps Issue PTO Invite to Vrana\n", "Capitals Loan Leon Muggli to EV Zug of the Swiss National League\n", "Capitals Sign Leon Muggli\n", "Capitals Loan Ludwig Persson to Jukurit of Finnish Liiga\n", "Capitals Sign Cam Allen\n", "Capitals Sign Ilya Protas\n", "Capitals Sign Terik Parascak\n", "Capitals Re-sign Alex Limoges\n", "Capitals Re-sign Riley Sutter and Hardy Häman Aktell\n", "Caps Swing Deal, Add Three UFA Skaters\n", "Capitals Sign Brandon Duhaime\n", "Capitals Sign Taylor Raddysh\n", "Capitals Sign Matt Roy\n", "Capitals Acquire Jakob Chychrun from the Ottawa Senators\n", "Capitals Re-sign Connor McMichael\n", "Capitals Re-sign Mitchell Gibson, Chase Priskie and Ethen Frank\n", "Capitals Acquire Logan Thompson from the Vegas Golden Knights\n", "Capitals Acquire Second-Round in 2024 Draft from Buffalo for Beck Malenstyn\n", "Capitals Acquire Andrew Mangiapane from the Calgary Flames\n", "Capitals Acquire Pierre-Luc Dubois from the Los Angeles Kings\n", "Capitals Acquire 2025 Third-Round Pick from Carolina for Evgeny Kuznetsov\n", "Capitals Acquire 2024 Third-Round Pick and 2025 Fifth-Round Pick from Toronto for Joel Edmundson\n", "Previous\n", "Next\n", "Capitals Podcasts\n", "Caps Radio 24/7\n", "Listen to the Washington Capitals no matter where you are! John Walton & co. bring Caps hockey games and analysis all hours of the day for FREE on the Tunein app at CapsRadio247.com.\n", "Listen Now\n", "A Legacy in ALL CAPS\n", "Celebrate 50 years of Capitals Hockey! Learn all about the 50th Anniversary celebrations planned as part of the upcoming 2024-25 season.\n", "A Legacy in ALL CAPS\n", "Capital One Cardholder Benefits\n", "Capital One Cardholders receive special perks, including:\n", "Discounts on tickets, concessions, and retail\n", "VIP Experiences\n", "Monumental Network subscription, and more!\n", "Learn More\n", "Our Partners\n", "Facebook\n", "YouTube\n", "Instagram\n", "Twitter\n", "Threads\n", "Discord\n", "Twitch\n", "TikTok\n", "Contact Us\n", "Capitals Privacy Policy\n", "Partnership Opportunities\n", "Careers\n", "Hershey Bears\n", "South Carolina Stingrays\n", "Monumental Sports Network\n", "Monumental Sports and Entertainment\n", "WashingtonCaps.com is the official Web site of the Washington Capitals. Washington Capitals and WashingtonCaps.com, WashingtonCapitals.com are trademarks of Lincoln Hockey. NHL, the NHL Shield, the word mark and image of the Stanley Cup and NHL Conference logos are registered trademarks of the National Hockey League. All NHL logos and marks and NHL team logos and marks as well as all other proprietary materials depicted herein are the property of the NHL and the respective NHL teams and may not be reproduced without the prior written consent of NHL Enterprises, L.P. Copyright © 1999-2020 Lincoln Hockey and the National Hockey League. All Rights Reserved. NHL, the NHL Shield and the word mark NHL Winter Classic are registered trademarks and the NHL Winter Classic logo is a trademark of the National Hockey League. NHL and NHL team marks are the property of the NHL and its teams. © NHL 2024. All Rights Reserved.\n", "NHL.com Terms of Service\n", "NHL.com Privacy Policy\n", "Cookie Policy\n", "Cookie Settings\n", "Copyright Policy\n", "Employment\n", "Close\n", "\n", "\n" ] } ], "source": [ "caps = Website(\"https://www.nhl.com/capitals/\")\n", "print(caps.get_contents())" ] }, { "cell_type": "code", "execution_count": 5, "id": "6bc9763c-e8cb-47f4-a5f0-fccbdb34f5f9", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "['#main-content', '/capitals', '/capitals', '/capitals/tickets/', 'https://www.ticketmaster.com/washington-capitals-tickets/artist/806039?brand=capitals&wt.mc_id=NHL_TEAM_WSH_SINGLE_GAME_TIX_LINK&utm_source=washcaps_tm&utm_medium=web_organic&utm_campaign=2425_sgb&utm_content=tickets_nav', 'https://www.nhl.com/capitals/club-red-365/', 'https://www.nhl.com/capitals/tickets/partial-plans', 'https://www.nhl.com/capitals/tickets/promotions', 'https://auth.govx.com/tickets/entertainer-events/39734b77-0b23-e811-80e5-14187735bc96/', 'https://www.nhl.com/capitals/tickets/offers', 'https://www.nhl.com/capitals/tickets/group-tickets', 'https://www.nhl.com/capitals/tickets/vip', 'https://am.ticketmaster.com/monumental/?wt.mc_id=NHL_TEAM_WSH_ACCOUNT_MANAGER_TIX&utm_source=washcaps_tm&utm_medium=web_organic&utm_campaign=2425sgb&utm_content=account_manager_tix', 'https://www.nhl.com/capitals/tickets/business', 'https://www.nhl.com/capitals/tickets/mobile-app-setup', 'https://www.ticketmaster.com/washington-capitals-tickets/artist/806039?brand=capitals&wt.mc_id=NHL_TEAM_WAS_NAV&utm_source=NHL.com&utm_medium=client&utm_campaign=NHL_TEAM_WAS&utm_content=NAV', 'https://am.ticketmaster.com/monumental/mobileticketing-view#/', 'https://www.nhl.com/capitals/arena', 'https://www.capitalonearena.com/premier/explore/the-vaults', 'https://www.nhl.com/capitals/schedule', 'https://www.nhl.com/capitals/team/practice', 'https://www.nhl.com/capitals/fans/where-to-watch', 'https://www.nhl.com/capitals/fans/jersey-schedule', 'https://www.nhl.com/capitals/fans/schedule-downloads', '/capitals/roster', 'https://www.nhl.com/capitals/prospects', '/capitals/alumni/', '/capitals/team/management', '/capitals/team/coaching-staff', '/capitals/team/equipment-training-staff', '/capitals/team/staff', 'https://monumentalsports.com/who-we-are/', 'https://www.hersheybears.com/index', 'https://www.stingrayshockey.com/index', '/capitals/news/', '/capitals/caps-today/', '/capitals/news/topic/dump-n-chase/', '/capitals/news/topic/community-news/', 'https://tedstake.com/blog/', 'https://www.nhl.com/capitals/video/', '/capitals/video/topic/game-highlights/', '/capitals/video/topic/micd-up/', '/capitals/video/topic/locker-room/', '/capitals/video/topic/caps-365/', '/capitals/video/topic/rinkside-update/', '/capitals/video/topic/off-the-ice/', '/capitals/video/topic/coachs-corner/', '/capitals/video/topic/game-entertainment/', '/capitals/video/topic/alumni/', 'https://www.nhl.com/capitals/history/', 'https://www.nhl.com/capitals/history/50th-anniversary', 'https://www.nhl.com/capitals/history/anniversary-teams', 'https://www.nhl.com/capitals/history/jersey-timeline', 'https://www.nhl.com/capitals/history/2018-stanley-cup', 'https://www.nhl.com/capitals/history/the-gr8-chase', '/capitals/stats', '/capitals/standings', '/capitals/multimedia/caps-radio-247', '/capitals/multimedia/podcasts/', '/capitals/community/', '/capitals/info/diversity-equity-inclusion', '/capitals/community/?#player-programs', '/capitals/community/?#initiatives', '/capitals/news/topic/community-news/', '/capitals/community/frequently-asked-questions', '/capitals/caps-in-school/', '/capitals/community/carefirst', '/capitals/community/military', '/capitals/foundation/', 'https://www.nhl.com/capitals/fans/kids-club', 'https://www.nhl.com/capitals/fans/baby-caps', 'https://www.nhl.com/capitals/fans/caps-canines', '/capitals/slapshot/', '/capitals/fans/win-with-the-caps', 'https://www.nhl.com/capitals/fans/district-e', 'http://pages.washingtoncaps.com/capsemailsubscriptions', '/capitals/fans/game-day-announcements', '/capitals/arena/parking-metro', '/capitals/arena/code-of-conduct', 'https://www.capsyouthhockey.com', 'https://shop.nhl.com/washington-capitals/t-25710842+z-9515527-1374931992?id=WSHMainNav', '/capitals/arena/store', 'http://auctions.nhl.com/iSynApp/allAuction.action?sid=1100803&rc=20&pgmode1=teamsearch&pgcust1=capitals&pgcust2=&pgcust3=panname_teamName_s&qt[0].type=fieldmatch&qt[0].name=panname_teamName_s&qt[0].value1=capitals&navid=auctions-nav-capitals', '/info/teams/', '/', '/capitals/search', '/capitals/news/caps-host-rangers-in-homestand-opener', '/capitals/video/rinkside-update-nic-dowd-6363929678112', '/capitals/video/two-man-advantage-october-29-6363928635112', '/capitals/video/spencer-carbery-october-29-6363927145112', 'https://am.ticketmaster.com/monumental/?wt.mc_id=NHL_TEAM_WSH_ACCOUNT_MANAGER_TIX&utm_source=washcaps_tm&utm_medium=web_organic&utm_campaign=2425sgb&utm_content=account_manager_tix', '/capitals/club-red-365/', '/capitals/tickets/vip', 'https://www.facebook.com/Capitals', 'https://www.youtube.com/capitals', 'https://www.instagram.com/capitals', 'https://www.twitter.com/capitals', 'https://www.threads.net/@capitals', 'https://discord.gg/xQr6Sx5WHV', 'https://www.twitch.tv/capitals', 'https://www.tiktok.com/@capitals', 'https://www.ticketmaster.com/event/150060E2C1F43EB2?brand=capitals&artistid=806039&utm_source=washcaps&utm_medium=web_organic&utm_campaign=ca1031mc&utm_content=uhgm', 'https://www.ticketmaster.com/event/150060E2C1F43EB2?brand=capitals&artistid=806039&utm_source=washcaps&utm_medium=web_organic&utm_campaign=ca1031mc&utm_content=uhgm', 'https://www.ticketmaster.com/event/150060E2C1F93EB7?brand=capitals&artistid=806039&utm_source=washcaps&utm_medium=web_organic&utm_campaign=ca1102cj&utm_content=uhgm', 'https://www.ticketmaster.com/event/150060E2C1FD3EDA?brand=capitals&artistid=806039&utm_source=washcaps&utm_medium=web_organic&utm_campaign=ca1106np&utm_content=uhgm', '/capitals/video/postgame-tom-wilson-6363819950112', '/capitals/video/postgame-spencer-carbery-6363820731112', '/capitals/video/postgame-charlie-lindgren-6363818696112', '/capitals/video/logan-thompson-postgame-6363671218112', '/capitals/video/nic-dowd-postgame-6363671585112', '/capitals/video/pierre-luc-dubois-postgame-6363671679112', '/capitals/video/charlie-lindgren-postgame-6363620622112', '/capitals/video/andrew-mangiapane-postgame-6363621468112', '/capitals/video/jakob-chychrun-postgame-6363618891112', '/capitals/video/john-carlson-postgame-6363618652112', '/capitals/news/caps-halloween-2024', 'https://washcaps.formstack.com/forms/slappy_halloween', 'https://washcaps.formstack.com/forms/slappy_halloween', 'https://www.nhl.com/capitals/fans/capsolantern', 'https://www.nhl.com/capitals/fans/capsolantern', '/capitals/news/devante-smith-pelly-growing-as-washington-tv-analyst-x7362', '/capitals/news/capitals-recall-mike-sgarbossa-x4079', '/capitals/news/capitals-sign-jakub-vrana', '/capitals/news/capitals-sign-eriks-mateiko', '/capitals/news/caps-issue-pto-invite-to-vrana', '/capitals/news/capitals-loan-leon-muggli-to-ev-zug-of-the-swiss-national-league', '/capitals/news/capitals-sign-leon-muggli', '/capitals/news/capitals-loan-ludwig-persson-to-jukurit-of-finnish-liiga', '/capitals/news/capitals-sign-cam-allen', '/capitals/news/capitals-sign-ilya-protas', '/capitals/news/capitals-sign-terik-parascak', '/capitals/news/capitals-re-sign-alex-limoges', '/capitals/news/capitals-re-sign-riley-sutter-and-hardy-haman-aktell', '/capitals/news/caps-swing-deal-add-three-ufa-skaters', '/capitals/news/capitals-sign-brandon-duhaime', '/capitals/news/capitals-sign-taylor-raddysh', '/capitals/news/capitals-sign-matt-roy', '/capitals/news/capitals-acquire-jakob-chychrun-from-the-ottawa-senators', '/capitals/news/capitals-re-sign-connor-mcmichael', '/capitals/news/capitals-re-sign-mitchell-gibson-chase-priskie-and-ethen-frank', '/capitals/news/capitals-acquire-logan-thompson-from-the-vegas-golden-knights', '/capitals/news/capitals-acquire-second-round-in-2024-draft-from-buffalo-for-beck-malenstyn', '/capitals/news/capitals-acquire-andrew-mangiapane-from-the-calgary-flames', '/capitals/news/capitals-acquire-pierre-luc-dubois-from-the-los-angeles-kings', '/capitals/news/capitals-acquire-2025-third-round-pick-from-carolina-for-evgeny-kuznetsov', '/capitals/news/capitals-acquire-2024-third-round-pick-and-2025-fifth-round-pick-from-toronto-for-joel-edmundson', '/capitals/multimedia/caps-radio-247', 'https://www.nhl.com/capitals/history/50th-anniversary', '/capitals/fans/capital-one-cardholder', 'https://pages.washingtoncaps.com/capsemailsubscriptions', 'https://www.ticketmaster.com/artist/806039?brand=capitals?extcmp=tm205818&utm_source=NHL.com&utm_medium=cli%20ent&utm_campaign=NHL_TEAM_WAS&utm_content=FOOTER', 'https://www.medstarcapitalsiceplex.com/', 'https://www.geico.com/', 'https://www.facebook.com/Capitals', 'https://www.youtube.com/capitals', 'https://www.instagram.com/capitals', 'https://www.twitter.com/capitals', 'https://www.threads.net/@capitals', 'https://discord.gg/xQr6Sx5WHV', 'https://www.twitch.tv/capitals', 'https://www.tiktok.com/@capitals', 'https://www.nhl.com/capitals/info/contact-us', 'https://media.d3.nhle.com/image/private/t_document/prd/mumeknrfoygtjbif6sd6.pdf', 'https://monumentalsports.com/partnerships/index', 'https://www.teamworkonline.com/multiple-properties/monumentalsports/monumental-sports', 'https://www.hersheybears.com/index', 'https://www.stingrayshockey.com/index', 'https://www.monumentalsportsnetwork.com/index', 'https://monumentalsports.com/index', '/capitals', '/', '/info/terms-of-service', '/info/privacy-policy', '/info/cookie-policy', 'https://www.nhl.com/info/cookie-settings', '/info/copyright-policy', '/info/careers']\n" ] } ], "source": [ "print(caps.links)" ] }, { "cell_type": "code", "execution_count": 6, "id": "11a407e0-6d23-4199-bb58-344352178978", "metadata": {}, "outputs": [], "source": [ "link_system_prompt = \"You are provided with a list of links found on a webpage. \\\n", "You are able to decide which of the links would be most relevant to include in a brochure about the team, \\\n", "such as links to an About page, Team, News, Schedule, History, Stats pages.\\n\"\n", "link_system_prompt += \"You should respond in JSON as in this example:\"\n", "link_system_prompt += \"\"\"\n", "{\n", " \"links\": [\n", " {\"type\": \"about page\", \"url\": \"https://full.url/goes/here/about\"},\n", " {\"type\": \"team page\", \"url\": \"https://full.url/goes/here/team\"},\n", " {\"type\": \"news page\": \"url\": \"https://another.full.url/news\"},\n", " {\"type\": \"schedule page\": \"url\": \"https://another.full.url/schedule\"},\n", " {\"type\": \"history page\": \"url\": \"https://another.full.url/history\"},\n", " {\"type\": \"stats page\": \"url\": \"https://another.full.url/stats\"},\n", " {\"type\": \"standings page\": \"url\": \"https://another.full.url/standings\"},\n", " ]\n", "}\n", "\"\"\"" ] }, { "cell_type": "code", "execution_count": 7, "id": "b45c01f5-e27d-47d6-b9e7-7500940da3c0", "metadata": {}, "outputs": [], "source": [ "def get_links_user_prompt(website):\n", " user_prompt = f\"Here is the list of links on the website of {website.url} - \"\n", " user_prompt += \"please decide which of these are relevant web links for a brochure about the team, respond with the full https URL in JSON format. \\\n", "Do not include Terms of Service, Privacy, Tickets, Video, Listen, Community, Fans, Youth Hockey, Shop, League, email links.\\n\"\n", " user_prompt += \"Links (some might be relative links):\\n\"\n", " user_prompt += \"\\n\".join(website.links)\n", " return user_prompt" ] }, { "cell_type": "code", "execution_count": 8, "id": "9dbfc365-b3c7-45d2-bd6d-79efb2372f43", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Here is the list of links on the website of https://www.nhl.com/capitals/ - please decide which of these are relevant web links for a brochure about the team, respond with the full https URL in JSON format. Do not include Terms of Service, Privacy, Tickets, Video, Listen, Community, Fans, Youth Hockey, Shop, League, email links.\n", "Links (some might be relative links):\n", "#main-content\n", "/capitals\n", "/capitals\n", "/capitals/tickets/\n", "https://www.ticketmaster.com/washington-capitals-tickets/artist/806039?brand=capitals&wt.mc_id=NHL_TEAM_WSH_SINGLE_GAME_TIX_LINK&utm_source=washcaps_tm&utm_medium=web_organic&utm_campaign=2425_sgb&utm_content=tickets_nav\n", "https://www.nhl.com/capitals/club-red-365/\n", "https://www.nhl.com/capitals/tickets/partial-plans\n", "https://www.nhl.com/capitals/tickets/promotions\n", "https://auth.govx.com/tickets/entertainer-events/39734b77-0b23-e811-80e5-14187735bc96/\n", "https://www.nhl.com/capitals/tickets/offers\n", "https://www.nhl.com/capitals/tickets/group-tickets\n", "https://www.nhl.com/capitals/tickets/vip\n", "https://am.ticketmaster.com/monumental/?wt.mc_id=NHL_TEAM_WSH_ACCOUNT_MANAGER_TIX&utm_source=washcaps_tm&utm_medium=web_organic&utm_campaign=2425sgb&utm_content=account_manager_tix\n", "https://www.nhl.com/capitals/tickets/business\n", "https://www.nhl.com/capitals/tickets/mobile-app-setup\n", "https://www.ticketmaster.com/washington-capitals-tickets/artist/806039?brand=capitals&wt.mc_id=NHL_TEAM_WAS_NAV&utm_source=NHL.com&utm_medium=client&utm_campaign=NHL_TEAM_WAS&utm_content=NAV\n", "https://am.ticketmaster.com/monumental/mobileticketing-view#/\n", "https://www.nhl.com/capitals/arena\n", "https://www.capitalonearena.com/premier/explore/the-vaults\n", "https://www.nhl.com/capitals/schedule\n", "https://www.nhl.com/capitals/team/practice\n", "https://www.nhl.com/capitals/fans/where-to-watch\n", "https://www.nhl.com/capitals/fans/jersey-schedule\n", "https://www.nhl.com/capitals/fans/schedule-downloads\n", "/capitals/roster\n", "https://www.nhl.com/capitals/prospects\n", "/capitals/alumni/\n", "/capitals/team/management\n", "/capitals/team/coaching-staff\n", "/capitals/team/equipment-training-staff\n", "/capitals/team/staff\n", "https://monumentalsports.com/who-we-are/\n", "https://www.hersheybears.com/index\n", "https://www.stingrayshockey.com/index\n", "/capitals/news/\n", "/capitals/caps-today/\n", "/capitals/news/topic/dump-n-chase/\n", "/capitals/news/topic/community-news/\n", "https://tedstake.com/blog/\n", "https://www.nhl.com/capitals/video/\n", "/capitals/video/topic/game-highlights/\n", "/capitals/video/topic/micd-up/\n", "/capitals/video/topic/locker-room/\n", "/capitals/video/topic/caps-365/\n", "/capitals/video/topic/rinkside-update/\n", "/capitals/video/topic/off-the-ice/\n", "/capitals/video/topic/coachs-corner/\n", "/capitals/video/topic/game-entertainment/\n", "/capitals/video/topic/alumni/\n", "https://www.nhl.com/capitals/history/\n", "https://www.nhl.com/capitals/history/50th-anniversary\n", "https://www.nhl.com/capitals/history/anniversary-teams\n", "https://www.nhl.com/capitals/history/jersey-timeline\n", "https://www.nhl.com/capitals/history/2018-stanley-cup\n", "https://www.nhl.com/capitals/history/the-gr8-chase\n", "/capitals/stats\n", "/capitals/standings\n", "/capitals/multimedia/caps-radio-247\n", "/capitals/multimedia/podcasts/\n", "/capitals/community/\n", "/capitals/info/diversity-equity-inclusion\n", "/capitals/community/?#player-programs\n", "/capitals/community/?#initiatives\n", "/capitals/news/topic/community-news/\n", "/capitals/community/frequently-asked-questions\n", "/capitals/caps-in-school/\n", "/capitals/community/carefirst\n", "/capitals/community/military\n", "/capitals/foundation/\n", "https://www.nhl.com/capitals/fans/kids-club\n", "https://www.nhl.com/capitals/fans/baby-caps\n", "https://www.nhl.com/capitals/fans/caps-canines\n", "/capitals/slapshot/\n", "/capitals/fans/win-with-the-caps\n", "https://www.nhl.com/capitals/fans/district-e\n", "http://pages.washingtoncaps.com/capsemailsubscriptions\n", "/capitals/fans/game-day-announcements\n", "/capitals/arena/parking-metro\n", "/capitals/arena/code-of-conduct\n", "https://www.capsyouthhockey.com\n", "https://shop.nhl.com/washington-capitals/t-25710842+z-9515527-1374931992?id=WSHMainNav\n", "/capitals/arena/store\n", "http://auctions.nhl.com/iSynApp/allAuction.action?sid=1100803&rc=20&pgmode1=teamsearch&pgcust1=capitals&pgcust2=&pgcust3=panname_teamName_s&qt[0].type=fieldmatch&qt[0].name=panname_teamName_s&qt[0].value1=capitals&navid=auctions-nav-capitals\n", "/info/teams/\n", "/\n", "/capitals/search\n", "/capitals/news/caps-host-rangers-in-homestand-opener\n", "/capitals/video/rinkside-update-nic-dowd-6363929678112\n", "/capitals/video/two-man-advantage-october-29-6363928635112\n", "/capitals/video/spencer-carbery-october-29-6363927145112\n", "https://am.ticketmaster.com/monumental/?wt.mc_id=NHL_TEAM_WSH_ACCOUNT_MANAGER_TIX&utm_source=washcaps_tm&utm_medium=web_organic&utm_campaign=2425sgb&utm_content=account_manager_tix\n", "/capitals/club-red-365/\n", "/capitals/tickets/vip\n", "https://www.facebook.com/Capitals\n", "https://www.youtube.com/capitals\n", "https://www.instagram.com/capitals\n", "https://www.twitter.com/capitals\n", "https://www.threads.net/@capitals\n", "https://discord.gg/xQr6Sx5WHV\n", "https://www.twitch.tv/capitals\n", "https://www.tiktok.com/@capitals\n", "https://www.ticketmaster.com/event/150060E2C1F43EB2?brand=capitals&artistid=806039&utm_source=washcaps&utm_medium=web_organic&utm_campaign=ca1031mc&utm_content=uhgm\n", "https://www.ticketmaster.com/event/150060E2C1F43EB2?brand=capitals&artistid=806039&utm_source=washcaps&utm_medium=web_organic&utm_campaign=ca1031mc&utm_content=uhgm\n", "https://www.ticketmaster.com/event/150060E2C1F93EB7?brand=capitals&artistid=806039&utm_source=washcaps&utm_medium=web_organic&utm_campaign=ca1102cj&utm_content=uhgm\n", "https://www.ticketmaster.com/event/150060E2C1FD3EDA?brand=capitals&artistid=806039&utm_source=washcaps&utm_medium=web_organic&utm_campaign=ca1106np&utm_content=uhgm\n", "/capitals/video/postgame-tom-wilson-6363819950112\n", "/capitals/video/postgame-spencer-carbery-6363820731112\n", "/capitals/video/postgame-charlie-lindgren-6363818696112\n", "/capitals/video/logan-thompson-postgame-6363671218112\n", "/capitals/video/nic-dowd-postgame-6363671585112\n", "/capitals/video/pierre-luc-dubois-postgame-6363671679112\n", "/capitals/video/charlie-lindgren-postgame-6363620622112\n", "/capitals/video/andrew-mangiapane-postgame-6363621468112\n", "/capitals/video/jakob-chychrun-postgame-6363618891112\n", "/capitals/video/john-carlson-postgame-6363618652112\n", "/capitals/news/caps-halloween-2024\n", "https://washcaps.formstack.com/forms/slappy_halloween\n", "https://washcaps.formstack.com/forms/slappy_halloween\n", "https://www.nhl.com/capitals/fans/capsolantern\n", "https://www.nhl.com/capitals/fans/capsolantern\n", "/capitals/news/devante-smith-pelly-growing-as-washington-tv-analyst-x7362\n", "/capitals/news/capitals-recall-mike-sgarbossa-x4079\n", "/capitals/news/capitals-sign-jakub-vrana\n", "/capitals/news/capitals-sign-eriks-mateiko\n", "/capitals/news/caps-issue-pto-invite-to-vrana\n", "/capitals/news/capitals-loan-leon-muggli-to-ev-zug-of-the-swiss-national-league\n", "/capitals/news/capitals-sign-leon-muggli\n", "/capitals/news/capitals-loan-ludwig-persson-to-jukurit-of-finnish-liiga\n", "/capitals/news/capitals-sign-cam-allen\n", "/capitals/news/capitals-sign-ilya-protas\n", "/capitals/news/capitals-sign-terik-parascak\n", "/capitals/news/capitals-re-sign-alex-limoges\n", "/capitals/news/capitals-re-sign-riley-sutter-and-hardy-haman-aktell\n", "/capitals/news/caps-swing-deal-add-three-ufa-skaters\n", "/capitals/news/capitals-sign-brandon-duhaime\n", "/capitals/news/capitals-sign-taylor-raddysh\n", "/capitals/news/capitals-sign-matt-roy\n", "/capitals/news/capitals-acquire-jakob-chychrun-from-the-ottawa-senators\n", "/capitals/news/capitals-re-sign-connor-mcmichael\n", "/capitals/news/capitals-re-sign-mitchell-gibson-chase-priskie-and-ethen-frank\n", "/capitals/news/capitals-acquire-logan-thompson-from-the-vegas-golden-knights\n", "/capitals/news/capitals-acquire-second-round-in-2024-draft-from-buffalo-for-beck-malenstyn\n", "/capitals/news/capitals-acquire-andrew-mangiapane-from-the-calgary-flames\n", "/capitals/news/capitals-acquire-pierre-luc-dubois-from-the-los-angeles-kings\n", "/capitals/news/capitals-acquire-2025-third-round-pick-from-carolina-for-evgeny-kuznetsov\n", "/capitals/news/capitals-acquire-2024-third-round-pick-and-2025-fifth-round-pick-from-toronto-for-joel-edmundson\n", "/capitals/multimedia/caps-radio-247\n", "https://www.nhl.com/capitals/history/50th-anniversary\n", "/capitals/fans/capital-one-cardholder\n", "https://pages.washingtoncaps.com/capsemailsubscriptions\n", "https://www.ticketmaster.com/artist/806039?brand=capitals?extcmp=tm205818&utm_source=NHL.com&utm_medium=cli%20ent&utm_campaign=NHL_TEAM_WAS&utm_content=FOOTER\n", "https://www.medstarcapitalsiceplex.com/\n", "https://www.geico.com/\n", "https://www.facebook.com/Capitals\n", "https://www.youtube.com/capitals\n", "https://www.instagram.com/capitals\n", "https://www.twitter.com/capitals\n", "https://www.threads.net/@capitals\n", "https://discord.gg/xQr6Sx5WHV\n", "https://www.twitch.tv/capitals\n", "https://www.tiktok.com/@capitals\n", "https://www.nhl.com/capitals/info/contact-us\n", "https://media.d3.nhle.com/image/private/t_document/prd/mumeknrfoygtjbif6sd6.pdf\n", "https://monumentalsports.com/partnerships/index\n", "https://www.teamworkonline.com/multiple-properties/monumentalsports/monumental-sports\n", "https://www.hersheybears.com/index\n", "https://www.stingrayshockey.com/index\n", "https://www.monumentalsportsnetwork.com/index\n", "https://monumentalsports.com/index\n", "/capitals\n", "/\n", "/info/terms-of-service\n", "/info/privacy-policy\n", "/info/cookie-policy\n", "https://www.nhl.com/info/cookie-settings\n", "/info/copyright-policy\n", "/info/careers\n" ] } ], "source": [ "print(get_links_user_prompt(caps))" ] }, { "cell_type": "code", "execution_count": 9, "id": "410c113b-a5b2-4639-aace-2203a8631dbc", "metadata": {}, "outputs": [], "source": [ "def get_links(url):\n", " website = Website(url)\n", " completion = openai.chat.completions.create(\n", " model=MODEL,\n", " messages=[\n", " {\"role\": \"system\", \"content\": link_system_prompt},\n", " {\"role\": \"user\", \"content\": get_links_user_prompt(website)}\n", " ],\n", " response_format={\"type\": \"json_object\"}\n", " )\n", " result = completion.choices[0].message.content\n", " return json.loads(result)" ] }, { "cell_type": "code", "execution_count": 10, "id": "b8a5d809-c85e-4a97-9a81-61114b635027", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'links': [{'type': 'about page', 'url': 'https://www.nhl.com/capitals/'},\n", " {'type': 'team page', 'url': 'https://www.nhl.com/capitals/team/management'},\n", " {'type': 'team page',\n", " 'url': 'https://www.nhl.com/capitals/team/coaching-staff'},\n", " {'type': 'news page', 'url': 'https://www.nhl.com/capitals/news/'},\n", " {'type': 'schedule page', 'url': 'https://www.nhl.com/capitals/schedule'},\n", " {'type': 'history page', 'url': 'https://www.nhl.com/capitals/history/'},\n", " {'type': 'stats page', 'url': 'https://www.nhl.com/capitals/stats'},\n", " {'type': 'standings page', 'url': 'https://www.nhl.com/capitals/standings'}]}" ] }, "execution_count": 10, "metadata": {}, "output_type": "execute_result" } ], "source": [ "get_links(\"https://www.nhl.com/capitals/\")" ] }, { "cell_type": "code", "execution_count": 11, "id": "ffb4dbdf-758c-4180-aa4f-3c18899493eb", "metadata": {}, "outputs": [], "source": [ "def get_all_details(url):\n", " result = \"Landing page:\\n\"\n", " result += Website(url).get_contents()\n", " links = get_links(url)\n", " print(\"Found links:\", links)\n", " for link in links[\"links\"]:\n", " result += f\"\\n\\n{link['type']}\\n\"\n", " result += Website(link[\"url\"]).get_contents()\n", " return result" ] }, { "cell_type": "code", "execution_count": 12, "id": "b7546e12-c819-4092-a783-7be23d4d7b8c", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Found links: {'links': [{'type': 'about page', 'url': 'https://www.nhl.com/capitals/'}, {'type': 'team page', 'url': 'https://www.nhl.com/capitals/team/management'}, {'type': 'team page', 'url': 'https://www.nhl.com/capitals/team/coaching-staff'}, {'type': 'team page', 'url': 'https://www.nhl.com/capitals/prospects'}, {'type': 'news page', 'url': 'https://www.nhl.com/capitals/news/'}, {'type': 'schedule page', 'url': 'https://www.nhl.com/capitals/schedule'}, {'type': 'history page', 'url': 'https://www.nhl.com/capitals/history/'}, {'type': 'stats page', 'url': 'https://www.nhl.com/capitals/stats'}, {'type': 'standings page', 'url': 'https://www.nhl.com/capitals/standings'}]}\n", "Landing page:\n", "Webpage Title:\n", "Washington Capitals | Washington Capitals\n", "Webpage Contents:\n", "Skip to Main Content\n", "Tickets\n", "All Capitals Tickets\n", "Single Game Tickets\n", "2024-25 Season Tickets\n", "Partial Plans\n", "Promotions Schedule\n", "GOVX Military & Govt Employee Discount Program\n", "Special Ticket Offers\n", "Group Tickets\n", "VIP Seating\n", "Account Manager\n", "Tickets for Business\n", "Using the New NHL Mobile App\n", "NHL Ticket Exchange\n", "Digital Ticketing\n", "Capital One Arena\n", "Transformation - The Vaults\n", "Schedule\n", "2024-25 Season Schedule\n", "Practice Schedule\n", "Where To Watch\n", "Home Jersey Schedule\n", "Schedule Sync & Download\n", "Team\n", "Capitals Roster\n", "Capitals Prospects\n", "Caps Alumni\n", "Management\n", "Coaching Staff\n", "Equipment and Trainers\n", "Staff Directory\n", "Monumental Sports and Entertainment\n", "AHL Hershey Bears\n", "ECHL South Carolina Stingrays\n", "News\n", "Capitals News\n", "Capitals Today\n", "Dump N' Chase\n", "Community News\n", "Ted's Take\n", "Video\n", "All Video\n", "Game Highlights\n", "Mic'd Up\n", "Capitals Locker Room\n", "Caps365\n", "Rinkside Update\n", "Off the Ice\n", "Coach's Corner\n", "Caps Game Entertainment\n", "Capitals Alumni\n", "Navigation Menu\n", "History\n", "History\n", "Franchise History\n", "50th Anniversary\n", "Anniversary Teams\n", "Jersey Timeline\n", "2018 Stanley Cup\n", "The Gr8 Chase\n", "Stats\n", "Standings\n", "Listen\n", "Listen\n", "Caps Radio 24/7\n", "Caps Podcasts\n", "Community\n", "Community\n", "Caps in the Community\n", "Diversity, Equity, and Inclusion\n", "Player Programs\n", "Community Initiatives\n", "Community News\n", "Community FAQ\n", "Caps In School\n", "CareFirst\n", "Military Commitment\n", "MSE Foundation\n", "Fans\n", "Fans\n", "Caps Kids Club\n", "Baby Caps\n", "Caps Canines\n", "Slapshot\n", "Win With the Caps\n", "District E powered by Ticketmaster\n", "Ice Chips E-News\n", "LED Board Announcements\n", "Getting to the Game\n", "NHL Code of Conduct\n", "Youth Hockey\n", "Shop\n", "Shop\n", "Official Capitals Online Store\n", "Official Team Stores\n", "NHL Auctions\n", "League\n", "NHL.com\n", "Caps Host Rangers in Homestand Opener\n", "Caps open three-game homestand vs. Metro rivals from Manhattan\n", "3:17\n", "Rinkside Update | Nic Dowd\n", "2:04\n", "Two-Man Advantage | October 29\n", "5:20\n", "Spencer Carbery | October 29\n", "Account Manager\n", "manage_accounts\n", "Season Tickets\n", "local_activity\n", "VIP Plans\n", "event_seat\n", "Facebook\n", "YouTube\n", "Instagram\n", "Twitter\n", "Threads\n", "Discord\n", "Twitch\n", "TikTok\n", "BUY TICKETS\n", "BUY TICKETS\n", "BUY TICKETS\n", "BUY TICKETS\n", "Locker Room in partnership with MedStar Health\n", "1:06\n", "Postgame | Tom Wilson\n", "1:06\n", "Postgame | Spencer Carbery\n", "0:41\n", "Postgame | Charlie Lindgren\n", "0:42\n", "Logan Thompson | Postgame\n", "2:59\n", "Nic Dowd | Postgame\n", "1:36\n", "Pierre-Luc Dubois | Postgame\n", "1:49\n", "Charlie Lindgren | Postgame\n", "1:22\n", "Andrew Mangiapane | Postgame\n", "2:36\n", "Jakob Chychrun | Postgame\n", "1:50\n", "John Carlson | Postgame\n", "Previous\n", "Next\n", "Quick Hits\n", "Caps Halloween 2024\n", "Now Available! Slapshot Halloween Grams\n", "Hockey Halloween\n", "Color of Hockey: Smith-Pelly's role expanding as Capitals TV analyst\n", "Transactions presented by Shift4\n", "Capitals Recall Mike Sgarbossa\n", "Capitals Sign Jakub Vrana\n", "Capitals Sign Eriks Mateiko\n", "Caps Issue PTO Invite to Vrana\n", "Capitals Loan Leon Muggli to EV Zug of the Swiss National League\n", "Capitals Sign Leon Muggli\n", "Capitals Loan Ludwig Persson to Jukurit of Finnish Liiga\n", "Capitals Sign Cam Allen\n", "Capitals Sign Ilya Protas\n", "Capitals Sign Terik Parascak\n", "Capitals Re-sign Alex Limoges\n", "Capitals Re-sign Riley Sutter and Hardy Häman Aktell\n", "Caps Swing Deal, Add Three UFA Skaters\n", "Capitals Sign Brandon Duhaime\n", "Capitals Sign Taylor Raddysh\n", "Capitals Sign Matt Roy\n", "Capitals Acquire Jakob Chychrun from the Ottawa Senators\n", "Capitals Re-sign Connor McMichael\n", "Capitals Re-sign Mitchell Gibson, Chase Priskie and Ethen Frank\n", "Capitals Acquire Logan Thompson from the Vegas Golden Knights\n", "Capitals Acquire Second-Round in 2024 Draft from Buffalo for Beck Malenstyn\n", "Capitals Acquire Andrew Mangiapane from the Calgary Flames\n", "Capitals Acquire Pierre-Luc Dubois from the Los Angeles Kings\n", "Capitals Acquire 2025 Third-Round Pick from Carolina for Evgeny Kuznetsov\n", "Capitals Acquire 2024 Third-Round Pick and 2025 Fifth-Round Pick from Toronto for Joel Edmundson\n", "Previous\n", "Next\n", "Capitals Podcasts\n", "Caps Radio 24/7\n", "Listen to the Washington Capitals no matter where you are! John Walton & co. bring Caps hockey games and analysis all hours of the day for FREE on the Tunein app at CapsRadio247.com.\n", "Listen Now\n", "A Legacy in ALL CAPS\n", "Celebrate 50 years of Capitals Hockey! Learn all about the 50th Anniversary celebrations planned as part of the upcoming 2024-25 season.\n", "A Legacy in ALL CAPS\n", "Capital One Cardholder Benefits\n", "Capital One Cardholders receive special perks, including:\n", "Discounts on tickets, concessions, and retail\n", "VIP Experiences\n", "Monumental Network subscription, and more!\n", "Learn More\n", "Our Partners\n", "Facebook\n", "YouTube\n", "Instagram\n", "Twitter\n", "Threads\n", "Discord\n", "Twitch\n", "TikTok\n", "Contact Us\n", "Capitals Privacy Policy\n", "Partnership Opportunities\n", "Careers\n", "Hershey Bears\n", "South Carolina Stingrays\n", "Monumental Sports Network\n", "Monumental Sports and Entertainment\n", "WashingtonCaps.com is the official Web site of the Washington Capitals. Washington Capitals and WashingtonCaps.com, WashingtonCapitals.com are trademarks of Lincoln Hockey. NHL, the NHL Shield, the word mark and image of the Stanley Cup and NHL Conference logos are registered trademarks of the National Hockey League. All NHL logos and marks and NHL team logos and marks as well as all other proprietary materials depicted herein are the property of the NHL and the respective NHL teams and may not be reproduced without the prior written consent of NHL Enterprises, L.P. Copyright © 1999-2020 Lincoln Hockey and the National Hockey League. All Rights Reserved. NHL, the NHL Shield and the word mark NHL Winter Classic are registered trademarks and the NHL Winter Classic logo is a trademark of the National Hockey League. NHL and NHL team marks are the property of the NHL and its teams. © NHL 2024. All Rights Reserved.\n", "NHL.com Terms of Service\n", "NHL.com Privacy Policy\n", "Cookie Policy\n", "Cookie Settings\n", "Copyright Policy\n", "Employment\n", "Close\n", "\n", "\n", "\n", "about page\n", "Webpage Title:\n", "Washington Capitals | Washington Capitals\n", "Webpage Contents:\n", "Skip to Main Content\n", "Tickets\n", "All Capitals Tickets\n", "Single Game Tickets\n", "2024-25 Season Tickets\n", "Partial Plans\n", "Promotions Schedule\n", "GOVX Military & Govt Employee Discount Program\n", "Special Ticket Offers\n", "Group Tickets\n", "VIP Seating\n", "Account Manager\n", "Tickets for Business\n", "Using the New NHL Mobile App\n", "NHL Ticket Exchange\n", "Digital Ticketing\n", "Capital One Arena\n", "Transformation - The Vaults\n", "Schedule\n", "2024-25 Season Schedule\n", "Practice Schedule\n", "Where To Watch\n", "Home Jersey Schedule\n", "Schedule Sync & Download\n", "Team\n", "Capitals Roster\n", "Capitals Prospects\n", "Caps Alumni\n", "Management\n", "Coaching Staff\n", "Equipment and Trainers\n", "Staff Directory\n", "Monumental Sports and Entertainment\n", "AHL Hershey Bears\n", "ECHL South Carolina Stingrays\n", "News\n", "Capitals News\n", "Capitals Today\n", "Dump N' Chase\n", "Community News\n", "Ted's Take\n", "Video\n", "All Video\n", "Game Highlights\n", "Mic'd Up\n", "Capitals Locker Room\n", "Caps365\n", "Rinkside Update\n", "Off the Ice\n", "Coach's Corner\n", "Caps Game Entertainment\n", "Capitals Alumni\n", "Navigation Menu\n", "History\n", "History\n", "Franchise History\n", "50th Anniversary\n", "Anniversary Teams\n", "Jersey Timeline\n", "2018 Stanley Cup\n", "The Gr8 Chase\n", "Stats\n", "Standings\n", "Listen\n", "Listen\n", "Caps Radio 24/7\n", "Caps Podcasts\n", "Community\n", "Community\n", "Caps in the Community\n", "Diversity, Equity, and Inclusion\n", "Player Programs\n", "Community Initiatives\n", "Community News\n", "Community FAQ\n", "Caps In School\n", "CareFirst\n", "Military Commitment\n", "MSE Foundation\n", "Fans\n", "Fans\n", "Caps Kids Club\n", "Baby Caps\n", "Caps Canines\n", "Slapshot\n", "Win With the Caps\n", "District E powered by Ticketmaster\n", "Ice Chips E-News\n", "LED Board Announcements\n", "Getting to the Game\n", "NHL Code of Conduct\n", "Youth Hockey\n", "Shop\n", "Shop\n", "Official Capitals Online Store\n", "Official Team Stores\n", "NHL Auctions\n", "League\n", "NHL.com\n", "Caps Host Rangers in Homestand Opener\n", "Caps open three-game homestand vs. Metro rivals from Manhattan\n", "3:17\n", "Rinkside Update | Nic Dowd\n", "2:04\n", "Two-Man Advantage | October 29\n", "5:20\n", "Spencer Carbery | October 29\n", "Account Manager\n", "manage_accounts\n", "Season Tickets\n", "local_activity\n", "VIP Plans\n", "event_seat\n", "Facebook\n", "YouTube\n", "Instagram\n", "Twitter\n", "Threads\n", "Discord\n", "Twitch\n", "TikTok\n", "BUY TICKETS\n", "BUY TICKETS\n", "BUY TICKETS\n", "BUY TICKETS\n", "Locker Room in partnership with MedStar Health\n", "1:06\n", "Postgame | Tom Wilson\n", "1:06\n", "Postgame | Spencer Carbery\n", "0:41\n", "Postgame | Charlie Lindgren\n", "0:42\n", "Logan Thompson | Postgame\n", "2:59\n", "Nic Dowd | Postgame\n", "1:36\n", "Pierre-Luc Dubois | Postgame\n", "1:49\n", "Charlie Lindgren | Postgame\n", "1:22\n", "Andrew Mangiapane | Postgame\n", "2:36\n", "Jakob Chychrun | Postgame\n", "1:50\n", "John Carlson | Postgame\n", "Previous\n", "Next\n", "Quick Hits\n", "Caps Halloween 2024\n", "Now Available! Slapshot Halloween Grams\n", "Hockey Halloween\n", "Color of Hockey: Smith-Pelly's role expanding as Capitals TV analyst\n", "Transactions presented by Shift4\n", "Capitals Recall Mike Sgarbossa\n", "Capitals Sign Jakub Vrana\n", "Capitals Sign Eriks Mateiko\n", "Caps Issue PTO Invite to Vrana\n", "Capitals Loan Leon Muggli to EV Zug of the Swiss National League\n", "Capitals Sign Leon Muggli\n", "Capitals Loan Ludwig Persson to Jukurit of Finnish Liiga\n", "Capitals Sign Cam Allen\n", "Capitals Sign Ilya Protas\n", "Capitals Sign Terik Parascak\n", "Capitals Re-sign Alex Limoges\n", "Capitals Re-sign Riley Sutter and Hardy Häman Aktell\n", "Caps Swing Deal, Add Three UFA Skaters\n", "Capitals Sign Brandon Duhaime\n", "Capitals Sign Taylor Raddysh\n", "Capitals Sign Matt Roy\n", "Capitals Acquire Jakob Chychrun from the Ottawa Senators\n", "Capitals Re-sign Connor McMichael\n", "Capitals Re-sign Mitchell Gibson, Chase Priskie and Ethen Frank\n", "Capitals Acquire Logan Thompson from the Vegas Golden Knights\n", "Capitals Acquire Second-Round in 2024 Draft from Buffalo for Beck Malenstyn\n", "Capitals Acquire Andrew Mangiapane from the Calgary Flames\n", "Capitals Acquire Pierre-Luc Dubois from the Los Angeles Kings\n", "Capitals Acquire 2025 Third-Round Pick from Carolina for Evgeny Kuznetsov\n", "Capitals Acquire 2024 Third-Round Pick and 2025 Fifth-Round Pick from Toronto for Joel Edmundson\n", "Previous\n", "Next\n", "Capitals Podcasts\n", "Caps Radio 24/7\n", "Listen to the Washington Capitals no matter where you are! John Walton & co. bring Caps hockey games and analysis all hours of the day for FREE on the Tunein app at CapsRadio247.com.\n", "Listen Now\n", "A Legacy in ALL CAPS\n", "Celebrate 50 years of Capitals Hockey! Learn all about the 50th Anniversary celebrations planned as part of the upcoming 2024-25 season.\n", "A Legacy in ALL CAPS\n", "Capital One Cardholder Benefits\n", "Capital One Cardholders receive special perks, including:\n", "Discounts on tickets, concessions, and retail\n", "VIP Experiences\n", "Monumental Network subscription, and more!\n", "Learn More\n", "Our Partners\n", "Facebook\n", "YouTube\n", "Instagram\n", "Twitter\n", "Threads\n", "Discord\n", "Twitch\n", "TikTok\n", "Contact Us\n", "Capitals Privacy Policy\n", "Partnership Opportunities\n", "Careers\n", "Hershey Bears\n", "South Carolina Stingrays\n", "Monumental Sports Network\n", "Monumental Sports and Entertainment\n", "WashingtonCaps.com is the official Web site of the Washington Capitals. Washington Capitals and WashingtonCaps.com, WashingtonCapitals.com are trademarks of Lincoln Hockey. NHL, the NHL Shield, the word mark and image of the Stanley Cup and NHL Conference logos are registered trademarks of the National Hockey League. All NHL logos and marks and NHL team logos and marks as well as all other proprietary materials depicted herein are the property of the NHL and the respective NHL teams and may not be reproduced without the prior written consent of NHL Enterprises, L.P. Copyright © 1999-2020 Lincoln Hockey and the National Hockey League. All Rights Reserved. NHL, the NHL Shield and the word mark NHL Winter Classic are registered trademarks and the NHL Winter Classic logo is a trademark of the National Hockey League. NHL and NHL team marks are the property of the NHL and its teams. © NHL 2024. All Rights Reserved.\n", "NHL.com Terms of Service\n", "NHL.com Privacy Policy\n", "Cookie Policy\n", "Cookie Settings\n", "Copyright Policy\n", "Employment\n", "Close\n", "\n", "\n", "\n", "team page\n", "Webpage Title:\n", "Capitals Management | Washington Capitals\n", "Webpage Contents:\n", "Skip to Main Content\n", "Tickets\n", "All Capitals Tickets\n", "Single Game Tickets\n", "2024-25 Season Tickets\n", "Partial Plans\n", "Promotions Schedule\n", "GOVX Military & Govt Employee Discount Program\n", "Special Ticket Offers\n", "Group Tickets\n", "VIP Seating\n", "Account Manager\n", "Tickets for Business\n", "Using the New NHL Mobile App\n", "NHL Ticket Exchange\n", "Digital Ticketing\n", "Capital One Arena\n", "Transformation - The Vaults\n", "Schedule\n", "2024-25 Season Schedule\n", "Practice Schedule\n", "Where To Watch\n", "Home Jersey Schedule\n", "Schedule Sync & Download\n", "Team\n", "Capitals Roster\n", "Capitals Prospects\n", "Caps Alumni\n", "Management\n", "Coaching Staff\n", "Equipment and Trainers\n", "Staff Directory\n", "Monumental Sports and Entertainment\n", "AHL Hershey Bears\n", "ECHL South Carolina Stingrays\n", "News\n", "Capitals News\n", "Capitals Today\n", "Dump N' Chase\n", "Community News\n", "Ted's Take\n", "Video\n", "All Video\n", "Game Highlights\n", "Mic'd Up\n", "Capitals Locker Room\n", "Caps365\n", "Rinkside Update\n", "Off the Ice\n", "Coach's Corner\n", "Caps Game Entertainment\n", "Capitals Alumni\n", "Navigation Menu\n", "History\n", "History\n", "Franchise History\n", "50th Anniversary\n", "Anniversary Teams\n", "Jersey Timeline\n", "2018 Stanley Cup\n", "The Gr8 Chase\n", "Stats\n", "Standings\n", "Listen\n", "Listen\n", "Caps Radio 24/7\n", "Caps Podcasts\n", "Community\n", "Community\n", "Caps in the Community\n", "Diversity, Equity, and Inclusion\n", "Player Programs\n", "Community Initiatives\n", "Community News\n", "Community FAQ\n", "Caps In School\n", "CareFirst\n", "Military Commitment\n", "MSE Foundation\n", "Fans\n", "Fans\n", "Caps Kids Club\n", "Baby Caps\n", "Caps Canines\n", "Slapshot\n", "Win With the Caps\n", "District E powered by Ticketmaster\n", "Ice Chips E-News\n", "LED Board Announcements\n", "Getting to the Game\n", "NHL Code of Conduct\n", "Youth Hockey\n", "Shop\n", "Shop\n", "Official Capitals Online Store\n", "Official Team Stores\n", "NHL Auctions\n", "League\n", "NHL.com\n", "Dick Patrick - Vice Chairman and Partner Monumental Sports & Entertainment; and Chairman, Washington Capitals\n", "Dick Patrick has been part of the Washington Capitals organization since 1982 and was one of Ted Leonsis’s original partners when Monumental Sports & Entertainment was formed in June 2010. Mr. Patrick is Chairman of the Capitals and Vice Chairman of Monumental Sports & Entertainment. For the first five years of MSE’s existence, Mr. Patrick also assumed initial responsibility as Chief Operating Officer and was involved in all facets of operating three professional sports franchises – the Capitals, Washington Wizards and the Washington Mystics – and Capital One Arena.\n", "For four generations the family name of Patrick has been synonymous with the sport of hockey and the National Hockey League. Mr. Patrick’s grandfather, Lester Patrick, was the longtime coach and general manager of the New York Rangers. In his honor, the Lester Patrick Trophy is awarded annually for “outstanding service to hockey in the United States.” It was Lester who instilled in his family the desire to remain active in the advancement of the sport of hockey and the National Hockey League. Mr. Patrick’s father, Muzz, and uncle, Lynn, both played on the 1940 New York Rangers team that captured the Stanley Cup. In October 2012, Dick Patrick was awarded the Lester Patrick Trophy for his contributions to hockey in the United States. Mr. Patrick and his son, Chris, who is the Capitals associate general manager, became the sixth and seventh members of the Patrick family to win the Stanley Cup in 2018, a tradition that goes back 100 years in their legendary family.\n", "Read More\n", "Mr. Patrick’s cousin, Craig Patrick, played for the Capitals from 1977-79. He won two Stanley Cups as general manager of the Pittsburgh Penguins and was enshrined in the Hockey Hall of Fame in November 2001 in the “builder” category.\n", "Before Mr. Patrick’s arrival, the Capitals had never advanced to postseason play. In his 40 seasons with the club, Washington has qualified for the playoffs 32 times – including the team’s Stanley Cup championship in 2018, the run to the Stanley Cup Final in 1998 and three Presidents’ Trophy-winning teams (2009-10, 2015-16, 2016-17). Since the 1982-83 season, the Capitals have compiled a record of 1,616-1,155-201-185 (.573 point percentage) and have recorded the second-most wins in the NHL in that span.\n", "During the 2010s, the Capitals (465-232-0-90) recorded the most wins of any team and only trailed the Montreal Canadiens of the 1970s (501-160-130-0) and the Boston Bruins of the 1970s (487-190-111-0) as the winningest franchise of any decade. Additionally, with a .648 point percentage, the Capitals only trailed the 1970 Canadiens and Bruins (Montreal: .712; Boston: .689) and the 2000s Detroit Red Wings (.682) for the highest point percentage in a single decade.\n", "Born in 1946 in Victoria, B.C., Mr. Patrick grew up in the United States. He earned his undergraduate degree from Dartmouth College and a law degree from the Washington College of Law at American University. While raising children who have skated within local youth hockey programs, he has been instrumental in increasing the Capitals’ involvement in youth programs throughout the area.\n", "Brian MacLellan - President of Hockey Operations\n", "The 2024-25 season will mark Brian MacLellan’s 24th with the Capitals and his second as president of hockey operations. MacLellan, who served as general manager from 2014-15 to 2023-24, oversees and is responsible for all aspects of Washington’s hockey operations.\n", "During MacLellan's tenure as general manager, the Capitals won their first Stanley Cup (2018), two Presidents' Trophies (2016, 2017) and a franchise-record five consecutive Metropolitan Division titles from 2015-16 to 2019-20. The Capitals compiled a record of 449-244-88 (.631 point percentage) in MacLellan’s 10 years as GM, the third-most wins in the NHL in that span. In addition, the Capitals reached the 100-point mark six times with MacLellan at the helm and were on pace for 100-plus points in the shortened 2019-20 season and abbreviated 2020-21 season. MacLellan finished his run as general manager with the third-highest point percentage in NHL history among GMs with at least 500 games of experience, trailing only Sam Pollock (Montreal Canadiens, 1964-1978: .685) and Don Sweeney (Boston Bruins, 2015-present: .665). MacLellan, 65, was named the sixth general manager in the franchise’s history on May 26, 2014 after previously serving as the team’s assistant general manager, director of player personnel and as a professional scout.\n", "Of the 19 players to take the ice during the Capitals’ Cup-clinching win in Game 5 of the 2018 Stanley Cup Final, eight were either signed, traded for, or drafted by MacLellan, including three of the four players that scored in the game (Jakub Vrana, Devante Smith- Pelly and Lars Eller). The Capitals tied an NHL record with 10 road wins during the run and joined the 1991 Pittsburgh Penguins as the only teams to win the Stanley Cup despite trailing in all four series.\n", "Read More\n", "The Capitals won their second-straight Presidents’ Trophy in 2016-17, marking the seventh time in NHL history that a team has won the Presidents’ Trophy in consecutive seasons. Washington posted a 55-19-8 record, marking the second-most wins and third-most points (118) in a season in franchise history. The Capitals recorded 55 wins in two straight seasons (2015-16: 56, 2016-17: 55), joining the Montreal Canadiens (1975-78) as the only teams in NHL history to win 55 or more games in consecutive seasons.\n", "In 2015-16, Washington led the NHL with a record of 56-18-8 (120 points) and captured its second Presidents’ Trophy in franchise history (2009-10). The Capitals set franchise records in wins and road wins (27), and MacLellan was named a finalist for the 2015-16 NHL General Manager of the Year Award.\n", "In his first season, Washington posted a record of 45-26-11 (101 points), reaching the 100-point mark for the eighth time in team history and the first since the 2010-11 season.\n", "As assistant general manager and director of player personnel, MacLellan oversaw the club’s professional scouting staff and worked closely with the team’s American Hockey League affiliate, the Hershey Bears, who won the Calder Cup in 2006, 2009 and 2010. MacLellan, who served as a pro scout for the Capitals from 2000-03 prior to his promotion to director of player personnel, assisted and advised the general manager in all player-related matters.\n", "MacLellan, who won a Stanley Cup with the Calgary Flames in 1989, recorded 413 points (172 goals, 241 assists) in 606 games during his 10-year NHL career with the Los Angeles Kings, New York Rangers, Minnesota North Stars, Calgary Flames and Detroit Red Wings. MacLellan also won a silver medal with Team Canada at the 1985 World Championship in Prague.\n", "The Guelph, Ont., native played hockey at Bowling Green State University from 1978-82, registering 143 points (64g, 79a) in 160 games. MacLellan’s 345 career penalty minutes rank sixth in school history. The 6’3” forward earned 63 points his freshman year, marking the second most points by a freshman in school history. MacLellan moved to defense in his junior season and was named an All-American defenseman and First-Team All-CCHA in 1982. MacLellan served as co-captain for the Falcons from 1980-82. He was elected to the Bowling Green Athletic Hall of Fame in 1987.\n", "MacLellan graduated with a Bachelor of Science in business administration from Bowling Green and earned his MBA in finance from the University of St. Thomas in 1995. He went on to work for an investment consulting firm in Minneapolis before joining the Capitals as a pro scout.\n", "Chris Patrick - Senior Vice President & General Manager\n", "Chris Patrick was named the seventh general manger in franchise history on July 8, 2024. Patrick, 48, recently completed his 16th season with the club and first as associate general manager. Patrick, who joined the Capitals in 2008-09 in a player development and scouting role, has served as a pro scout, director of player personnel, assistant general manager and associate general manager. As associate general manager, Patrick oversaw the team’s analytics department, player contract negotiations, hockey operations staff, player personnel, and budget and team scheduling matters. In addition, Patrick managed the club’s professional scouting staff and worked closely with the Hershey Bears, Washington’s AHL affiliate, who have won consecutive Calder Cup championships. During his tenure, the Bears have won two Calder Cups, two Macgregor Kilpatrick Trophies as the AHL’s top regular-season team and have reached three Calder Cup Finals. Patrick has also played a crucial role in the development of numerous Capitals prospects to the NHL level. Patrick hired two head coaches, Spencer Carbery and Todd Nelson, who have won AHL Coach of the Year awards with Hershey. In his previous positions, Patrick was responsible for scouting drafted players at the collegiate and junior levels.\n", "Patrick graduated from Princeton University with a Bachelor of Science in politics and economics in 1998 and earned a Master of Business Administration at the Darden School of Business at the University of Virginia in 2006. Patrick grew up playing hockey in the Washington, D.C. area in the Capital Beltway Hockey League and for the Little Caps. He attended and played hockey at the Kent School in Connecticut before playing four seasons at Princeton University, winning the ECAC Championship in 1998. Patrick was selected by the Capitals in the eighth round (197th overall) of the 1994 NHL Draft. He and his father, Dick Patrick, became the sixth and seventh members of the Patrick family to win the Stanley Cup in 2018.\n", "Ross Mahoney - Assistant General Manager\n", "Ross Mahoney is entering his 10th season as assistant general manager with Washington. Mahoney served as the Capitals’ director of amateur scouting for the prior 16 seasons. As assistant general manager, Mahoney is responsible for the NHL Entry Draft, the club’s developmental programs, evaluations of opposing teams’ prospects and oversees the organization’s amateur scouting staff. In Game 5 of the 2018 Stanley Cup Final, 12 players that were drafted during Mahoney’s tenure were in the lineup.\n", "Prior to joining the Capitals, Mahoney was a scout with the Buffalo Sabres and Vancouver Canucks. He has coaching experience with the University of Regina, the Western Hockey League’s Regina Pats and at the international level. He twice coached Team Western in the World Under-17 Challenge. In 1995, he coached Team Saskatchewan to the gold medal at the Canadian Winter Games.\n", "Mahoney earned a degree in education from the University of Regina, where he played hockey for the Cougars. After graduating, he spent 17 years as a teacher.\n", "Mahoney played junior hockey for the Tier II Regina Pat Blues and the Regina Pats in the WHL. He also played four years at the University of Regina, helping lead his team to two national finals. Mahoney was inducted as a player in the Saskatchewan Baseball Hall of Fame in 1997 and in the Saskatchewan Sports Hall of Fame in 1999.\n", "Mahoney and his wife, Traci, reside in Regina, Saskatchewan. He has a son, Michael, and a daughter, Catie.\n", "Don Fishman - Assistant General Manager & Director of Legal Affairs\n", "Don Fishman is entering his 19th season with the Washington Capitals and 17th as assistant general manager and director of legal affairs.  Fishman leads the club’s salary cap and contract decisions as well as advises the team president on policy and strategic decisions and real estate matters.  Fishman regularly represents the club in speaking to season ticket members, sponsors and other club stakeholders.     He handles player contract negotiations, player contract research and analysis, the club’s day-to-day salary cap position, team salary cap strategic planning, the salary arbitration process, NHL and team salary cap analysis, and interpretation of NHL/NHLPA Collective Bargaining Agreement (CBA) issues.  Fishman also assists the club’s general manager with the day-to-day operations of the Capitals hockey operations department such as roster issues, player movement, preseason and regular season scheduling, budgeting, and training camp planning.\n", "Fishman, who spent two seasons as director of legal affairs and hockey administration before his appointment to assistant general manager, also helped lead the organization’s efforts on a number of other special projects, including attracting two World Cup of Hockey exhibition games to Washington in 2016, bringing the United States Men’s Olympic Hockey Team Orientation Camp to the Capitals’ training facility in 2013, and bringing American Hockey League hockey games to Washington in 2012 and 2014. Fishman was also involved with the planning for the Capitals’ four outdoor games, which have been played at a baseball stadium as well as pro and college football stadiums.  Finally, Fishman serves as legal counsel for the Capitals organization generally.\n", "Prior to joining the Capitals, Fishman served as general counsel of two Washington, D.C. city government agencies.  In his role with District government, he worked as part of the local host committee that successfully bid for the NCAA Men’s Hockey Frozen Four, held in Washington, D.C. in 2009.  Fishman also worked as a corporate and communications lawyer in Washington and Los Angeles with Latham & Watkins and Ervin, Cohen & Jessup.  Fishman, a native Washingtonian, graduated with an economics degree from Harvard College, where he also served as the radio voice of Harvard Hockey, and a law degree from UCLA School of Law.  In fall 2023, Fishman is being inducted into the Greater Washington Jewish Sports Hall of Fame.\n", "Our Partners\n", "Facebook\n", "YouTube\n", "Instagram\n", "Twitter\n", "Threads\n", "Discord\n", "Twitch\n", "TikTok\n", "Contact Us\n", "Capitals Privacy Policy\n", "Partnership Opportunities\n", "Careers\n", "Hershey Bears\n", "South Carolina Stingrays\n", "Monumental Sports Network\n", "Monumental Sports and Entertainment\n", "WashingtonCaps.com is the official Web site of the Washington Capitals. Washington Capitals and WashingtonCaps.com, WashingtonCapitals.com are trademarks of Lincoln Hockey. NHL, the NHL Shield, the word mark and image of the Stanley Cup and NHL Conference logos are registered trademarks of the National Hockey League. All NHL logos and marks and NHL team logos and marks as well as all other proprietary materials depicted herein are the property of the NHL and the respective NHL teams and may not be reproduced without the prior written consent of NHL Enterprises, L.P. Copyright © 1999-2020 Lincoln Hockey and the National Hockey League. All Rights Reserved. NHL, the NHL Shield and the word mark NHL Winter Classic are registered trademarks and the NHL Winter Classic logo is a trademark of the National Hockey League. NHL and NHL team marks are the property of the NHL and its teams. © NHL 2024. All Rights Reserved.\n", "NHL.com Terms of Service\n", "NHL.com Privacy Policy\n", "Cookie Policy\n", "Cookie Settings\n", "Copyright Policy\n", "Employment\n", "Close\n", "\n", "\n", "\n", "team page\n", "Webpage Title:\n", "Capitals Coaching Staff | Washington Capitals\n", "Webpage Contents:\n", "Skip to Main Content\n", "Tickets\n", "All Capitals Tickets\n", "Single Game Tickets\n", "2024-25 Season Tickets\n", "Partial Plans\n", "Promotions Schedule\n", "GOVX Military & Govt Employee Discount Program\n", "Special Ticket Offers\n", "Group Tickets\n", "VIP Seating\n", "Account Manager\n", "Tickets for Business\n", "Using the New NHL Mobile App\n", "NHL Ticket Exchange\n", "Digital Ticketing\n", "Capital One Arena\n", "Transformation - The Vaults\n", "Schedule\n", "2024-25 Season Schedule\n", "Practice Schedule\n", "Where To Watch\n", "Home Jersey Schedule\n", "Schedule Sync & Download\n", "Team\n", "Capitals Roster\n", "Capitals Prospects\n", "Caps Alumni\n", "Management\n", "Coaching Staff\n", "Equipment and Trainers\n", "Staff Directory\n", "Monumental Sports and Entertainment\n", "AHL Hershey Bears\n", "ECHL South Carolina Stingrays\n", "News\n", "Capitals News\n", "Capitals Today\n", "Dump N' Chase\n", "Community News\n", "Ted's Take\n", "Video\n", "All Video\n", "Game Highlights\n", "Mic'd Up\n", "Capitals Locker Room\n", "Caps365\n", "Rinkside Update\n", "Off the Ice\n", "Coach's Corner\n", "Caps Game Entertainment\n", "Capitals Alumni\n", "Navigation Menu\n", "History\n", "History\n", "Franchise History\n", "50th Anniversary\n", "Anniversary Teams\n", "Jersey Timeline\n", "2018 Stanley Cup\n", "The Gr8 Chase\n", "Stats\n", "Standings\n", "Listen\n", "Listen\n", "Caps Radio 24/7\n", "Caps Podcasts\n", "Community\n", "Community\n", "Caps in the Community\n", "Diversity, Equity, and Inclusion\n", "Player Programs\n", "Community Initiatives\n", "Community News\n", "Community FAQ\n", "Caps In School\n", "CareFirst\n", "Military Commitment\n", "MSE Foundation\n", "Fans\n", "Fans\n", "Caps Kids Club\n", "Baby Caps\n", "Caps Canines\n", "Slapshot\n", "Win With the Caps\n", "District E powered by Ticketmaster\n", "Ice Chips E-News\n", "LED Board Announcements\n", "Getting to the Game\n", "NHL Code of Conduct\n", "Youth Hockey\n", "Shop\n", "Shop\n", "Official Capitals Online Store\n", "Official Team Stores\n", "NHL Auctions\n", "League\n", "NHL.com\n", "Spencer Carbery - Head Coach\n", "Spencer Carbery was named the 20th head coach of the Washington Capitals on May 30, 2023.\n", "Carbery, 41, returns to the organization after spending the last two seasons as an assistant coach with the Toronto Maple Leafs. With Toronto, Carbery was responsible for the team’s power play and oversaw the team’s forwards. In his first season with the club in 2021-22, the Maple Leafs ranked first in the NHL in power play percentage (27.3), a 7.3-percent improvement from the previous season. Over two full seasons, Toronto converted on 26.6 percent of their power-play opportunities, the second-highest rate in the League during that span. In addition, Maple Leafs forwards ranked fourth in the NHL in goals (251) and points (589) during the 2022-23 season and second in goals (277) and third in points (652) in 2021-22.\n", "Read More\n", "Prior to joining Toronto, Carbery served as head coach of Washington’s American Hockey League (AHL) affiliate the Hershey Bears for three seasons from 2018 to 2021. Under Carbery, Hershey posted a combined record of 104-50-9-8 (.658 point percentage), including an AHL-best 24-7-2-0 record (.758 point percentage) in his final season behind the Bears’ bench in 2020-21. Carbery received the Louis A.R. Pieri Memorial Award as the AHL’s outstanding coach for the 2020-21 season, becoming the fifth coach in Hershey franchise history to win the award. During his three-year tenure with Hershey, Carbery coached and aided in the development of several players that appeared in games with the Capitals during the 2022-23 season, including Martin Fehervary, Aliaksei Protas, Connor McMichael, Alex Alexeyev, Beck Malenstyn, Lucas Johansen and Joe Snively.\n", "The Victoria, British Columbia native spent five seasons as head coach and director of hockey operations for the South Carolina Stingrays from 2011 to 2016, with the Stingrays serving as the Capitals’ ECHL affiliate in Carbery’s final two seasons in South Carolina. Carbery compiled a record of 207-115-38, leading the Stingrays to the Kelly Cup Playoffs in each of his five seasons. In total, Carbery guided South Carolina to two division titles, two Eastern Conference Finals appearances and a Kelly Cup Finals appearance in 2015. In 2013-14, Carbery won the John Brophy Coach of The Year Award after leading the Stingrays to their first division title since 2000-01. Carbery is one of four coaches to ever win coach of the year awards at both the AHL and ECHL levels.\n", "In addition to his time with the Maple Leafs, Bears and Stingrays, Carbery served as head coach of the Saginaw Spirit of the Ontario Hockey League (OHL) in 2016-17 and was an assistant coach with the AHL’s Providence Bruins in 2017-18.\n", "Carbery, whose coaching career began in 2010-11 as an assistant coach with South Carolina, played parts of two seasons with the Stingrays and helped the team capture the Kelly Cup in 2009. That same season, Carbery was honored as the Stingrays’ inaugural Jerry Zucker Community Service Award winner for his work in the Lowcountry community. Carbery, a forward, played 181 games over three ECHL seasons with Bakersfield, Stockton, Fresno and South Carolina and 63 games in the CHL with Tulsa. Carbery graduated from St. Norbert College, where he played for three seasons after playing one season at the University of Alaska Anchorage. Carbery and his wife, Casey, have two children, Hudson and Vivian.\n", "Scott Allen - Assistant Coach\n", "Allen, 57, is entering his second season as an assistant coach with the Capitals. Prior to joining Washington, Allen spent three seasons with the Hershey Bears of the American Hockey League (AHL). Allen is responsible for the Capitals’ penalty kill, which allowed the sixth-fewest power-play goals against (41) in the NHL during the 2022-23 season.\n", "With Hershey, Allen served as an assistant coach for two seasons before being named the Bears’ head coach ahead of the 2021-22 season. Under Allen, Hershey finished with a record of 34-32-6-4, clinching a Calder Cup Playoff berth, and ranked tied for 11th in the AHL in goals against (209).\n", "Read More\n", "The New Bedford, Massachusetts native has coached professionally for more than 25 seasons, including assistant positions with the New York Islanders (2009-12), the Florida Panthers (2016-17) and the Arizona Coyotes (2017-19). With Arizona, Allen worked with the Coyotes' defensemen and penalty kill. During the 2018-19 season, Arizona ranked tied for first in the NHL in penalty kill percentage (85.0) and tied for fifth in goals against per game (2.68). In Allen's one season with Florida, the Panthers finished with the second-best penalty kill percentage in the NHL (85.3). Additionally, Allen has coached in the AHL for 14 seasons.\n", "Allen played professionally for 10 seasons in the All-American Hockey League, Atlantic Coast Hockey League, Colonial Hockey League, Central Hockey League and ECHL. Allen, a forward, won back-to-back Kelly Cups with the Carolina Thunderbirds in 1989 and the Greensboro Monarchs in 1990.\n", "Allen and his wife, Traci, have two daughters: Mackenzie and Camryn.\n", "Mitch Love - Assistant Coach\n", "Love, 39, joins Washington after spending the previous two seasons as the head coach of the Calgary Flames' AHL affiliate, the Calgary Wranglers (2022-23) and Stockton Heat (2021-22). Love will primarily work with the Capitals' defensemen.\n", "Love, who guided Calgary to an AHL-best 51-17-3-1 record in 2022-23, received the Louis A.R. Pieri Memorial Award as the AHL's outstanding coach for the second-consecutive season. Love became just the third coach in AHL history to win back-to-back Pieri Awards and the first to do so in his first two seasons in the league.\n", "Under Love last season, Calgary ranked first in the AHL in goals against per game (2.42) and penalty kill percentage (85.1%) and fourth in goals for per game (3.56). In 2021-22, Stockton ranked third in the AHL in goals against per game (2.72) and finished with the league's second-best record. In two seasons as head coach, Love complied a record of 96-33-8-3 and won two Pacific Division titles.\n", "Read More\n", "Prior to joining the Flames organization, Love was head coach of the Saskatoon Blades of the Western Hockey League (WHL) from 2018-21, where he posted a record of 95-44-12-4 over three seasons. The Quesnel, British Columbia native also served as an assistant coach with the Everett Silvertips of the WHL for seven seasons from 2011-18.\n", "Internationally, Love was an assistant coach on Canada's gold-medal winning team at the 2020 IIHF World Junior Championship and served in the same role at the 2021 tournament, earning a silver medal. Love coached Capitals forward Connor McMichael at both tournaments. Love also earned a gold medal as an assistant coach for Canada at the 2018 Hlinka Gretzky Cup.\n", "Love played professionally for six seasons, including five years in the AHL, where he recorded 27 points (6g, 21a) and 808 penalty minutes in 278 career games.\n", "Kirk Muller - Assistant Coach\n", "Muller, 57, joins the Capitals after spending the previous two seasons as an associate coach with the Calgary Flames. Muller is responsible for the Capitals’ power play and forwards.\n", "The Kingston, Ontario native brings 17 years of NHL coaching experience to Washington, which includes two stints with the Montreal Canadiens as an assistant coach (2006-11) and as an associate coach (2016-21) and two seasons with the St. Louis Blues as an assistant coach (2014-16). Muller also served as head coach of the Carolina Hurricanes (2011-14) and the American Hockey League’s (AHL) Milwaukee Admirals (2011). Muller’s teams have qualified for the playoffs nine times, including two conference final appearances (Montreal: 2010; St. Louis: 2016), and have ranked in the top 10 in power-play percentage seven times. During Muller’s tenure in St. Louis, the Blues owned the NHL’s third-highest power-play percentage (21.9 percent).\n", "Internationally, Muller was an assistant coach for Canada at the 2012 and 2019 IIHF World Championships, earning a silver medal in 2019 along with Capitals forwards Dylan Strome and Anthony Mantha. Prior to joining the coaching ranks, Muller appeared in 1,349 games over 19 NHL seasons with the New Jersey Devils, Montreal, New York Islanders, Toronto Maple Leafs, Florida Panthers and Dallas Stars, recording 959 points (357g, 602a). Muller, the second overall pick in the 1984 NHL Draft, won the Stanley Cup with the Canadiens in 1993.\n", "Muller and his wife, Stacey, have four daughters, Brittney, Kourtney, Bryelle and Kira.\n", "Kenny McCudden - Assistant Coach & Skills Coach\n", "McCudden, 61, joins the Capitals after spending the last eight seasons as an assistant coach with the Columbus Blue Jackets. During his eight seasons with Columbus, McCudden worked closely with Blue Jackets players, including Seth Jones, Cam Atkinson, Zach Werenski, Josh Anderson and Oliver Bjorkstrand, who all registered career highs in points during his tenure.  In 2016-2017, McCudden was part of Jack Adams Award winner John Tortorella’s coaching staff.\n", "A Chicago native, McCudden joined the Blue Jackets in 2015 as a skills coach after spending 16 seasons as the skating and skills coach for the American Hockey League’s (AHL) Chicago Wolves. With Chicago, McCudden helped the Wolves advance to the 2005 Calder Cup Finals and capture the Calder Cup championship in 2008.\n", "McCudden has worked with numerous NHL players and prospects as a skills coach and instructed at development camps for the Colorado Avalanche, St. Louis Blues and Atlanta Thrashers. In addition, McCudden served as the skating and skills coach for the United States Women's National Team from 2011-14 and as a scout for the silver medal-winning squad at the 2014 Winter Olympics in Sochi, Russia.\n", "Scott Murray - Goaltending Coach\n", "Scott Murray is entering his seventh season as the Capitals’ goaltending coach. Prior to joining Washington, Murray spent four seasons with the Hershey Bears of the American Hockey League (AHL).\n", "Over the last six seasons, Capitals goaltenders have combined for 253 wins, the eighth-most wins in the NHL.\n", "During the 2022-23 season, Murray worked with goaltenders Darcy Kuemper and Charlie Lindgren. Kuemper appeared in 57 games for the Capitals in his first season with the team, which tied his single-season career high in games played (2021-22: 57 GP). Among goaltenders with at least 55 starts in 2022-23, Kuemper ranked eighth in the NHL in goals-against average (2.87) and save percentage (.909) and his five shutouts last season were tied for the second most in the NHL (Ilya Sorokin, New York Islanders: 6 SO; Alexandar Georgiev, Colorado Avalanche: 5 SO; Jake Oettinger, Dallas Stars: 5 SO). Lindgren set NHL career highs in games played (31), games started (26) and wins (13) in 2022-23. Lindgren, who posted a 9-1-0 record with a 1.90 goals-against average and a .934 save percentage from Dec. 5 to Dec. 31, was named the NHL’s First Star for the week ending Dec. 11 and finished the month tied for first in the NHL in wins.\n", "Read More\n", "During the Capitals’ 2017-18 Stanley Cup-winning season, Murray helped Braden Holtby set a franchise record for most wins in the postseason and lead all NHL goalies in goals-against average (2.16) during the playoffs.\n", "Murray joined the Capitals organization in 2013 after spending four seasons as the goaltending coach for the Sudbury Wolves of the Ontario Hockey League. Murray, 44, played hockey collegiately at Lake Superior State University. The St. Clements, Ontario, native also played for the San Angelo Saints (Central Hockey League) and Motor City Mechanics (United Hockey League) during his professional career.\n", "Murray and his wife Renee have three children, a son Tylar, and two daughters, Ella and Liv.\n", "Brett Leonhardt - Assistant Coach & Video Coach\n", "Brett Leonhardt is entering his 12th season as the Capitals’ video coach and sixth as an assistant coach. Leonhardt’s responsibilities include developing and delivering game plan meetings and pre-scouting opponents at five-on-five play.\n", "Leonhardt spent two seasons in the NHL office in Toronto as their video manager for hockey operations beginning in 2011. In his role, he was responsible for breaking down and handling all video for rule changes, video reviews, officiating issues and more.\n", "Prior to his time with the NHL, Leonhardt received a Bachelor of Arts in communications and media arts at Neumann University and was a recipient of the John A. Phillips Scholar-Athlete Award as well as the John Facenda Award for excellence in communication arts. He played hockey collegiately at both Neumann University and Oswego State University after spending three seasons playing for the Cambridge Winterhawks and Kitchener Dutchmen of the GOJHL.\n", "Leonhardt was born in Kitchener, Ont. He and his wife Logan, reside in Ashburn, Va., with their twin boys, Beckham and Lennox.\n", "Emily Engel-Natzke - Video Coach\n", "Emily Engel-Natzke is entering her second season with the Capitals. Engel-Natzke, 32, previously served as video coach for Washington's AHL affiliate the Hershey Bears during the 2020-21 and 2021-22 seasons.\n", "With Hershey, Engel-Natzke was responsible for producing opponent pre-scouts and coaching reports, as well as in-game and postgame video breakdowns.\n", "The Fort Collins, Colorado native previously worked with the University of Wisconsin's men's and women's hockey teams as video coordinator from 2015-2017 and as assistant director of operations/video coordinator with the men's team from 2017-2020.\n", "In addition, Engel-Natzke has worked with USA Hockey as a video coach for the U18 and Senior Women's National Teams. Engel-Natzke was part of the gold-medal winning staffs for the U18 team at the 2018 Women's World Championship in Dmitrov, Russia, and for the Senior Women's team at the 2019 World Championship in Espoo, Finland.\n", "Engel-Natzke and her wife, Spencer, reside in Vienna with their dog, Hat Trick, and three cats, Sophia, Juusto and Lucy.\n", "Our Partners\n", "Facebook\n", "YouTube\n", "Instagram\n", "Twitter\n", "Threads\n", "Discord\n", "Twitch\n", "TikTok\n", "Contact Us\n", "Capitals Privacy Policy\n", "Partnership Opportunities\n", "Careers\n", "Hershey Bears\n", "South Carolina Stingrays\n", "Monumental Sports Network\n", "Monumental Sports and Entertainment\n", "WashingtonCaps.com is the official Web site of the Washington Capitals. Washington Capitals and WashingtonCaps.com, WashingtonCapitals.com are trademarks of Lincoln Hockey. NHL, the NHL Shield, the word mark and image of the Stanley Cup and NHL Conference logos are registered trademarks of the National Hockey League. All NHL logos and marks and NHL team logos and marks as well as all other proprietary materials depicted herein are the property of the NHL and the respective NHL teams and may not be reproduced without the prior written consent of NHL Enterprises, L.P. Copyright © 1999-2020 Lincoln Hockey and the National Hockey League. All Rights Reserved. NHL, the NHL Shield and the word mark NHL Winter Classic are registered trademarks and the NHL Winter Classic logo is a trademark of the National Hockey League. NHL and NHL team marks are the property of the NHL and its teams. © NHL 2024. All Rights Reserved.\n", "NHL.com Terms of Service\n", "NHL.com Privacy Policy\n", "Cookie Policy\n", "Cookie Settings\n", "Copyright Policy\n", "Employment\n", "Close\n", "\n", "\n", "\n", "team page\n", "Webpage Title:\n", "Washington Capitals Prospects | Washington Capitals\n", "Webpage Contents:\n", "Skip to Main Content\n", "Tickets\n", "All Capitals Tickets\n", "Single Game Tickets\n", "2024-25 Season Tickets\n", "Partial Plans\n", "Promotions Schedule\n", "GOVX Military & Govt Employee Discount Program\n", "Special Ticket Offers\n", "Group Tickets\n", "VIP Seating\n", "Account Manager\n", "Tickets for Business\n", "Using the New NHL Mobile App\n", "NHL Ticket Exchange\n", "Digital Ticketing\n", "Capital One Arena\n", "Transformation - The Vaults\n", "Schedule\n", "2024-25 Season Schedule\n", "Practice Schedule\n", "Where To Watch\n", "Home Jersey Schedule\n", "Schedule Sync & Download\n", "Team\n", "Capitals Roster\n", "Capitals Prospects\n", "Caps Alumni\n", "Management\n", "Coaching Staff\n", "Equipment and Trainers\n", "Staff Directory\n", "Monumental Sports and Entertainment\n", "AHL Hershey Bears\n", "ECHL South Carolina Stingrays\n", "News\n", "Capitals News\n", "Capitals Today\n", "Dump N' Chase\n", "Community News\n", "Ted's Take\n", "Video\n", "All Video\n", "Game Highlights\n", "Mic'd Up\n", "Capitals Locker Room\n", "Caps365\n", "Rinkside Update\n", "Off the Ice\n", "Coach's Corner\n", "Caps Game Entertainment\n", "Capitals Alumni\n", "Navigation Menu\n", "History\n", "History\n", "Franchise History\n", "50th Anniversary\n", "Anniversary Teams\n", "Jersey Timeline\n", "2018 Stanley Cup\n", "The Gr8 Chase\n", "Stats\n", "Standings\n", "Listen\n", "Listen\n", "Caps Radio 24/7\n", "Caps Podcasts\n", "Community\n", "Community\n", "Caps in the Community\n", "Diversity, Equity, and Inclusion\n", "Player Programs\n", "Community Initiatives\n", "Community News\n", "Community FAQ\n", "Caps In School\n", "CareFirst\n", "Military Commitment\n", "MSE Foundation\n", "Fans\n", "Fans\n", "Caps Kids Club\n", "Baby Caps\n", "Caps Canines\n", "Slapshot\n", "Win With the Caps\n", "District E powered by Ticketmaster\n", "Ice Chips E-News\n", "LED Board Announcements\n", "Getting to the Game\n", "NHL Code of Conduct\n", "Youth Hockey\n", "Shop\n", "Shop\n", "Official Capitals Online Store\n", "Official Team Stores\n", "NHL Auctions\n", "League\n", "NHL.com\n", "Caps Radio 24/7\n", "Listen to the Washington Capitals no matter where you are! John Walton & co. bring Caps hockey games and analysis all hours of the day for FREE on the Tunein app at CapsRadio247.com.\n", "Listen Now\n", "Capital One Cardholder Benefits\n", "Capital One Cardholders receive special perks, including:\n", "Discounts on tickets, concessions, and retail\n", "VIP Experiences\n", "Monumental Network subscription, and more!\n", "Learn More\n", "Our Partners\n", "Facebook\n", "YouTube\n", "Instagram\n", "Twitter\n", "Threads\n", "Discord\n", "Twitch\n", "TikTok\n", "Contact Us\n", "Capitals Privacy Policy\n", "Partnership Opportunities\n", "Careers\n", "Hershey Bears\n", "South Carolina Stingrays\n", "Monumental Sports Network\n", "Monumental Sports and Entertainment\n", "WashingtonCaps.com is the official Web site of the Washington Capitals. Washington Capitals and WashingtonCaps.com, WashingtonCapitals.com are trademarks of Lincoln Hockey. NHL, the NHL Shield, the word mark and image of the Stanley Cup and NHL Conference logos are registered trademarks of the National Hockey League. All NHL logos and marks and NHL team logos and marks as well as all other proprietary materials depicted herein are the property of the NHL and the respective NHL teams and may not be reproduced without the prior written consent of NHL Enterprises, L.P. Copyright © 1999-2020 Lincoln Hockey and the National Hockey League. All Rights Reserved. NHL, the NHL Shield and the word mark NHL Winter Classic are registered trademarks and the NHL Winter Classic logo is a trademark of the National Hockey League. NHL and NHL team marks are the property of the NHL and its teams. © NHL 2024. All Rights Reserved.\n", "NHL.com Terms of Service\n", "NHL.com Privacy Policy\n", "Cookie Policy\n", "Cookie Settings\n", "Copyright Policy\n", "Employment\n", "Close\n", "\n", "\n", "\n", "news page\n", "Webpage Title:\n", "Washington Capitals | Washington Capitals\n", "Webpage Contents:\n", "Skip to Main Content\n", "Tickets\n", "All Capitals Tickets\n", "Single Game Tickets\n", "2024-25 Season Tickets\n", "Partial Plans\n", "Promotions Schedule\n", "GOVX Military & Govt Employee Discount Program\n", "Special Ticket Offers\n", "Group Tickets\n", "VIP Seating\n", "Account Manager\n", "Tickets for Business\n", "Using the New NHL Mobile App\n", "NHL Ticket Exchange\n", "Digital Ticketing\n", "Capital One Arena\n", "Transformation - The Vaults\n", "Schedule\n", "2024-25 Season Schedule\n", "Practice Schedule\n", "Where To Watch\n", "Home Jersey Schedule\n", "Schedule Sync & Download\n", "Team\n", "Capitals Roster\n", "Capitals Prospects\n", "Caps Alumni\n", "Management\n", "Coaching Staff\n", "Equipment and Trainers\n", "Staff Directory\n", "Monumental Sports and Entertainment\n", "AHL Hershey Bears\n", "ECHL South Carolina Stingrays\n", "News\n", "Capitals News\n", "Capitals Today\n", "Dump N' Chase\n", "Community News\n", "Ted's Take\n", "Video\n", "All Video\n", "Game Highlights\n", "Mic'd Up\n", "Capitals Locker Room\n", "Caps365\n", "Rinkside Update\n", "Off the Ice\n", "Coach's Corner\n", "Caps Game Entertainment\n", "Capitals Alumni\n", "Navigation Menu\n", "History\n", "History\n", "Franchise History\n", "50th Anniversary\n", "Anniversary Teams\n", "Jersey Timeline\n", "2018 Stanley Cup\n", "The Gr8 Chase\n", "Stats\n", "Standings\n", "Listen\n", "Listen\n", "Caps Radio 24/7\n", "Caps Podcasts\n", "Community\n", "Community\n", "Caps in the Community\n", "Diversity, Equity, and Inclusion\n", "Player Programs\n", "Community Initiatives\n", "Community News\n", "Community FAQ\n", "Caps In School\n", "CareFirst\n", "Military Commitment\n", "MSE Foundation\n", "Fans\n", "Fans\n", "Caps Kids Club\n", "Baby Caps\n", "Caps Canines\n", "Slapshot\n", "Win With the Caps\n", "District E powered by Ticketmaster\n", "Ice Chips E-News\n", "LED Board Announcements\n", "Getting to the Game\n", "NHL Code of Conduct\n", "Youth Hockey\n", "Shop\n", "Shop\n", "Official Capitals Online Store\n", "Official Team Stores\n", "NHL Auctions\n", "League\n", "NHL.com\n", "All News\n", "All News\n", "Dump 'N Chase\n", "Community News\n", "Alumni & History\n", "Top Stories\n", "Caps Host Rangers in Homestand Opener\n", "Oct 28, 2024\n", "Capitals Recall Mike Sgarbossa\n", "Oct 28, 2024\n", "Caps Draw Blank vs. Bolts\n", "Oct 27, 2024\n", "SKATE SHAVINGS -- News and Notes from Caps' Morning Skate\n", "Oct 26, 2024\n", "Caps Fly South for Weekend\n", "Oct 25, 2024\n", "Caps Hold Off Flyers for 5th Straight Win\n", "Oct 24, 2024\n", "SKATE SHAVINGS -- News and Notes from Caps' Morning Skate\n", "Oct 23, 2024\n", "Caps, Flyers Battle Again in DC\n", "Oct 23, 2024\n", "Caps Prevail Over Flyers, 4-1\n", "Oct 23, 2024\n", "Dump N' Chase by Mike Vogel\n", "Caps Host Rangers in Homestand Opener\n", "Oct 28, 2024\n", "Caps Draw Blank vs. Bolts\n", "Oct 27, 2024\n", "SKATE SHAVINGS -- News and Notes from Caps' Morning Skate\n", "Oct 26, 2024\n", "Caps Fly South for Weekend\n", "Oct 25, 2024\n", "Caps Hold Off Flyers for 5th Straight Win\n", "Oct 24, 2024\n", "SKATE SHAVINGS -- News and Notes from Caps' Morning Skate\n", "Oct 23, 2024\n", "Community News\n", "Capitals Launch Rink Pass\n", "Oct 16, 2024\n", "Capitals Player Program So Kids Can Announces Sweepstakes\n", "Oct 15, 2024\n", "Celebrate Organization’s 50th Anniversary with $500,000 Donation to Community Nonprofits\n", "Oct 11, 2024\n", "Capitals Announce Formation of the Washington Capitals Warriors Hockey Team\n", "Oct 09, 2024\n", "A 50th Anniversary Surprise\n", "Oct 07, 2024\n", "Capitals to Host 50th Anniversary Street Hockey Extravaganza Nov. 16\n", "Oct 03, 2024\n", "Alumni and History\n", "Color of Hockey: Smith-Pelly's role expanding as Capitals TV analyst\n", "Oct 21, 2024\n", "Slim Expansion Pickings Curbed Early Growth of Caps\n", "Jun 12, 2024\n", "Caps Named Anderson Coach Half a Century Ago\n", "May 30, 2024\n", "Caps Began to Take Shape 50 Years Ago\n", "May 28, 2024\n", "Color of Hockey: Smith-Pelly returns to Capitals as radio broadcast analyst\n", "Nov 27, 2023\n", "Capitals Win 1,000th Home Game in Franchise History\n", "Nov 05, 2023\n", "More Caps News\n", "SKATE SHAVINGS -- News and Notes from Caps' Morning Skate\n", "Caps Face Flyers in Front End of Back-to-Backs\n", "Color of Hockey: Smith-Pelly's role expanding as Capitals TV analyst\n", "Wilson Wins it for Washington in OT\n", "SKATE SHAVINGS -- News and Notes from Caps' Morning Skate\n", "Caps Take to Road to Face Devils\n", "Caps Skate Past Stars, 3-2\n", "SKATE SHAVINGS -- News and Notes from Caps' Morning Skate\n", "Caps See Stars in Homestand Finale\n", "Caps Overcome Vegas, 4-2\n", "SKATE SHAVINGS -- News and Notes from Caps' Morning Skate\n", "Caps Continue Homestand vs. Vegas\n", "Devils Down Caps, 5-3\n", "SKATE SHAVINGS -- News and Notes from Caps' Morning Skate\n", "Caps Open Season vs. Devils\n", "Culture Club\n", "Celebrate Organization’s 50th Anniversary with $500,000 Donation to Community Nonprofits\n", "Capitals, Monumental Sports & Entertainment Announce Multi-Year Partnership with Venture Global\n", "Capitals Announce 2024-25 Opening Night Roster\n", "Capitals Sign Jakub Vrana\n", "A 50th Anniversary Surprise\n", "Caps, Lindgren Blank B's\n", "SKATE SHAVINGS -- News and Notes from Caps' Morning Skate\n", "Caps Host Bruins in Exhibition Finale\n", "Our Partners\n", "Facebook\n", "YouTube\n", "Instagram\n", "Twitter\n", "Threads\n", "Discord\n", "Twitch\n", "TikTok\n", "Contact Us\n", "Capitals Privacy Policy\n", "Partnership Opportunities\n", "Careers\n", "Hershey Bears\n", "South Carolina Stingrays\n", "Monumental Sports Network\n", "Monumental Sports and Entertainment\n", "WashingtonCaps.com is the official Web site of the Washington Capitals. Washington Capitals and WashingtonCaps.com, WashingtonCapitals.com are trademarks of Lincoln Hockey. NHL, the NHL Shield, the word mark and image of the Stanley Cup and NHL Conference logos are registered trademarks of the National Hockey League. All NHL logos and marks and NHL team logos and marks as well as all other proprietary materials depicted herein are the property of the NHL and the respective NHL teams and may not be reproduced without the prior written consent of NHL Enterprises, L.P. Copyright © 1999-2020 Lincoln Hockey and the National Hockey League. All Rights Reserved. NHL, the NHL Shield and the word mark NHL Winter Classic are registered trademarks and the NHL Winter Classic logo is a trademark of the National Hockey League. NHL and NHL team marks are the property of the NHL and its teams. © NHL 2024. All Rights Reserved.\n", "NHL.com Terms of Service\n", "NHL.com Privacy Policy\n", "Cookie Policy\n", "Cookie Settings\n", "Copyright Policy\n", "Employment\n", "Close\n", "\n", "\n", "\n", "schedule page\n", "Webpage Title:\n", "Washington Capitals Schedule | Washington Capitals\n", "Webpage Contents:\n", "Skip to Main Content\n", "Tickets\n", "All Capitals Tickets\n", "Single Game Tickets\n", "2024-25 Season Tickets\n", "Partial Plans\n", "Promotions Schedule\n", "GOVX Military & Govt Employee Discount Program\n", "Special Ticket Offers\n", "Group Tickets\n", "VIP Seating\n", "Account Manager\n", "Tickets for Business\n", "Using the New NHL Mobile App\n", "NHL Ticket Exchange\n", "Digital Ticketing\n", "Capital One Arena\n", "Transformation - The Vaults\n", "Schedule\n", "2024-25 Season Schedule\n", "Practice Schedule\n", "Where To Watch\n", "Home Jersey Schedule\n", "Schedule Sync & Download\n", "Team\n", "Capitals Roster\n", "Capitals Prospects\n", "Caps Alumni\n", "Management\n", "Coaching Staff\n", "Equipment and Trainers\n", "Staff Directory\n", "Monumental Sports and Entertainment\n", "AHL Hershey Bears\n", "ECHL South Carolina Stingrays\n", "News\n", "Capitals News\n", "Capitals Today\n", "Dump N' Chase\n", "Community News\n", "Ted's Take\n", "Video\n", "All Video\n", "Game Highlights\n", "Mic'd Up\n", "Capitals Locker Room\n", "Caps365\n", "Rinkside Update\n", "Off the Ice\n", "Coach's Corner\n", "Caps Game Entertainment\n", "Capitals Alumni\n", "Navigation Menu\n", "History\n", "History\n", "Franchise History\n", "50th Anniversary\n", "Anniversary Teams\n", "Jersey Timeline\n", "2018 Stanley Cup\n", "The Gr8 Chase\n", "Stats\n", "Standings\n", "Listen\n", "Listen\n", "Caps Radio 24/7\n", "Caps Podcasts\n", "Community\n", "Community\n", "Caps in the Community\n", "Diversity, Equity, and Inclusion\n", "Player Programs\n", "Community Initiatives\n", "Community News\n", "Community FAQ\n", "Caps In School\n", "CareFirst\n", "Military Commitment\n", "MSE Foundation\n", "Fans\n", "Fans\n", "Caps Kids Club\n", "Baby Caps\n", "Caps Canines\n", "Slapshot\n", "Win With the Caps\n", "District E powered by Ticketmaster\n", "Ice Chips E-News\n", "LED Board Announcements\n", "Getting to the Game\n", "NHL Code of Conduct\n", "Youth Hockey\n", "Shop\n", "Shop\n", "Official Capitals Online Store\n", "Official Team Stores\n", "NHL Auctions\n", "League\n", "NHL.com\n", "Where To Watch\n", "Practice Schedule\n", "Where To Watch\n", "Schedule Sync & Download\n", "Listen on Caps Radio 24/7\n", "Our Partners\n", "Facebook\n", "YouTube\n", "Instagram\n", "Twitter\n", "Threads\n", "Discord\n", "Twitch\n", "TikTok\n", "Contact Us\n", "Capitals Privacy Policy\n", "Partnership Opportunities\n", "Careers\n", "Hershey Bears\n", "South Carolina Stingrays\n", "Monumental Sports Network\n", "Monumental Sports and Entertainment\n", "WashingtonCaps.com is the official Web site of the Washington Capitals. Washington Capitals and WashingtonCaps.com, WashingtonCapitals.com are trademarks of Lincoln Hockey. NHL, the NHL Shield, the word mark and image of the Stanley Cup and NHL Conference logos are registered trademarks of the National Hockey League. All NHL logos and marks and NHL team logos and marks as well as all other proprietary materials depicted herein are the property of the NHL and the respective NHL teams and may not be reproduced without the prior written consent of NHL Enterprises, L.P. Copyright © 1999-2020 Lincoln Hockey and the National Hockey League. All Rights Reserved. NHL, the NHL Shield and the word mark NHL Winter Classic are registered trademarks and the NHL Winter Classic logo is a trademark of the National Hockey League. NHL and NHL team marks are the property of the NHL and its teams. © NHL 2024. All Rights Reserved.\n", "NHL.com Terms of Service\n", "NHL.com Privacy Policy\n", "Cookie Policy\n", "Cookie Settings\n", "Copyright Policy\n", "Employment\n", "Close\n", "\n", "\n", "\n", "history page\n", "Webpage Title:\n", "Washington Capitals History | Washington Capitals\n", "Webpage Contents:\n", "Skip to Main Content\n", "Tickets\n", "All Capitals Tickets\n", "Single Game Tickets\n", "2024-25 Season Tickets\n", "Partial Plans\n", "Promotions Schedule\n", "GOVX Military & Govt Employee Discount Program\n", "Special Ticket Offers\n", "Group Tickets\n", "VIP Seating\n", "Account Manager\n", "Tickets for Business\n", "Using the New NHL Mobile App\n", "NHL Ticket Exchange\n", "Digital Ticketing\n", "Capital One Arena\n", "Transformation - The Vaults\n", "Schedule\n", "2024-25 Season Schedule\n", "Practice Schedule\n", "Where To Watch\n", "Home Jersey Schedule\n", "Schedule Sync & Download\n", "Team\n", "Capitals Roster\n", "Capitals Prospects\n", "Caps Alumni\n", "Management\n", "Coaching Staff\n", "Equipment and Trainers\n", "Staff Directory\n", "Monumental Sports and Entertainment\n", "AHL Hershey Bears\n", "ECHL South Carolina Stingrays\n", "News\n", "Capitals News\n", "Capitals Today\n", "Dump N' Chase\n", "Community News\n", "Ted's Take\n", "Video\n", "All Video\n", "Game Highlights\n", "Mic'd Up\n", "Capitals Locker Room\n", "Caps365\n", "Rinkside Update\n", "Off the Ice\n", "Coach's Corner\n", "Caps Game Entertainment\n", "Capitals Alumni\n", "Navigation Menu\n", "History\n", "History\n", "Franchise History\n", "50th Anniversary\n", "Anniversary Teams\n", "Jersey Timeline\n", "2018 Stanley Cup\n", "The Gr8 Chase\n", "Stats\n", "Standings\n", "Listen\n", "Listen\n", "Caps Radio 24/7\n", "Caps Podcasts\n", "Community\n", "Community\n", "Caps in the Community\n", "Diversity, Equity, and Inclusion\n", "Player Programs\n", "Community Initiatives\n", "Community News\n", "Community FAQ\n", "Caps In School\n", "CareFirst\n", "Military Commitment\n", "MSE Foundation\n", "Fans\n", "Fans\n", "Caps Kids Club\n", "Baby Caps\n", "Caps Canines\n", "Slapshot\n", "Win With the Caps\n", "District E powered by Ticketmaster\n", "Ice Chips E-News\n", "LED Board Announcements\n", "Getting to the Game\n", "NHL Code of Conduct\n", "Youth Hockey\n", "Shop\n", "Shop\n", "Official Capitals Online Store\n", "Official Team Stores\n", "NHL Auctions\n", "League\n", "NHL.com\n", "Year-By-Year Record\n", "insert_chart\n", "Draft History\n", "history\n", "Captains\n", "person\n", "GMs and Coaches\n", "assignment_ind\n", "Time CAPsule\n", "description\n", "A Legacy in ALL CAPS\n", "Franchise Jersey Timeline\n", "Anniversary Teams\n", "2018 Stanley Cup\n", "Jersey Number Listing\n", "All Star History\n", "Hockey Hall of Fame\n", "Black Hockey History\n", "The Gr8 Chase\n", "Time CAPsule\n", "Slim Expansion Pickings Curbed Early Growth of Caps\n", "Looking back at the 24 players the Caps pulled in '74 expansion draft, 50 years ago today\n", "Caps Began to Take Shape 50 Years Ago\n", "Under the cover of secrecy, Caps added first players at 1974 NHL Entry Draft\n", "Caps Named Anderson Coach Half a Century Ago\n", "Jimmy Anderson had the impossible task of coaching the expansion Caps in '74-75\n", "Time CAPSule - Boudreau Promoted on Thanksgiving Day (11/22/07)\n", "Caps name Bruce Boudreau interim bench boss after rugged 6-14-1 start to '07-08 season\n", "Time CAPSule - Bondra Retires (10/30/07)\n", "Bondra retires from NHL to take over as GM of Slovakian national team\n", "Time CAPSule - Late Surge Sparks 5-3 Win in Atlanta\n", "Backstrom scores game-tying and winning goals 32 seconds apart in third, Ovechkin reaches 60-goal plateau as Caps earn crucial win\n", "Time CAPSule - Caps at Atlanta, March 21, 2008\n", "Tenth-place Caps in dire need of a win in midst of six-game road stretch\n", "Time CAPSule - Caps at Chicago, March 19, 2008\n", "Reliving the home stretch of the Caps' 2007-08 season, a dozen years down the road\n", "Time CAPSule - Beagle's Climb to NHL\n", "In this piece from July 2008, we compare Jay Beagle's rise to the NHL to Carl Spackler's stunning performance at Augusta\n", "Time CAPSule - Caps Fall to Philly in Overtime of Game 7\n", "Caps' storybook season comes to a halt on Lupul's power-play goal in overtime\n", "Time CAPSule - Caps Force Game 7 in DC - April 22, 2008\n", "Ovechkin strikes twice in third to snap 2-2 tie with Flyers, evening series at 3-3\n", "Time CAPSule - Caps at Philadelphia, April 21, 2008 - Game 6\n", "Caps head back to Philly, focused on forcing a decisive Game 7 in DC a night later\n", "Time CAPSule - Caps Power Past Philly to Force Game 6\n", "A pair of power-play goals enable the Caps to extend their season and return to Philadelphia for Game 6\n", "Time CAPSule - Flyers at Caps, April 19, 2008\n", "Caps are out of wiggle room as they face Flyers in must-win game 5 on Saturday afternoon in DC\n", "Time CAPSule: Knuble Wins it in Double OT, Pushing Caps to Precipice\n", "Caps' best performance of the series in Game 4 isn't enough; they lose third straight to fall down 3-1 to Flyers\n", "Time CAPSule - Caps at Philly, Game 4, April 17, 2008\n", "After losing two straight for first time in nearly a month, Caps seek to even first-round series with Flyers\n", "Time CAPSule - Late Goals Lead to Another Loss for Caps\n", "Caps fall 6-3 to Flyers in Game 3, yielding all six goals in final four minutes of the three periods\n", "Time CAPSule - Caps Hit the Road for Game 3 in Philly\n", "Caps look to bounce back from blanking as series shifts to Philadelphia for Game 3\n", "Time CAPSule - Caps Come Up Empty in Game 2 - (4/14/08)\n", "Flyers score twice in first, squaring series at 1-1 behind Biron's 24-save shutout\n", "Time CAPSule - Flyers at Caps, April 13, 2008\n", "Caps look to take a 2-0 series lead over Flyers in Game 2 on Sunday afternoon in D.C.\n", "Time CAPSule - Ovechkin's First Playoff Goal Wins it for Caps\n", "Caps' Young Guns key third-period comeback from two-goal deficit in Game 1 win over Flyers\n", "Time CAPSule - Young Guns Set for First Taste of Playoffs\n", "Caps quartet of young stars set for Stanley Cup action as Washington hosts Philly in Game 1\n", "Time CAPSule - Caps Face Flyers in First Round\n", "The two worst teams in the East a year earlier, the Caps and Flyers get set for a first-round playoff tussle\n", "Time CAPSule - Fedorov's Mentoring Pushes Caps Forward\n", "Late-season addition of future Hall of Famer sparked Caps' group of wide-eyed \"Young Guns\" and rejuvenated his own career\n", "Time CAPSule - McPhee Engineers a Memorable Trade Deadline Haul\n", "McPhee fills needs and then some, adding three key pieces in deadline deals aimed at propelling Caps into playoffs\n", "Previous\n", "Next\n", "Our Partners\n", "Facebook\n", "YouTube\n", "Instagram\n", "Twitter\n", "Threads\n", "Discord\n", "Twitch\n", "TikTok\n", "Contact Us\n", "Capitals Privacy Policy\n", "Partnership Opportunities\n", "Careers\n", "Hershey Bears\n", "South Carolina Stingrays\n", "Monumental Sports Network\n", "Monumental Sports and Entertainment\n", "WashingtonCaps.com is the official Web site of the Washington Capitals. Washington Capitals and WashingtonCaps.com, WashingtonCapitals.com are trademarks of Lincoln Hockey. NHL, the NHL Shield, the word mark and image of the Stanley Cup and NHL Conference logos are registered trademarks of the National Hockey League. All NHL logos and marks and NHL team logos and marks as well as all other proprietary materials depicted herein are the property of the NHL and the respective NHL teams and may not be reproduced without the prior written consent of NHL Enterprises, L.P. Copyright © 1999-2020 Lincoln Hockey and the National Hockey League. All Rights Reserved. NHL, the NHL Shield and the word mark NHL Winter Classic are registered trademarks and the NHL Winter Classic logo is a trademark of the National Hockey League. NHL and NHL team marks are the property of the NHL and its teams. © NHL 2024. All Rights Reserved.\n", "NHL.com Terms of Service\n", "NHL.com Privacy Policy\n", "Cookie Policy\n", "Cookie Settings\n", "Copyright Policy\n", "Employment\n", "Close\n", "\n", "\n", "\n", "stats page\n", "Webpage Title:\n", "Washington Capitals Club Stats | 2024 - 2025 | Washington Capitals\n", "Webpage Contents:\n", "Skip to Main Content\n", "Tickets\n", "All Capitals Tickets\n", "Single Game Tickets\n", "2024-25 Season Tickets\n", "Partial Plans\n", "Promotions Schedule\n", "GOVX Military & Govt Employee Discount Program\n", "Special Ticket Offers\n", "Group Tickets\n", "VIP Seating\n", "Account Manager\n", "Tickets for Business\n", "Using the New NHL Mobile App\n", "NHL Ticket Exchange\n", "Digital Ticketing\n", "Capital One Arena\n", "Transformation - The Vaults\n", "Schedule\n", "2024-25 Season Schedule\n", "Practice Schedule\n", "Where To Watch\n", "Home Jersey Schedule\n", "Schedule Sync & Download\n", "Team\n", "Capitals Roster\n", "Capitals Prospects\n", "Caps Alumni\n", "Management\n", "Coaching Staff\n", "Equipment and Trainers\n", "Staff Directory\n", "Monumental Sports and Entertainment\n", "AHL Hershey Bears\n", "ECHL South Carolina Stingrays\n", "News\n", "Capitals News\n", "Capitals Today\n", "Dump N' Chase\n", "Community News\n", "Ted's Take\n", "Video\n", "All Video\n", "Game Highlights\n", "Mic'd Up\n", "Capitals Locker Room\n", "Caps365\n", "Rinkside Update\n", "Off the Ice\n", "Coach's Corner\n", "Caps Game Entertainment\n", "Capitals Alumni\n", "Navigation Menu\n", "History\n", "History\n", "Franchise History\n", "50th Anniversary\n", "Anniversary Teams\n", "Jersey Timeline\n", "2018 Stanley Cup\n", "The Gr8 Chase\n", "Stats\n", "Standings\n", "Listen\n", "Listen\n", "Caps Radio 24/7\n", "Caps Podcasts\n", "Community\n", "Community\n", "Caps in the Community\n", "Diversity, Equity, and Inclusion\n", "Player Programs\n", "Community Initiatives\n", "Community News\n", "Community FAQ\n", "Caps In School\n", "CareFirst\n", "Military Commitment\n", "MSE Foundation\n", "Fans\n", "Fans\n", "Caps Kids Club\n", "Baby Caps\n", "Caps Canines\n", "Slapshot\n", "Win With the Caps\n", "District E powered by Ticketmaster\n", "Ice Chips E-News\n", "LED Board Announcements\n", "Getting to the Game\n", "NHL Code of Conduct\n", "Youth Hockey\n", "Shop\n", "Shop\n", "Official Capitals Online Store\n", "Official Team Stores\n", "NHL Auctions\n", "League\n", "NHL.com\n", "Caps Radio 24/7\n", "Listen to the Washington Capitals no matter where you are! John Walton & co. bring Caps hockey games and analysis all hours of the day for FREE on the Tunein app at CapsRadio247.com.\n", "Listen Now\n", "Capital One Cardholder Benefits\n", "Capital One Cardholders receive special perks, including:\n", "Discounts on tickets, concessions, and retail\n", "VIP Experiences\n", "Monumental Network subscription, and more!\n", "Learn More\n", "Our Partners\n", "Facebook\n", "YouTube\n", "Instagram\n", "Twitter\n", "Threads\n", "Discord\n", "Twitch\n", "TikTok\n", "Contact Us\n", "Capitals Privacy Policy\n", "Partnership Opportunities\n", "Careers\n", "Hershey Bears\n", "South Carolina Stingrays\n", "Monumental Sports Network\n", "Monumental Sports and Entertainment\n", "WashingtonCaps.com is the official Web site of the Washington Capitals. Washington Capitals and WashingtonCaps.com, WashingtonCapitals.com are trademarks of Lincoln Hockey. NHL, the NHL Shield, the word mark and image of the Stanley Cup and NHL Conference logos are registered trademarks of the National Hockey League. All NHL logos and marks and NHL team logos and marks as well as all other proprietary materials depicted herein are the property of the NHL and the respective NHL teams and may not be reproduced without the prior written consent of NHL Enterprises, L.P. Copyright © 1999-2020 Lincoln Hockey and the National Hockey League. All Rights Reserved. NHL, the NHL Shield and the word mark NHL Winter Classic are registered trademarks and the NHL Winter Classic logo is a trademark of the National Hockey League. NHL and NHL team marks are the property of the NHL and its teams. © NHL 2024. All Rights Reserved.\n", "NHL.com Terms of Service\n", "NHL.com Privacy Policy\n", "Cookie Policy\n", "Cookie Settings\n", "Copyright Policy\n", "Employment\n", "Close\n", "\n", "\n", "\n", "standings page\n", "Webpage Title:\n", "Washington Capitals Hockey Standings\n", "Webpage Contents:\n", "Skip to Main Content\n", "Tickets\n", "All Capitals Tickets\n", "Single Game Tickets\n", "2024-25 Season Tickets\n", "Partial Plans\n", "Promotions Schedule\n", "GOVX Military & Govt Employee Discount Program\n", "Special Ticket Offers\n", "Group Tickets\n", "VIP Seating\n", "Account Manager\n", "Tickets for Business\n", "Using the New NHL Mobile App\n", "NHL Ticket Exchange\n", "Digital Ticketing\n", "Capital One Arena\n", "Transformation - The Vaults\n", "Schedule\n", "2024-25 Season Schedule\n", "Practice Schedule\n", "Where To Watch\n", "Home Jersey Schedule\n", "Schedule Sync & Download\n", "Team\n", "Capitals Roster\n", "Capitals Prospects\n", "Caps Alumni\n", "Management\n", "Coaching Staff\n", "Equipment and Trainers\n", "Staff Directory\n", "Monumental Sports and Entertainment\n", "AHL Hershey Bears\n", "ECHL South Carolina Stingrays\n", "News\n", "Capitals News\n", "Capitals Today\n", "Dump N' Chase\n", "Community News\n", "Ted's Take\n", "Video\n", "All Video\n", "Game Highlights\n", "Mic'd Up\n", "Capitals Locker Room\n", "Caps365\n", "Rinkside Update\n", "Off the Ice\n", "Coach's Corner\n", "Caps Game Entertainment\n", "Capitals Alumni\n", "Navigation Menu\n", "History\n", "History\n", "Franchise History\n", "50th Anniversary\n", "Anniversary Teams\n", "Jersey Timeline\n", "2018 Stanley Cup\n", "The Gr8 Chase\n", "Stats\n", "Standings\n", "Listen\n", "Listen\n", "Caps Radio 24/7\n", "Caps Podcasts\n", "Community\n", "Community\n", "Caps in the Community\n", "Diversity, Equity, and Inclusion\n", "Player Programs\n", "Community Initiatives\n", "Community News\n", "Community FAQ\n", "Caps In School\n", "CareFirst\n", "Military Commitment\n", "MSE Foundation\n", "Fans\n", "Fans\n", "Caps Kids Club\n", "Baby Caps\n", "Caps Canines\n", "Slapshot\n", "Win With the Caps\n", "District E powered by Ticketmaster\n", "Ice Chips E-News\n", "LED Board Announcements\n", "Getting to the Game\n", "NHL Code of Conduct\n", "Youth Hockey\n", "Shop\n", "Shop\n", "Official Capitals Online Store\n", "Official Team Stores\n", "NHL Auctions\n", "League\n", "NHL.com\n", "Our Partners\n", "Facebook\n", "YouTube\n", "Instagram\n", "Twitter\n", "Threads\n", "Discord\n", "Twitch\n", "TikTok\n", "Contact Us\n", "Capitals Privacy Policy\n", "Partnership Opportunities\n", "Careers\n", "Hershey Bears\n", "South Carolina Stingrays\n", "Monumental Sports Network\n", "Monumental Sports and Entertainment\n", "WashingtonCaps.com is the official Web site of the Washington Capitals. Washington Capitals and WashingtonCaps.com, WashingtonCapitals.com are trademarks of Lincoln Hockey. NHL, the NHL Shield, the word mark and image of the Stanley Cup and NHL Conference logos are registered trademarks of the National Hockey League. All NHL logos and marks and NHL team logos and marks as well as all other proprietary materials depicted herein are the property of the NHL and the respective NHL teams and may not be reproduced without the prior written consent of NHL Enterprises, L.P. Copyright © 1999-2020 Lincoln Hockey and the National Hockey League. All Rights Reserved. NHL, the NHL Shield and the word mark NHL Winter Classic are registered trademarks and the NHL Winter Classic logo is a trademark of the National Hockey League. NHL and NHL team marks are the property of the NHL and its teams. © NHL 2024. All Rights Reserved.\n", "NHL.com Terms of Service\n", "NHL.com Privacy Policy\n", "Cookie Policy\n", "Cookie Settings\n", "Copyright Policy\n", "Employment\n", "Close\n", "\n", "\n" ] } ], "source": [ "print(get_all_details(\"https://www.nhl.com/capitals/\"))" ] }, { "cell_type": "code", "execution_count": 13, "id": "3d9aa466-e68d-4119-95e4-10893d774ebf", "metadata": {}, "outputs": [], "source": [ "system_prompt = \"You are a sports marketing analyst that analyzes the contents of several relevant pages from a sports team website \\\n", "and creates a short brochure about the team for prospective fans and players to recruit. Respond in markdown.\\\n", "Include details of team history, team culture, team news, and team stats if you have the information.\"\n", "\n", "# Or uncomment the lines below for a more humorous brochure - this demonstrates how easy it is to incorporate 'tone':\n", "\n", "# system_prompt = \"You are an assistant that analyzes the contents of several relevant pages from a company website \\\n", "# and creates a short humorous, entertaining, jokey brochure about the company for prospective customers, investors and recruits. Respond in markdown.\\\n", "# Include details of company culture, customers and careers/jobs if you have the information.\"" ] }, { "cell_type": "code", "execution_count": 14, "id": "07097603-5196-47cc-9e61-b412c14b62c6", "metadata": {}, "outputs": [], "source": [ "def get_brochure_user_prompt(company_name, url):\n", " user_prompt = f\"You are looking at a company called: {company_name}\\n\"\n", " user_prompt += f\"Here are the contents of its landing page and other relevant pages; use this information to build a short brochure of the team in markdown.\\n\"\n", " user_prompt += get_all_details(url)\n", " user_prompt = user_prompt[:40_000] # Truncate if more than 40,000 characters\n", " return user_prompt" ] }, { "cell_type": "code", "execution_count": 15, "id": "36d42b59-0a96-41b7-b9fc-02ae37659f7a", "metadata": {}, "outputs": [], "source": [ "def create_brochure(company_name, url):\n", " response = openai.chat.completions.create(\n", " model=MODEL,\n", " messages=[\n", " {\"role\": \"system\", \"content\": system_prompt},\n", " {\"role\": \"user\", \"content\": get_brochure_user_prompt(company_name, url)}\n", " ],\n", " )\n", " result = response.choices[0].message.content\n", " display(Markdown(result))" ] }, { "cell_type": "code", "execution_count": 16, "id": "6e642228-092a-4bf5-a3c2-1ab78822453a", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Found links: {'links': [{'type': 'about page', 'url': 'https://www.nhl.com/capitals'}, {'type': 'team page', 'url': 'https://www.nhl.com/capitals/team/management'}, {'type': 'team page', 'url': 'https://www.nhl.com/capitals/team/coaching-staff'}, {'type': 'team page', 'url': 'https://www.nhl.com/capitals/team/equipment-training-staff'}, {'type': 'team page', 'url': 'https://www.nhl.com/capitals/team/staff'}, {'type': 'news page', 'url': 'https://www.nhl.com/capitals/news/'}, {'type': 'schedule page', 'url': 'https://www.nhl.com/capitals/schedule'}, {'type': 'history page', 'url': 'https://www.nhl.com/capitals/history/'}, {'type': 'history page', 'url': 'https://www.nhl.com/capitals/history/50th-anniversary'}, {'type': 'stats page', 'url': 'https://www.nhl.com/capitals/stats'}, {'type': 'standings page', 'url': 'https://www.nhl.com/capitals/standings'}, {'type': 'roster page', 'url': 'https://www.nhl.com/capitals/roster'}, {'type': 'prospects page', 'url': 'https://www.nhl.com/capitals/prospects'}]}\n" ] }, { "data": { "text/markdown": [ "# Washington Capitals Team Brochure\n", "\n", "---\n", "\n", "## 🏒 Welcome to the Washington Capitals!\n", "\n", "### Team History\n", "Founded in 1974, the Washington Capitals have become a cornerstone of professional ice hockey in the NHL. Over the decades, they've shone brightly in the league, culminating in their first Stanley Cup victory in 2018. This remarkable achievement marked the pinnacle of a journey that began with countless playoff appearances and franchise milestones.\n", "\n", "### Celebrating 50 Years\n", "Join us in celebrating the **50th Anniversary** of Capitals hockey! Reminisce about the highs and lows that shaped this legendary team and the passionate fanbase that stands behind them.\n", "\n", "### Notable Achievements\n", "- **2018 Stanley Cup Champions**\n", "- Three Presidents' Trophy winners (2009-10, 2015-16, 2016-17)\n", "- A record of 1,616-1,155-201-185 since 1982 \n", "\n", "### Team Culture\n", "The Capitals embody a culture of excellence, teamwork, and community involvement. Guided by the motto **\"A Legacy in ALL CAPS,\"** our players not only compete on the ice but also actively engage in community initiatives, promoting diversity and inclusion through programs like **Caps in the Community**.\n", "\n", "### Coaching Staff\n", "Led by **Spencer Carbery**, named head coach in 2023, our experienced coaching staff—composed of former players and successful coaches—works tirelessly to develop our talent and tactical strategies. \n", "\n", "### Team Statistics (As of October 2023)\n", "- Total Games Played: Over 3,000\n", "- Career Points Leader: Alex Ovechkin\n", "- Regular Season Achievements: \n", " - Most Wins in a Decade (2010s)\n", " - Record of 56 wins in 2015-16 season\n", "\n", "### Community Engagement\n", "The Capitals are committed to giving back, whether it's through youth programs, military initiatives, or local partnerships. Our community-focused initiatives touch lives and promote the love of hockey among the younger generations.\n", "\n", "### Team News & Updates\n", "Stay updated with the latest happenings regarding trades, player signings, and game highlights through our news portal. Follow acclaimed segments like **“Dump N' Chase”** for insightful coverage of the team's journey.\n", "\n", "### Join Us!\n", "Whether you're a lifelong fan or a newcomer, we invite you to become part of the Capitals family. Support our players by attending games at **Capital One Arena**, enjoying the electric atmosphere that only live hockey can offer.\n", "\n", "### Tickets & Memberships\n", "Explore various ticketing options from single-game passes to season-long commitments. Visit our **[Official Website](https://www.washingtoncaps.com)** for more details on tickets and joining the **Caps Kids Club** for our younger fans!\n", "\n", "---\n", "\n", "## 🌟 Get Involved\n", "**Connect with us on Social Media:**\n", "- [Facebook](https://www.facebook.com/washingtoncapitals)\n", "- [Twitter](https://twitter.com/Capitals)\n", "- [Instagram](https://www.instagram.com/capitals)\n", "\n", "Be part of an unforgettable experience with the Washington Capitals—where passion meets performance on and off the ice!" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "create_brochure(\"Washington Capitals\", \"https://www.nhl.com/capitals\")" ] }, { "cell_type": "code", "execution_count": null, "id": "1ccee810-3a11-48ec-8a69-d12efcbeb1cd", "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "markdown", "id": "d392b8a2-9d1a-40bb-a8c1-5b88ad7e463d", "metadata": {}, "source": [ "# Translate to Spanish" ] }, { "cell_type": "code", "execution_count": 17, "id": "7bc08bb5-c02e-4685-bbd1-5afa084b7f18", "metadata": {}, "outputs": [], "source": [ "def get_brochure_user_prompt(company_name, url):\n", " user_prompt = f\"You are looking at a company called: {company_name}\\n\"\n", " user_prompt += f\"Here are the contents of its landing page and other relevant pages; use this information to build a short brochure in spanish of the team in markdown.\\n\"\n", " user_prompt += get_all_details(url)\n", " user_prompt = user_prompt[:40_000] # Truncate if more than 40,000 characters\n", " return user_prompt" ] }, { "cell_type": "code", "execution_count": 19, "id": "a40a2437-499a-4665-8d45-8241705477d6", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Found links: {'links': [{'type': 'about page', 'url': 'https://www.nhl.com/capitals'}, {'type': 'team page', 'url': 'https://www.nhl.com/capitals/team/management'}, {'type': 'team page', 'url': 'https://www.nhl.com/capitals/team/coaching-staff'}, {'type': 'schedule page', 'url': 'https://www.nhl.com/capitals/schedule'}, {'type': 'news page', 'url': 'https://www.nhl.com/capitals/news'}, {'type': 'history page', 'url': 'https://www.nhl.com/capitals/history'}, {'type': 'stats page', 'url': 'https://www.nhl.com/capitals/stats'}, {'type': 'standings page', 'url': 'https://www.nhl.com/capitals/standings'}, {'type': 'roster page', 'url': 'https://www.nhl.com/capitals/roster'}, {'type': 'prospects page', 'url': 'https://www.nhl.com/capitals/prospects'}]}\n" ] }, { "data": { "text/markdown": [ "# Washington Capitals\n", "\n", "## Bienvenidos a los Capitals de Washington\n", "\n", "### Historia del Equipo\n", "Los Washington Capitals han sido una parte integral de la historia del hockey sobre hielo desde su fundación en 1974. Durante sus 50 años, han enfrentado desafíos y han logrado éxitos notables, incluyendo su primera victoria en la Copa Stanley en 2018, marcando un hito en la historia del equipo. Los Capitals son conocidos por su fuerte espíritu competitivo y su dedicación a la excelencia en el deporte.\n", "\n", "### Cultura del Equipo\n", "La cultura de los Capitals se basa en la inclusión, el trabajo en equipo y una fuerte conexión con la comunidad. A través de programas de diversidad, equidad e inclusión, los Capitals no solo buscan ser un gran equipo en el hielo, sino también un pilar en su comunidad. El equipo participa activamente en la comunidad a través de diversas iniciativas y programas que fomentan el amor por el hockey entre los jóvenes.\n", "\n", "### Noticias del Equipo\n", "Para mantenerte al tanto de las novedades, puedes seguir las actualizaciones diarias y los análisis en nuestro sitio web. Desde reseñas de partidos hasta entrevistas con jugadores y el cuerpo técnico, siempre hay algo nuevo que descubrir sobre tus Capitals.\n", "\n", "### Estadísticas Destacadas\n", "- **Victorias en la NHL:** Desde 1982, los Capitals han sido una fuerza dominante en la NHL, acumulando más de 1,600 victorias.\n", "- **Mejor Década:** Durante la última década, los Capitals tuvieron el récord de más victorias en la NHL, destacándose como uno de los equipos más exitosos.\n", "- **Copa Stanley:** Campeones de la Copa Stanley en 2018, con un impresionante récord de victorias en los playoffs.\n", "\n", "### ¿Por qué unirse a los Capitals?\n", "Invitamos a todos los fanáticos, nuevos o actuales, a unirse a nosotros en la Capital One Arena para vivir la pasión del hockey. Con diversos planes de boletos y eventos especiales, siempre hay una manera de disfrutar de un juego de hockey emocionante. Además, los aficionadores pueden formar parte de clubes exclusivos y disfrutar de ventajas especiales.\n", "\n", "### Redes Sociales\n", "¡Síguenos en nuestras plataformas sociales para no perderte nada de la acción!\n", "- [Facebook](https://www.facebook.com/washingtoncapitals)\n", "- [Instagram](https://www.instagram.com/washingtoncapitals)\n", "- [Twitter](https://twitter.com/capitals)\n", "\n", "---\n", "\n", "**¡Ven y únete a la familia de los Washington Capitals, donde cada juego es una celebración!** 🎉" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "create_brochure(\"Washington Capitals\", \"https://www.nhl.com/capitals\")" ] }, { "cell_type": "code", "execution_count": null, "id": "36f5d6d7-952c-4d50-894c-9b01e29cebc8", "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3 (ipykernel)", "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.3" } }, "nbformat": 4, "nbformat_minor": 5 }