Posts by Elias Coutinho • 13 points
3 posts
-
0
votes0
answers14
viewsQ: Using Pyinstaller in Ubuntu
Good morning good people In my Ubuntu 20.04 created a file . py and tried to package using pyinstaller. a = "Deu certo" print(a) He created but when I went to dist and ran the operating system…
-
0
votes1
answer58
viewsQ: importing the connection of a file. py
Good morning, use Peewee with Postgresql, working very well. The connection credentials are as follows:: db = PostgresqlDatabase ( 'ALTERDATA_WSHOP', # Required by Peewee. user = 'postgres', # Will…
python-3.xasked Elias Coutinho 13 -
1
votes0
answers98
viewsQ: How to get nested Rest?
I happen to have the classes Pessoas, Profissoes, ProfissoesPessoa and QualificacoesProfissoesPesssoa In thesis my Models is so below: # -*- coding: utf-8 -*- from django.db import models from…