SkillAgentSearch skills...

Acciotables

API to scrap data from dynamic webpages. (say tables on Sports Reference websites)

Install / Use

/learn @npranav10/Acciotables
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

https://acciotables.herokuapp.com

<ins>API to scrape dynamically generated contents in a webapge.</ins>

This API takes in the url of a webpage and css selector id of the content to be scrapped and returns the outer html text of the scrapped content. It is hosted in heroku and works using Puppeteer (to enable headless scraping) and ExpressJS (to serve the app).

| Reference | Detail | | - | - | | API Format | https://acciotables.herokuapp.com/?page_url=some_content&content_selector_id=some_content | | Attributes | page_url : The URL of the webpage on which the content to be scrapped is available (in html encoded format) | | | content_selector_id : CSS Selector ID of a particular table or any html element (in html encoded format)| | Request Method | GET : GET methods means the API returns you something you ask | | Response Type | text/html : Outer HTML content of the scrapped table (or any html element) |

<ins> Sample usage:</ins>

Note: Since the API is deployed on Heroku, it might take a while to wake the web process if the webapp had been idle for last few minutes and needs to be moved from idle to running. Once it's up and running it will take a maximum of 4 seconds to produce the result.

<p align="center"><img src="https://raw.githubusercontent.com/npranav10/npranav10.github.io/master/blog/scraping-fbref-data/selectorgadget.png" width="800" /></p>

  • From the above image we get to know that the css selector id for the "Squads Goalkeeping" table is #stats_keeper_squads.
  • In order to scrap the table, all we need to do is call the API as http://acciotables.herokuapp.com/?page_url=https://fbref.com/en/comps/22/Major-League-Soccer-Stats&content_selector_id=%23stats_keeper_squads. Note that # is replaced with its ASCII value %23 as URL's don't accept some symbols. Remember to swap # with %23 or refer to this page for more details for encoding other symbols.
  • The result is as follows: (we get the table in html format)

<p align="center"><img src="https://raw.githubusercontent.com/npranav10/acciotables/master/accio.png" width="800" /></p>

<ins> Calling the API in R:</ins>

require(rvest)
require(dplyr)
page <- read_html("http://acciotables.herokuapp.com/?page_url=https://fbref.com/en/comps/22/Major-League-Soccer-Stats&content_selector_id=%23stats_keeper_squads")
table <- page %>% html_table()
table <- table[[1]] 
print(table)

<ins> Using the API in Python:</ins>

import pandas as pd
url = "http://acciotables.herokuapp.com/?page_url=https://fbref.com/en/comps/22/Major-League-Soccer-Stats&content_selector_id=%23stats_keeper_squads"

df = pd.read_html(url,header=0)
print(df)

Related Skills

View on GitHub
GitHub Stars14
CategoryDevelopment
Updated8mo ago
Forks0

Security Score

72/100

Audited on Jul 21, 2025

No findings