I am currently using the following code to obtain the page content of wikipedia.
import pywikibot as pw
page = pw.Page(pw.Site('en'), 'Forensic science')
page.text
However, it seems like the above code does not reaturn content in Talk pages
of wikipedia. e.g.,
import pywikibot as pw
page = pw.Page(pw.Site('en'), 'Talk:Forensics science')
page.text
More precisely, I want to get the content of this page: https://en.wikipedia.org/w/index.php?title=Talk:Forensic_science&action=edit
I am happy to provide more details if needed. :)