ThriftPy does not support generating module with path in protocol 'c' 问题

今天使用happybase 在Windows端读取hbase 的时候,提示“ ThriftPy does not support generating module with path in protocol ‘c’”

错误,查询相关的资料:https://github.com/eleme/thriftpy/issues/234 发现主要是源码在解析url的时候出现错误,解决方法如下:

修改windows端中的parser 代码,笔者代码位置如下: C:\ProgramData\Anaconda2\Lib\site-packages\thriftpy\parser

修改其中的488行为如下情况:

 #if url_scheme == '':
 if len(url_scheme) <= 1:

  然后重新运行即可。

 

    原文作者:angelxp
    原文地址: https://www.cnblogs.com/angellst/p/7510486.html
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞