How do I get the src attribute from a script file with beautifulsoup4 in python

my repo

I’m using the following code but it just isnt giving me any attrs from the script tag

for tag in index_text_obj.find_all('script'):
            print(tag['src'])