This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import argparse | |
import json | |
import os | |
import jwt | |
import requests | |
from datetime import datetime, timedelta | |
from cryptography.hazmat.primitives.asymmetric import ec | |
from cryptography.hazmat.primitives import serialization | |
from cryptography.hazmat.backends import default_backend |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import numpy as np | |
import random | |
import math | |
import logging | |
N_PLAYERS = 5 | |
LOGGER = logging.getLogger('elo') | |