Skip to content

Instantly share code, notes, and snippets.

View estebanthi's full-sized avatar

Esteban Thilliez estebanthi

View GitHub Profile
@estebanthi
estebanthi / opencv_in_venv
Created August 20, 2023 00:16
Installing OpenCV in Python venv
pip install opencv-contrib-python
import chess
import random
import chess.svg
def random_move(board):
moves = list(board.legal_moves)
move = random.choice(moves)
return move