-
Because of strict licensing regulations at our company we can not use pyexcel, because chardet has the LGPL license.
Upon inspection I see that nowhere the chardet library is imported. When I clone t…
-
## 🐛 Bug Report
I followed the installation instruction but get
```
ModuleNotFoundError: No module named 'chardet'
```
when I try to run
```
poetry run --help
```
Full stack trace:
```…
-
Traceback (most recent call last):
File "c:\Users\leega\.vscode\extensions\truecrab.verilog-testbench-instance-0.0.5\out\vTbgenerator.py", line 29, in
import chardet
ModuleNotFoundError: No …
-
After starting the latest server version (after PR #230) this pop up in the logs, and the sync still doesnt work. But I dont know if Its because of this.
/usr/local/lib/python2.7/site-packages/requ…
-
Originally, the anaconda will install chardet with the version of 3.0.4. After I install the textract, I import it in the Jupyter nootbook. Then the warning comes out. It says that the version of te…
-
Installing collected packages: chardet, urllib3, idna, colorama, requests, tldextract
Attempting uninstall: chardet
Found existing installation: chardet 5.2.0
error: uninstall-no-record-file
…
-
chardet can be used to make sure that the readme file is actually valid instead of using weird encodings like UTF-8 BOM or Shift JIS
https://github.com/chardet/chardet
-
In this repo there is a dependency on `pygount`:
https://github.com/OCA/server-tools/blob/0169df8a9800637d06189e65686ff2b9634a9d0c/requirements.txt#L10
The current version of pygount (1.8.0) require…
-
### svtplay-dl versions:
svtplay-dl 4.97.1
### Operating system and Python version:
Raspbian GNU/Linux 12 (bookworm)
Python 3.11.2
### What is the issue:
Crashes with "IndexErr…
-
If you try to detect the encoding in some files, it will stuck in infinity loop. e.g.:
```
import chardet
f = open("/initrd.img","rb")
b = f.read()
f.close()
chardet.detect(b)
```