Skip to content

Python - Othello 2 player game over socket (Tornado)

Notifications You must be signed in to change notification settings

animeshjn/othello

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

othello

Python - Othello 2 player game over socket (Tornado)

Required Libraries

Python 3+ Tornado bcrypt for salted hash pip install bcrypt

MongoDB for persistence

MongoDB

Motor for using MongoDB

$ pip install motor

##Game Rules Read on Wikipedia

Security Features

  • Salted Hash instead of passwords
  • XSRF and CSRF prevention
  • SQL Injection / COde Injection Prevention
  • More to be updated soon