Here on running the following code I am getting an error as below. Can anyone please help me with this.
import urllib
import requests
url = "https://www.sec.gov/Archives/edgar/data/1800/000104746918000856/0001047469-18-000856.txt"
page = urllib.request.urlopen(url).read()
page.decode('utf-8')
text_list = page.decode('utf-8').readlines()
AttributeError: 'str' object has no attribute 'readlines'