shoujunfeng (@cfbiso)将clash yaml配置文件转换成v2rayN的节点链接 中发帖

看到热心论坛朋友经常发一些yaml配置文件,想直接用在v2rayn上 
用了cursor 胡了一个,有界面 支持命令行, 没有详细测试,自己转了下,就发出来了, 有出错请见谅
[image]
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

import yaml
import base64
import json
import sys
import os
from urllib.parse import quote, urlencode
from typing import List, Dict, Any
import tkinter as tk
from tkinter import ttk, messagebox
import pyperclip

class ClashToV2ray:
"""Clash 配置转换为 v2r...