dashroshan / iiit-bbsr-mums-scraping

📢 Python script to scrape notices from the IIIT Bhubaneswar M-UMS site

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

IIIT Bbsr M-UMS Scraping

Notice Board

Get latest notices as a list of dictionaries in the below format

{
    "heading" : "Notice heading",
    "date" : "YYYY-MM-DD",
    "for" : "For whom is the notice posted",
    "by" : "Who posted the notice",
    "hasAttachment" : True or False,
    "content" : "Notice text"
}

Sample use:

# iiitBbsr.py in the same folder as this python file
from iiitBbsr import getNotice
for notice in getNotice():
    print(notice["heading"])

About

📢 Python script to scrape notices from the IIIT Bhubaneswar M-UMS site


Languages

Language:Python 100.0%