How to extract paragraph from a website and save it as a text file? Last Updated : 23 Jul, 2025 Suggest changes Share Like Article Like Report Perquisites: Beautiful soupUrllib Scraping is an essential technique which helps us to retrieve useful data from a URL or a html file that can be used in another manner. The given article shows how to extract paragraph from a URL and save it as a text file. Modules Needed bs4: Beautiful Soup(bs4) is a Python library used for getting data from HTML and XML files. It can be installed as follows: pip install bs4 urllib: urllib is a package that collects several modules for working with URLs. It can also be installed the same way, it is most of the in-built in the environment itself. pip install urllib Approach: Create a text file.Now for the program, import required module and pass URL and **.txt file path. This will make a copy of html code of that URL in your local machine.Make requests instance and pass into URLOpen file in read mode and pass required parameter(s). Pass the requests into a Beautifulsoup() function.Create another file(or you can also write/append in existing file).Then we can iterate, and find all the 'p' tags, and print each of the paragraph in our text file. The implementation is given below: Example: Python3 import urllib.request from bs4 import BeautifulSoup # here we have to pass url and path # (where you want to save your text file) urllib.request.urlretrieve("https://www.geeksforgeeks.org/linux-unix/grep-command-in-unixlinux/", "/home/gpt/PycharmProjects/pythonProject1/test/text_file.txt") file = open("text_file.txt", "r") contents = file.read() soup = BeautifulSoup(contents, 'html.parser') f = open("test1.txt", "w") # traverse paragraphs from soup for data in soup.find_all("p"): sum = data.get_text() f.writelines(sum) f.close() Output: S skrg141 Follow 0 Article Tags : Misc Python Web-scraping Python BeautifulSoup Python web-scraping-exercises +1 More Explore Python FundamentalsPython Introduction 2 min read Input and Output in Python 4 min read Python Variables 5 min read Python Operators 4 min read Python Keywords 2 min read Python Data Types 8 min read Conditional Statements in Python 3 min read Loops in Python - For, While and Nested Loops 5 min read Python Functions 5 min read Recursion in Python 4 min read Python Lambda Functions 5 min read Python Data StructuresPython String 5 min read Python Lists 4 min read Python Tuples 4 min read Python Dictionary 3 min read Python Sets 6 min read Python Arrays 7 min read List Comprehension in Python 4 min read Advanced PythonPython OOP Concepts 11 min read Python Exception Handling 5 min read File Handling in Python 4 min read Python Database Tutorial 4 min read Python MongoDB Tutorial 2 min read Python MySQL 9 min read Python Packages 10 min read Python Modules 7 min read Python DSA Libraries 15 min read List of Python GUI Library and Packages 3 min read Data Science with PythonNumPy Tutorial - Python Library 3 min read Pandas Tutorial 4 min read Matplotlib Tutorial 5 min read Python Seaborn Tutorial 15+ min read StatsModel Library- Tutorial 4 min read Learning Model Building in Scikit-learn 8 min read TensorFlow Tutorial 2 min read PyTorch Tutorial 6 min read Web Development with PythonFlask Tutorial 8 min read Django Tutorial | Learn Django Framework 7 min read Django ORM - Inserting, Updating & Deleting Data 4 min read Templating With Jinja2 in Flask 6 min read Django Templates 7 min read Python | Build a REST API using Flask 3 min read How to Create a basic API using Django Rest Framework ? 4 min read Python PracticePython Quiz 1 min read Python Coding Practice 1 min read Python Interview Questions and Answers 15+ min read My Profile ${profileImgHtml} My Profile Edit Profile My Courses Join Community Transactions Logout Like