This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
import pandas as pd | |
# Let's read the file first and inspect its content to identify how to extract the required information. | |
file_path = 'README.md' | |
with open(file_path, 'r') as file: | |
file_content = file.read() | |
# Updating the logic to specifically capture only GitHub URLs |