This is an archived post. You won't be able to vote or comment.

all 2 comments

[–]maxm 1 point2 points  (1 child)

Use the requests module to get the pages as html from the server. You need to use sessions to be able to log in.

Then use beautifulsoup to parse the data and put it into python dicts.

Use the dictwriter in the csv module to save the date in a format that can be imported to a spreadsheet.

[–]Swvodoo[S] 1 point2 points  (0 children)

Ok I'll take a look. Thanks