Skip to content

Instantly share code, notes, and snippets.

@jsanz
Last active March 24, 2023 20:08
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jsanz/36ba47fc6c00b35b70894c455d0d10cc to your computer and use it in GitHub Desktop.
Save jsanz/36ba47fc6c00b35b70894c455d0d10cc to your computer and use it in GitHub Desktop.
Python: get FOSS4G 2022 abstracts into a JSON file

This simple scripts scraps the FOSS4G Community Review pages to convert the abstracts into a JSON file that will contain for each abstract:

  • Page number
  • Title
  • Abstract in HTML
  • Your score if it exists

Requirements: Python 3, BeautifulSoup, and Requests

It expects a FOSS4G_ID environment variable that is the variable part of the URL that you get when you sign in for the community review: https://talks.osgeo.org/foss4g-2022/p/voting/talks/{FOSS4G_ID}?.

# -*- coding: utf-8 -*-
import os, sys
from bs4 import BeautifulSoup
import requests
import json
def is_checked(tag):
return tag.has_attr('checked')
def processPage(page):
r = requests.get(url,params={'page': page})
soup = BeautifulSoup(r.text, 'html.parser')
cards = soup.find_all('div', class_="submission-card")
abstracts = []
for card in cards:
abstract = {'page': page}
abstract['title'] = card.find('h3').text
html_tags = filter(lambda x: x != '\n',card.find('div', class_='card-text').children)
abstract['html'] = ''.join(map(lambda x : str(x), html_tags))
checked = card.find_all(is_checked)
abstract['score'] = int(checked[0]['value']) if len(checked) == 1 else None
abstracts.append(abstract)
return abstracts
if 'FOSS4G_ID' not in os.environ:
print('FOSS4G_ID environment variable not found', file=sys.stderr)
sys.exit(1)
FOSS4G_ID = os.environ['FOSS4G_ID']
url=f'https://talks.osgeo.org/foss4g-2022/p/voting/talks/{FOSS4G_ID}?'
abstracts = []
try:
abstracts = [processPage(page) for page in range(1,21)]
print(json.dumps(abstracts, sort_keys=True, indent=4))
except:
print("Unexpected error:", sys.exc_info()[0], file=sys.stderr)
sys.exit(1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment