Skip to content

yagoalexandre00/higher-lower-web-game

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 

Repository files navigation

Higher Lower Web Game

Guess the random number from 0 to 9 in this web game made with Python and Flask Framework

Modules that were used

  • Random
  • Flask

In case you don't have Flask module installed just type the code below in a terminal:

pip install Flask

How to setup the game

After downloading and installing Flask, you must setup the FLASK_APP environment variable:

To run the application, use the flask command or python -m flask. Before you can do that you need to tell your terminal the application to work with by exporting the FLASK_APP environment variable:

BASH

export FLASK_APP=server.py
flask run

CMD

set FLASK_APP=server.py
flask run

POWERSHELL

$env:FLASK_APP = "server.py"
flask run

If anything is not running properly, I surely recommend you to search at the Flask Official Documentation:

https://flask.palletsprojects.com/en/2.0.x/

About

A Higher-Lower web game made in Python using Flask framework.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages