Notes:
-
Problem: Finding effective hashtags can be challenging.
-
Benefit: Analyzes hashtags for better reach and engagement.
-
Adoption: Extend to track hashtag trends over time.
Python Code:
import requests
from bs4 import BeautifulSoup
def get_hashtag_data(hashtag):
url = f"https://www.instagram.com/explore/tags/{hashtag}/"
headers = {'User-Agent': 'Mozilla/5.0'}
response = requests.get(url, headers=headers)
soup = BeautifulSoup(response.text, 'html.parser')
script_tag = soup.find('script', {'type': 'text/javascript'}).text
data = script_tag.split('window._sharedData = ')[1].split(';</script>')[0]
return data
if __name__ == "__main__":
print(get_hashtag_data("digitalmarketing"))
No comments:
Post a Comment