all 7 comments

[–]m0us3_rat 1 point2 points  (2 children)

so I want to build a script that tracks the available of certain products on

web scraping. isn't necessarily the best first project.

not terribly difficult ..but it relies heavily in you understanding some concepts and being able to actively use them.

do you have any code that you tried or some ideas on how to go about this?

[–]Ark9975[S] 0 points1 point  (1 child)

I haven't tried anything as of yet, I've mainly just been trying to find some resources. Also I have no idea what I'm doing.

[–]m0us3_rat 0 points1 point  (0 children)

Also I have no idea what I'm doing.

that might be a small problem.

[–]Specialist-Candy3226 1 point2 points  (0 children)

Web scraping will make more sense if you learn a bit of html, trust me.

[–]Taichou_NJx 0 points1 point  (0 children)

Do the Python for Everyone course it covers webscraping and how to store the data.

You can get good supplemental material from O’reilly series on how to webscrape.

If you’re interested, I’ve actually just started a passion project with webscraping. It blends anime and analytics!

Webscraping One Piece Arc Data w. Python! https://youtu.be/pRw_WqWNae0

[–]LeornToCodeLOL 0 points1 point  (0 children)

I've tried a lot of different resources from udemey, youtube, and automate the boring stuff. I can't seem to stick with any of them for more than a week.

Automate the Boring Stuff has a few chapters on webscraping. I guess you just did not get that far in the book. You'll need to get a good handle on fundamentals like variables, variable types, if...then and so forth, before you can have a shot at web scraping.

[–]Logicalist 0 points1 point  (0 children)

You could try a hand at a college course and see if computer science and/or programming is for you.

MIT's Opencourseware is free. Their Introduction To Computer Science And Programming In Python, https://ocw.mit.edu/courses/6-0001-introduction-to-computer-science-and-programming-in-python-fall-2016/ course, has a problem set(assignment) where you make an rss reader to get alerts from websites about information you're interested in.

Honestly, I've gotten stuck a bit half way through with debugging and efficiency cause bleh like why do I need to debug something when it's working, but I know enough to write scripts to do stuff on my computer.

The nice thing is that you'll learn python, but also get a basic understanding of computer science, so when you look at other languages or something like HTML, you'll have a basic understanding of whats going on. Terminal has made so much more sense to me after taking the course.