Django车型的ELO评分

django-elo-rating的Python项目详细描述


Django ELO评级

安装

python3 -m pip install --user --upgrade django_elo_rating

配置

settings.py中添加以下行

ELO_START_VALUE=1000ELO_FACTOR_K=30

用法

fromdjango_elo_ratingimportEloRatedclassPlayer(EloRated):passplayer_1=Player()player_2=Player()print(player_1.elo_rating)# 1000 or whatever you set as ELO_START_VALUEprint(player_2.elo_rating)# 1000 or whatever you set as ELO_START_VALUEprobability_player_1_wins=player_1.probability(player_2)print(probability_player_1_wins)# 0.5# If player_1 wins a game against player_2 # update player_1's elo rating like thisplayer_1.elo_rating=player_1.updated_elo(player_2,1)# and player_2's like this player_2.elo_rating=player_2.updated_elo(player_1,0)# If they played a drawplayer_1.elo_rating=player_1.updated_elo(player_2,0.5)player_2.elo_rating=player_2.updated_elo(player_1,0.5)

欢迎加入QQ群-->: 979659372 Python中文网_新手群

推荐PyPI第三方库


热门话题
java如何调试Quarkus/SmallRye客户端请求   安卓找不到R.layout。主要活动中的主要活动。JAVA   java使复制的图像都独立旋转   java需要一双新眼睛来找出为什么我的四边形没有被着色   java记录方法调用,包括参数,以便在程序执行后可以执行这些参数   JavaSpringMVC+AngularJS向数据库添加多个条目   java删除具有重复字段值的entrySet对象   为什么我们无法解密使用ECB/PKCS1使用RSA加密在python中加密的java数据   并行处理java。util。同时发生的拒绝执行异常,等待终止   java/groovy使用指定的值从列表中收集元素   java在spring webproject中使用CSS和JS   在以下任何来源中都找不到java插件[id:'com.gradle.enterprise',版本:'3.2']   在java中知道时间是否已经过去的日期   java如何在JavaFX中为两个节点之间的2D曲线箭头设置动画   JAVAsql。SQLException:第1行“IdentitCAT”列的整数值“Guitare”不正确   如何获取使用数组删除的元素详细信息。使用couchbase Java SDK的asList(remove())?   ssl得到了JAVA例外:JAVA。安全spec.InvalidKeySpecException:未知的KeySpec类型   多线程Java扫描器输入在单独的线程中