D
Deleted member 969102
Guest
Hi there,
For my first python project, I made a web scraper (Like a Sitemap)
I then decided that I would modify it to make a range of Instagram bots. The one that I'm currently setting up is scraping people who posted with a specific #.
I have it fully working, but the user has to enter the full URL every time, whereas I only want them to enter the #
The code I have currently looks like this:
but it doesn't work. I have tried a lot of things like
And a bunch of other stuff changing out the spacing, etc but I can't get it to work.
I would really appreciate the help on this one. I could even pay if you really want.
For my first python project, I made a web scraper (Like a Sitemap)
I then decided that I would modify it to make a range of Instagram bots. The one that I'm currently setting up is scraping people who posted with a specific #.
I have it fully working, but the user has to enter the full URL every time, whereas I only want them to enter the #
The code I have currently looks like this:
Code:
tag = input("Please enter a Tag:")
url = "https://www.instagram.com/explore/tags/" + tag
but it doesn't work. I have tried a lot of things like
Code:
tag = input("Please enter a Tag:")
tagurl = "https://www.instagram.com/explore/tags/"
url = ['tagurl','tag']
I would really appreciate the help on this one. I could even pay if you really want.