mirror of https://github.com/dnomd343/ProxyC
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
367 B
15 lines
367 B
2 years ago
|
#!/usr/bin/env python3
|
||
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
from Basis import Constant
|
||
|
Constant.LogLevel = 'DEBUG'
|
||
|
from Basis.Logger import logging
|
||
|
|
||
|
from pprint import pprint
|
||
|
from Filter import Filter
|
||
|
from Decoder import Shadowsocks
|
||
|
|
||
|
ret = Shadowsocks.ssPlain('ss://aes-128-ctr:password@8.210.148.24:34326')
|
||
|
ret = Filter(ret['type'], ret['info'])
|
||
|
pprint(ret, sort_dicts = False)
|