flyly0755
flyly0755
首先感谢杜大:) 这个库对我帮助非常大哈🙏 我这边用simpleui替换了默认的admin后台管理,通过导入图片的方式引入图片
试了下,比如添加一个成语“红红火火”, lac.add_word('红红火火', sep=None) lac.run("他这一生红红火火了一把") 追后的结果还是把红红火火拆成了 '红红'和'火火', [['他', '这一生', '红红', '火火', '了', '一把'], ['r', 'r', 'a', 'a', 'u', 'm']] 请教下各位大神,是我操作不对么
```python from clickhouse_sqlalchemy import make_session from sqlalchemy import create_engine from sqlalchemy.pool import NullPool engine = create_engine(uri, echo=False, poolclass=NullPool) session = make_session(engine) ``` i want to know, whether clickhouse-sqlalchemy package supports...
**Describe the bug** https://github.com/xzkostyan/clickhouse-sqlalchemy/blob/master/clickhouse_sqlalchemy/drivers/http/transport.py#L102 ```python self.timeout = float(timeout) if timeout is not None else None ``` with this line code, is there any issue here when timeout is None, then...
**Describe the bug** with sql command to creat a table, we can use COMMENT attribute to set a comment for a field. CREATE TABLE stdfdb.NewTable2 ( `Column4` String COMMENT 'TEST',...
using pyinstaller to pack project code, after packing, start the package, raise error: cannot import name 'engines' from 'clickhouse_sqlalchemy' extra clue is now we use gcc 10.3.0, then occur this...
usually after installing a python package, there are 2 new dir under site-packages, for example install a package named xxx one dir is xxx, and the other is xxx-versionnumber.dist-info. but...
now i meet one problem after packaging project code with pyinstaller. uri = f"clickhouse://{user}:{password}@{host}:{port}/{database}" engine = create_engine(uri, echo=False, poolclass=NullPool) -------with this code raise error: **Please check the system service:Can't load...
**bug描述** * *Bug description * * 简单的描述下遇到的bug: Briefly describe the bugs encountered: **重现步骤** ** repeat step ** 1. 2. 3. **环境** ** environment** 1.Operating System: (Windows/Linux/MacOS).... macos 2.Python Version: 3.Django...
**Describe the bug** I want to add one json filed with table, store data like this {"a":1."b":2}, but with clickhouse-sqlalchemy ORM, raise error (in table 'tb_file', column 'count'): Compiler can't...