v2ray (vmess|vless|trojan|ss) test in python

2.7k Views Asked by At

Friends, how can I test the configurations of (vmess|vless|trojan|ss) with Python?

I need a function to test the speed of given v2ray configs

1

There are 1 best solutions below

0
On

There is a project vmessping by v2fly that support only vmess but there is a LiteSpeedTest for trojan/ss

sample:

from subprocess import Popen, PIPE

def speedtest(vmesslink):
    process = Popen(["./vmessspeed", vmesslink], stdout=PIPE)
    stdout = process.communicate()[0]

    return stdout