Skip to content

cpassafaro/python_cli_flashcards

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Command Line Flashcards


How to play

Simply fork and clone repo down. Run pipenv install to install dependencies. Game can be played through the command line from the flashcards file. There are options on what level you would like to play on. You can also create your own cards through the command line as well.

Description


This project was created using the language python to access our database that we created with sql. Peewee is the simple ORM we choose to populate and interact with our database.

Date Progress Working On
11/23/20 Started working on populating sql database, created questions user interaction in command line
11/24/20 Have easy questions and game launching in the command line need to work on hard and medium launch functions
11/26/20 Launched easy and medium questions, game fully functional. na

Model

class FlashCards(FlashGame):
    category = CharField()
    difficulty = CharField()
    question = CharField()
    answer = CharField()
    correct = IntegerField()
    incorrect = IntegerField()

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published