You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 20, 2023. It is now read-only.
Hi!
I'm currently trying to scrape the bio of the page I'm redirecting but instead is bringing my own profile bio:
google = Profile('https://www.instagram.com/fiat_planes/')
google.scrape(headers=headers)
page_data = []
page_data.append(google.biography)
page_data.append(google.followers)
page_data.append(google.posts)
page_data.append(google.username)
df = pd.DataFrame({'Bio':page_data[0], 'Followers':page_data[1], 'Posts':page_data[2], 'Username':page_data[3]}, index=[0])
print(df)
Result:
0 Cause I know 狂い出した未来\n悪夢すら平凡 リセット リセット 346 105 fiat_planes
The bio is the only thing that tracks down from my own profile. Followers, posts and username is from the URL profile.
The text was updated successfully, but these errors were encountered: