编程语言
首页 > 编程语言> > 有哪些资源可用于Python中的A / B拆分测试?

有哪些资源可用于Python中的A / B拆分测试?

作者:互联网

有多个用于Rails的A / B拆分测试模块/插件.
http://github.com/paulmars/seven_minute_abs
http://www.bingocardcreator.com/abingo
http://vanity.labnotes.org/
等等

Python有什么类似的东西吗?

解决方法:

到目前为止,它的版本仅为0.1.2,但是Swab看起来很有希望.测试表单按钮的两种尺寸的示例:

from swab import Swab
s = Swab('/tmp/.swab-test-data')
s.addexperiment('button-size', ['default', 'larger'], 'order-completed')

标签:testing,ab-testing,python
来源: https://codeday.me/bug/20191210/2098275.html