├── .gitattributes ├── .gitignore ├── 173.py ├── 17live.py ├── 2cq.py ├── 51lm.py ├── 95xiu.py ├── 9xiu.py ├── LICENSE ├── README.md ├── acfun.py ├── bigo.py ├── bilibili.py ├── cc.py ├── changyou.py ├── danmu ├── danmaku │ ├── __init__.py │ ├── acfun.proto │ ├── acfun.py │ ├── acfun_pb2.py │ ├── bilibili.py │ ├── cc.py │ ├── douyu.py │ ├── egame.py │ ├── huajiao.proto │ ├── huajiao.py │ ├── huajiao_pb2.py │ ├── huomao.py │ ├── huya.py │ ├── inke.py │ ├── kuaishou.proto │ ├── kuaishou.py │ ├── kuaishou_pb2.py │ ├── kugou.proto │ ├── kugou.py │ ├── kugou_pb2.py │ ├── laifeng.py │ ├── longzhu.py │ ├── look.py │ ├── pps.py │ ├── qf.py │ ├── tars │ │ ├── EndpointF.py │ │ ├── QueryF.py │ │ ├── __TimeoutQueue.py │ │ ├── __adapterproxy.py │ │ ├── __async.py │ │ ├── __init__.py │ │ ├── __logger.py │ │ ├── __packet.py │ │ ├── __rpc.py │ │ ├── __servantproxy.py │ │ ├── __tars.py │ │ ├── __trans.py │ │ ├── __tup.py │ │ ├── __util.py │ │ ├── core.py │ │ ├── exception.py │ │ └── tars │ │ │ ├── EndpointF.tars │ │ │ ├── QueryF.tars │ │ │ └── __init__.py │ ├── yqs.proto │ ├── yqs.py │ ├── yqs_pb2.py │ └── zhanqi.py └── main.py ├── douyin.py ├── douyu.py ├── egame.py ├── fengbolive.py ├── hongle.py ├── huajiao.py ├── huomao.py ├── huya.py ├── imifun.py ├── immomo.py ├── inke.py ├── iqiyi.js ├── iqiyi.py ├── ixigua.py ├── jd.py ├── kbs.py ├── kk.py ├── kuaishou.py ├── kugou.py ├── kuwo.py ├── laifeng.py ├── lehai.py ├── liveu.py ├── longzhu.py ├── look.py ├── maoer.py ├── migu.py ├── now.py ├── pps.py ├── ppsport.py ├── qf.py ├── qie.py ├── renren.py ├── requirements.txt ├── showself.py ├── sports_iqiyi.py ├── tiktok.py ├── tuho.py ├── twitch.py ├── v6cn.py ├── wali.py ├── woxiu.py ├── xunlei.py ├── yangshipin.py ├── yizhibo.py ├── youku.py ├── yuanbobo.py ├── yy.py ├── zhanqi.py └── zhibotv.py /.gitattributes: -------------------------------------------------------------------------------- 1 | *.js linguist-language=python 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/.gitignore -------------------------------------------------------------------------------- /173.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/173.py -------------------------------------------------------------------------------- /17live.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/17live.py -------------------------------------------------------------------------------- /2cq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/2cq.py -------------------------------------------------------------------------------- /51lm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/51lm.py -------------------------------------------------------------------------------- /95xiu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/95xiu.py -------------------------------------------------------------------------------- /9xiu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/9xiu.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/README.md -------------------------------------------------------------------------------- /acfun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/acfun.py -------------------------------------------------------------------------------- /bigo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/bigo.py -------------------------------------------------------------------------------- /bilibili.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/bilibili.py -------------------------------------------------------------------------------- /cc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/cc.py -------------------------------------------------------------------------------- /changyou.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/changyou.py -------------------------------------------------------------------------------- /danmu/danmaku/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/danmu/danmaku/__init__.py -------------------------------------------------------------------------------- /danmu/danmaku/acfun.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/danmu/danmaku/acfun.proto -------------------------------------------------------------------------------- /danmu/danmaku/acfun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/danmu/danmaku/acfun.py -------------------------------------------------------------------------------- /danmu/danmaku/acfun_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/danmu/danmaku/acfun_pb2.py -------------------------------------------------------------------------------- /danmu/danmaku/bilibili.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/danmu/danmaku/bilibili.py -------------------------------------------------------------------------------- /danmu/danmaku/cc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/danmu/danmaku/cc.py -------------------------------------------------------------------------------- /danmu/danmaku/douyu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/danmu/danmaku/douyu.py -------------------------------------------------------------------------------- /danmu/danmaku/egame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/danmu/danmaku/egame.py -------------------------------------------------------------------------------- /danmu/danmaku/huajiao.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/danmu/danmaku/huajiao.proto -------------------------------------------------------------------------------- /danmu/danmaku/huajiao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/danmu/danmaku/huajiao.py -------------------------------------------------------------------------------- /danmu/danmaku/huajiao_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/danmu/danmaku/huajiao_pb2.py -------------------------------------------------------------------------------- /danmu/danmaku/huomao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/danmu/danmaku/huomao.py -------------------------------------------------------------------------------- /danmu/danmaku/huya.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/danmu/danmaku/huya.py -------------------------------------------------------------------------------- /danmu/danmaku/inke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/danmu/danmaku/inke.py -------------------------------------------------------------------------------- /danmu/danmaku/kuaishou.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/danmu/danmaku/kuaishou.proto -------------------------------------------------------------------------------- /danmu/danmaku/kuaishou.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/danmu/danmaku/kuaishou.py -------------------------------------------------------------------------------- /danmu/danmaku/kuaishou_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/danmu/danmaku/kuaishou_pb2.py -------------------------------------------------------------------------------- /danmu/danmaku/kugou.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/danmu/danmaku/kugou.proto -------------------------------------------------------------------------------- /danmu/danmaku/kugou.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/danmu/danmaku/kugou.py -------------------------------------------------------------------------------- /danmu/danmaku/kugou_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/danmu/danmaku/kugou_pb2.py -------------------------------------------------------------------------------- /danmu/danmaku/laifeng.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/danmu/danmaku/laifeng.py -------------------------------------------------------------------------------- /danmu/danmaku/longzhu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/danmu/danmaku/longzhu.py -------------------------------------------------------------------------------- /danmu/danmaku/look.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/danmu/danmaku/look.py -------------------------------------------------------------------------------- /danmu/danmaku/pps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/danmu/danmaku/pps.py -------------------------------------------------------------------------------- /danmu/danmaku/qf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/danmu/danmaku/qf.py -------------------------------------------------------------------------------- /danmu/danmaku/tars/EndpointF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/danmu/danmaku/tars/EndpointF.py -------------------------------------------------------------------------------- /danmu/danmaku/tars/QueryF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/danmu/danmaku/tars/QueryF.py -------------------------------------------------------------------------------- /danmu/danmaku/tars/__TimeoutQueue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/danmu/danmaku/tars/__TimeoutQueue.py -------------------------------------------------------------------------------- /danmu/danmaku/tars/__adapterproxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/danmu/danmaku/tars/__adapterproxy.py -------------------------------------------------------------------------------- /danmu/danmaku/tars/__async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/danmu/danmaku/tars/__async.py -------------------------------------------------------------------------------- /danmu/danmaku/tars/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/danmu/danmaku/tars/__init__.py -------------------------------------------------------------------------------- /danmu/danmaku/tars/__logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/danmu/danmaku/tars/__logger.py -------------------------------------------------------------------------------- /danmu/danmaku/tars/__packet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/danmu/danmaku/tars/__packet.py -------------------------------------------------------------------------------- /danmu/danmaku/tars/__rpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/danmu/danmaku/tars/__rpc.py -------------------------------------------------------------------------------- /danmu/danmaku/tars/__servantproxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/danmu/danmaku/tars/__servantproxy.py -------------------------------------------------------------------------------- /danmu/danmaku/tars/__tars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/danmu/danmaku/tars/__tars.py -------------------------------------------------------------------------------- /danmu/danmaku/tars/__trans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/danmu/danmaku/tars/__trans.py -------------------------------------------------------------------------------- /danmu/danmaku/tars/__tup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/danmu/danmaku/tars/__tup.py -------------------------------------------------------------------------------- /danmu/danmaku/tars/__util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/danmu/danmaku/tars/__util.py -------------------------------------------------------------------------------- /danmu/danmaku/tars/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/danmu/danmaku/tars/core.py -------------------------------------------------------------------------------- /danmu/danmaku/tars/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/danmu/danmaku/tars/exception.py -------------------------------------------------------------------------------- /danmu/danmaku/tars/tars/EndpointF.tars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/danmu/danmaku/tars/tars/EndpointF.tars -------------------------------------------------------------------------------- /danmu/danmaku/tars/tars/QueryF.tars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/danmu/danmaku/tars/tars/QueryF.tars -------------------------------------------------------------------------------- /danmu/danmaku/tars/tars/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /danmu/danmaku/yqs.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/danmu/danmaku/yqs.proto -------------------------------------------------------------------------------- /danmu/danmaku/yqs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/danmu/danmaku/yqs.py -------------------------------------------------------------------------------- /danmu/danmaku/yqs_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/danmu/danmaku/yqs_pb2.py -------------------------------------------------------------------------------- /danmu/danmaku/zhanqi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/danmu/danmaku/zhanqi.py -------------------------------------------------------------------------------- /danmu/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/danmu/main.py -------------------------------------------------------------------------------- /douyin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/douyin.py -------------------------------------------------------------------------------- /douyu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/douyu.py -------------------------------------------------------------------------------- /egame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/egame.py -------------------------------------------------------------------------------- /fengbolive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/fengbolive.py -------------------------------------------------------------------------------- /hongle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/hongle.py -------------------------------------------------------------------------------- /huajiao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/huajiao.py -------------------------------------------------------------------------------- /huomao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/huomao.py -------------------------------------------------------------------------------- /huya.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/huya.py -------------------------------------------------------------------------------- /imifun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/imifun.py -------------------------------------------------------------------------------- /immomo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/immomo.py -------------------------------------------------------------------------------- /inke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/inke.py -------------------------------------------------------------------------------- /iqiyi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/iqiyi.js -------------------------------------------------------------------------------- /iqiyi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/iqiyi.py -------------------------------------------------------------------------------- /ixigua.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/ixigua.py -------------------------------------------------------------------------------- /jd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/jd.py -------------------------------------------------------------------------------- /kbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/kbs.py -------------------------------------------------------------------------------- /kk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/kk.py -------------------------------------------------------------------------------- /kuaishou.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/kuaishou.py -------------------------------------------------------------------------------- /kugou.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/kugou.py -------------------------------------------------------------------------------- /kuwo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/kuwo.py -------------------------------------------------------------------------------- /laifeng.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/laifeng.py -------------------------------------------------------------------------------- /lehai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/lehai.py -------------------------------------------------------------------------------- /liveu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/liveu.py -------------------------------------------------------------------------------- /longzhu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/longzhu.py -------------------------------------------------------------------------------- /look.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/look.py -------------------------------------------------------------------------------- /maoer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/maoer.py -------------------------------------------------------------------------------- /migu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/migu.py -------------------------------------------------------------------------------- /now.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/now.py -------------------------------------------------------------------------------- /pps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/pps.py -------------------------------------------------------------------------------- /ppsport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/ppsport.py -------------------------------------------------------------------------------- /qf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/qf.py -------------------------------------------------------------------------------- /qie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/qie.py -------------------------------------------------------------------------------- /renren.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/renren.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/requirements.txt -------------------------------------------------------------------------------- /showself.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/showself.py -------------------------------------------------------------------------------- /sports_iqiyi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/sports_iqiyi.py -------------------------------------------------------------------------------- /tiktok.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/tiktok.py -------------------------------------------------------------------------------- /tuho.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/tuho.py -------------------------------------------------------------------------------- /twitch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/twitch.py -------------------------------------------------------------------------------- /v6cn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/v6cn.py -------------------------------------------------------------------------------- /wali.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/wali.py -------------------------------------------------------------------------------- /woxiu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/woxiu.py -------------------------------------------------------------------------------- /xunlei.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/xunlei.py -------------------------------------------------------------------------------- /yangshipin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/yangshipin.py -------------------------------------------------------------------------------- /yizhibo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/yizhibo.py -------------------------------------------------------------------------------- /youku.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/youku.py -------------------------------------------------------------------------------- /yuanbobo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/yuanbobo.py -------------------------------------------------------------------------------- /yy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/yy.py -------------------------------------------------------------------------------- /zhanqi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/zhanqi.py -------------------------------------------------------------------------------- /zhibotv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbt5/real-url/HEAD/zhibotv.py --------------------------------------------------------------------------------