Every time I run this code it only gives me the data three times but I know it pops up way more times on the page.
from bs4 import BeautifulSoup
import requests
url = 'https://www.nba.com/players'
result = requests.get(url)
doc = BeautifulSoup(result.text, 'lxml')
college = doc.find_all(text='Kentucky')
print(college)