vladiscripts

Results 17 comments of vladiscripts
trafficstars

Same error. No Docker, Python 3.7, Ubuntu. The hack by @soundaraj helps, but... ``` [W:pyppeteer.chromium_downloader] start chromium download. Download may take a few minutes. ... "/web/lib/python3.7/site-packages/pyppeteer/chromium_downloader.py", line 136, in download_chromium...

Answer on #148 Perhaps ... Many of pages with this issue [AWB](https://en.wikipedia.org/wiki/Wikipedia:AutoWikiBrowser) marks as "have unclosed tags". But not all, e.g. no a tag errors in https://ru.wikipedia.org/w/index.php?title=%D0%9B%D0%B8%D0%BC%D0%BE%D0%BD&oldid=76351442. [This page](https://ru.wikipedia.org/w/index.php?title=%D0%9A%D1%83%D0%BB%D0%BE%D1%82%D0%B8%D0%BD%D0%BE_%28%D0%9D%D0%BE%D0%B2%D0%B3%D0%BE%D1%80%D0%BE%D0%B4%D1%81%D0%BA%D0%B0%D1%8F_%D0%BE%D0%B1%D0%BB%D0%B0%D1%81%D1%82%D1%8C%29&oldid=69829483) without...

> ``` > response.replace(body=str(BeautifulSoup(response.body, self.parser))) > ``` You can get a charset error using this, if the original page was not utf-8 encoded, because the response has set to other...

Maybe add support for https://github.com/wkeeling/selenium-wire to Requestium? Or even replace `selenium.webdriver` with `seleniumwire.webdriver`? Selenium-wire is interesting in that it can get Fetch/XHR requests particular. Because of which we have to...

We need to decide what changes to make. It depends on your requestium policy. * Can completely replace `from selenium import webdriver` with `from seleniumwire import webdriver`. The selenium-wire project...

I have added pull requests. But looking at the code, I saw the accumulated problems. 1) There it is desirable the initiation of the webdriver to separate from the Session...

I verified the file of the distro by https://tutorials.ubuntu.com/tutorial/tutorial-how-to-verify-ubuntu, it's ok. And I downloaded it via torrent, where is additional checksum. Also, with "[Startup Disk Creator](https://ubuntu.com/download/desktop)" I made a bootable...

Now the code breaks with a critical error raised: ```python db['tbl'].all() TypeError: MetaData.__init__() got an unexpected keyword argument 'bind' ```

If all tests are passed, maybe it's time to merge?

It would be better to update, instead of being locked into an unsupported version of Pandas. https://pandas.pydata.org/docs/whatsnew/v1.4.0.html#other-deprecations : > Deprecated `method` argument in `Index.get_loc()`, use `index.get_indexer([label], method=...)` instead.