I need to bring a class file like the one in class.py:
class Despesas(object):
def __init__(self):
self.Prioridade = Prioridade()
self.Situacao = True
self.Valor = 0.0
self.Categoria = ''
For the View.py file.
In PHP I can do this function with the require ('filename') method, How to do this in Python 3.6?