我在github https://github.com/thebotsmith/ebay-views-gen上找到了这个,我想向它添加代理支持。我是python的相对新手,有几个问题。这是一些我发现有效的代码,我想知道如何将其实现到https://github.com/thebotsmith/ebay-views-gen/blob/master/ebay-views.py中,以便能够运行代理,以便可以在eBay上获得更多视图。谢谢!
import Cocoa
public class TypedButton: NSButton {
private var _buttonType: NSButton.ButtonType = .momentaryLight
public var buttonType: NSButton.ButtonType {
return _buttonType
}
override public func setButtonType(_ type: NSButton.ButtonType) {
super.setButtonType(type)
_buttonType = type
}
}