Re: [Tutor] Web Page Scraping

2016-05-24 Thread Crusier
Hi Walter, Thank you for taking your time to do all the explanation. Have a great day. Cheers, Hank On Tue, May 24, 2016 at 10:45 PM, Walter Prins wrote: > On 24 May 2016 at 15:37, Walter Prins wrote: >> print(name1.encode(sys.stdout.encoding, "backslashreplace")) >> # > > I

Re: [Tutor] Web Page Scraping

2016-05-24 Thread Walter Prins
On 24 May 2016 at 15:37, Walter Prins wrote: > print(name1.encode(sys.stdout.encoding, "backslashreplace")) # I forgot to mention, you might want to read the following documentation page: https://docs.python.org/3/howto/unicode.html (good luck.) W __

Re: [Tutor] Web Page Scraping

2016-05-24 Thread Walter Prins
Hi, On 24 May 2016 at 04:17, Crusier wrote: > > Dear All, > > I am trying to scrape a web site using Beautiful Soup. However, BS > doesn't show any of the data. I am just wondering if it is Javascript > or some other feature which hides all the data. > > I have the following questions: > > 1) Pl