I am new to python and flask framework.
for below codes:
from flask import Blueprint
main = Blueprint('main', __name__)
from . import views, errors
I found python has many import ways, for example:
import foo
import foo.bar
from foo import bar
from foo import bar, baz
from foo import *
from foo import bar as fizz
but how to understand from . import ...
?