Skip to content

Instantly share code, notes, and snippets.

@vural
vural / megep.json
Last active March 13, 2018 07:35
megep.json
This file has been truncated, but you can view the full file.
@vural
vural / megep2.md
Last active March 13, 2018 07:05
Megep Dökümanları - 2. Liste
@vural
vural / megep.md
Last active June 23, 2024 10:55
Megep Dökümanları - 1. Liste
@vural
vural / megep.py
Created March 12, 2018 19:52
megep
import requests
from bs4 import BeautifulSoup
class Parser(object):
__slots__ = ('_view_state', '_view_state_generator')
def __init__(self):
main_page_resp = requests.get('http://megep.meb.gov.tr/?page=moduller').text
soup = BeautifulSoup(main_page_resp, 'html.parser')