Some stats: - Total number of links: 24459
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from bs4 import BeautifulSoup | |
| import re | |
| import requests | |
| import heapq | |
| from nltk.tokenize import sent_tokenize,word_tokenize | |
| from nltk.corpus import stopwords | |
| url = str(input("Paste the url"\n")) | |
| num = int(input("Enter the Number of Sentence you want in the summary")) | |
| num = int(num) |