flask-pymongo-example icon indicating copy to clipboard operation
flask-pymongo-example copied to clipboard

Implementation of flask and pymongo using mflix sample data set and mflix python UI

Results 8 flask-pymongo-example issues
Sort by recently updated
recently updated
newest added

There is a typo in README.md, requirments.txt => requirements.txt

the tutorial asks you to run : python3 -m pip install -r requirments.txt However the name of the file is requirements.txt So run: python3 -m pip install -r requirements.txt

My version asks for package bson (for which it installs version 0.5.10). Here's my poetry file with all requirements: ``` [tool.poetry.dependencies] python = "^3.10" flask = "^2.2.3" faker = "0.8.13"...

Start a python virtual env: ``` # navigate to the flask-pymongo-example directory cd flask-pymongo-example # create the virtual environment for MFlix python3 -m venv mflix-venv # activate the virtual environment...

the dir is mflix-venv as in the previous step.

The installation instructions walk through the creation of the virtual environment in directory `mflex_venv`, but then instruct the user to activate the virtual environment in the directory `mflex-venv`. The installation...