All Questions
80 questions
2
votes
1
answer
123
views
Monitoring webpages to be notified
I have been writing a monitoring script where I check for whenever there is changes on a webpage. When a change has happend I want to be notified by printing out that there is a difference.
I have ...
2
votes
1
answer
123
views
Compare between two dictionaries
Hello beautiful people!
I have currently worked on a small script that I would of course continue to work with whenever I get a good feedback from the best code reviewer in here <3 - I have worked ...
2
votes
0
answers
165
views
Web scraping articles using asyncio
I use asyncio to speed up web scraping. I collect only title, author, tags, datetime, total comments from list view from specific website. Also, i collect these from all pages.
I would like to improve ...
5
votes
1
answer
62
views
Scraper for basketball rosters
I am very new to Python and I am trying to learn through personnal projects and today I needed to collect a lot of baksetball player names and decided this was a good time to learn and practice.
The ...
4
votes
1
answer
122
views
MultiLingual Online Translator
So i made a program, which allows you to translate from one language to another using the command prompt.
I would like advice about the design, optimizations, and the tips and tricks to avoid ...
3
votes
1
answer
82
views
Class or not in Page Scraper (Python BeautifulSoup)
I am trying to figure out whether the below is better than just having a raw script or just a script with functions.
...
3
votes
2
answers
141
views
7
votes
1
answer
778
views
1
vote
1
answer
916
views
Unofficial API for 1001tracklists.com
I wanted to build a scaping-API for the website 1001tracklists.com by writing classes for Tracklist and Track objects and some helpful functions:
Here's the full code (GitHub):
...
2
votes
1
answer
2k
views
Better way to extract html table to dictionary using beautifulsoup in python
I am scraping HTML pages. Part of the page has a table which has acts and sections of those acts mentioned in table format. For some other project I need to convert them to Dictionary. The key values ...
3
votes
2
answers
716
views
First Python Web Scraping Project with BeautifulSoup
This is my first Web Scraping project in which I am retrieving the current stock information from here. This program works as expected, but I would certainly think someone with more experience with ...
2
votes
1
answer
296
views
A Text-Based Browser using Requests, Beautiful Soup, Sys, OS, and colorama
I have worked on this for quite a long while, and this is my 3rd attempt after completely demolishing 3 other 200 liners, and i really need ideas on how to make my code add more functionality or ...
5
votes
2
answers
1k
views
OOP Web-scraper w/ Python and BeautifulSoup
This is my first major web scraping program in python. My code works nonetheless, I'm just not sure if it's the best OOP design. My code is below:
...
1
vote
3
answers
195
views
Scraping the Bundesliga table and saving it to CSV
Wrote my first mini-script to get data from the german football league table and save the data to a csv file. Do you like the approach or could I be more efficient? Thanks in advance!
...
4
votes
1
answer
1k
views
Scraping Data From Multiple URLs into Single Dataframe
I have a Class that:
goes to a url
grabs a link from that page, and a date (filing_date)
navigates to the link, and
writes the table from that page to a ...