Skip to content

Instantly share code, notes, and snippets.

View JMIdeaMaker's full-sized avatar
💭
looking for new clients

JMIdeaMaker JMIdeaMaker

💭
looking for new clients
View GitHub Profile
from django.core.management.base import BaseCommand
from django.core.mail import send_mail
class Command(BaseCommand):
help = 'Sends a test email to specified input email'
def add_arguments(self, parser):
parser.add_argument('email', type=str)
Game = {
canvas: null,
ctx : null,
games: [],
is_first_go_round: true,
current_game_object : {
current_player_name: null,
id: null,
game_name_and_id : null,
spectators : [],