George Frolov
George Frolov
There are some problems with the DALTON files. apart from some typos (PR #466) the following falls $ python ../src/scripts/ccwrite cjson ./DALTON/basicDALTON-2013/C_bigbasis.out Attempting to parse ./DALTON/basicDALTON-2013/C_bigbasis.out ... Traceback (most recent...
Another problem with big basis (now without openbabel installed): no dipole moment $ ccwrite cjson ./data/DALTON/basicDALTON-2013/C_bigbasis.out ... Traceback (most recent call last): ... File "/home/gosha/venvs/cclib/lib/python3.6/site-packages/cclib-1.5.2-py3.6.egg/cclib/io/filewriter.py", line 75, in _calculate_total_dipole_moment return...
~~`cli-helpers` is meant to be a general library, common for all dbcli projects. It would be great to have an sql formatter in the base library, however, it would have...
That's because the new version 3 of `prompt-toolkit` has been published on pypi. MyCLI does not support it yet, but pulls the latest version during install. We'll fix the install...
Let's leave it open until the next release. Thanks again for reporting!
Hi, thanks for pointing that out. I have not been able to reproduce it on Windows 10, but it's probably down to the locale or some other settings, I don't...
Yes, I tend to agree that we should not attempt to magically detect the encoding. But I don't know what the "right thing" here should be, even if the connection...
I think this default should depend on the server version: mysql < 5.5 cannot handle utf8mb4.
Oops, indeed, that's messy. But we should be able call [set_charset()](https://github.com/PyMySQL/PyMySQL/blob/abe83c262ea647a09e0f13587fa91d6a14a71598/pymysql/connections.py#L586) on the PyMySQL connection object inside our SQLExecute once know the version
WIP: connection charsets are not the same thing as file encodings, we need to maintain a mapping between them.