Creating a web scraper without third party modules

Got an assignment to create a web scraper and I have done it with modules like Beautifulsoup and scrappy… I’m getting stuck at this can anyone help me

Hi @nidhin :slight_smile:
It would be helpful if you post what you have tried, and tell us what is not working specifically.

Cheers.

1 Like

By Nidhin Raj via Discussions on Python.org at 09Jun2022 05:53:

Got an assignment to create a web scraper and I have done it with
modules like Beautifulsoup and scrappy… I’m getting stuck at this can
anyone help me

If you’re trying to scrape web pages without third party libraries:

  • urllib can fetch URLs
  • html.parser can parse HTML

See these modules at:
https://docs.python.org/3/py-modindex.html

Cheers,
Cameron Simpson cs@cskk.id.au