Bartłomiej "furas" Burek

Results 14 comments of Bartłomiej "furas" Burek

You may have to import it ``` import tensorflow.contrib ``` and use `tensorflow.contrib` instead of `tf.contrib` or similar. --- To compile I used standard steps which I found in Tensorflow...

@ibnux I compiled new version 1.14.1 but on `Linux Mint 20` and now it has `tf.contrib.predictor` even without using `import tensorflow.contrib` See [Tensorflow 1.14.1, CPU, no CUDA, no AVX, Python...

`dreampie` was created in `Python 2.7` and it needs `Python 2.7` to run it. You have to install in with `pip2 install ...` or `python2 -m pip installl ...` If...

Hi, It uses JavaScript to add elements. Using Selenium you can visit page with `?tab=reviews` to see all reviews. But it may need also to click button `Show more` because...

Hi, There are many examples. Which example do you use? What portal do you try to scrape? Check how old is my example - sometimes portals change HTML on page...

Hi pycoder-adc, I can also confirm that it works on Linux Mint 19.1, kernel 4.18.0-14-generic, Python 3.7.2 But first I had to remove (from `glucometerutils-venv/lib/python3.7/site-packages/`) previously installed `PYSCSI-1.0` and `LINUX_SGIO-1.0`....

I tried to install `python-scsi` in python 3.x using code from github git clone https://github.com/rosjat/python-scsi cd python-scsi python3 setup.py build python3 setup.py install and I get the same message: `'linux_sgio'...

Problem makes ```javascript function htmlDecode(input) { const doc = new DOMParser().parseFromString(ltrim(input), 'text/html'); return doc.documentElement.textContent; } ``` (in file `utils.ts`) which removes all HTML tags from code in `` https://github.com/pyscript/pyscript/blob/main/pyscriptjs/src/utils.ts#L17 Probably...

Some workaround is to use some replacement for tags in text - ie. use `{{ }}` instead of `< >` and later replace it back with `< >` ```python print(...

Main problem is `pyscript.js` which removes all tags from `` when it loads code. See [my description](https://github.com/pyscript/pyscript/issues/347#issuecomment-1133492736) in issue [[BUG] print() doesn't output HTML tags. #347 ](https://github.com/pyscript/pyscript/issues/347) Some workaround is...