latyas

Results 7 issues of latyas

I have tried my telegram username/ID and group slug, but the bot still be silent. How to debug?

help wanted

1. 猜测验证码的URL需要和请求登陆的IP同样,不然有可能会进入无限验证码循环,考虑把验证码图片下到本地。

known bug

I can't find how to define a vim command in docs. codes should like following ``` python @vim_command("reverse") def reverse(): replace_word(get_word()[::-1]) ``` and `reverse()` invokes when I run `:reverse`.

``` python client.get_doc('Purchase Order', filters=[['Purchase Order', 'name', '=', 'PO-00002']], fields=['name', 'items']) ``` But get ``` OperationalError: (1054, "Unknown column 'items' in 'field list'") ```

When I wanted to add a decorator of Basic HTTP Authentication to a method of a class, `getcallargs` thrown an exception. ``` python File "/Users/admin/codes/rpc/tornadorpc/utils.py", line 26, in getcallargs args.pop(0)...