I have the following Json
[{
"documentosVinculados": [
{
"fechaCreacion": "2018-05-08T15:56:51-03:00",
"fechavinculacionDefinitiva": "2018-05-08T15:56:51-03:00",
"numeroDocumento": "PT-2018-21487012",
"referencia"...
I am doing my first program in tkinter and I want to incorporate the linux terminal, as for example it has the Atom editor.
I have managed to incorporate it, but when executing an order the text disappears inside the frame and you can only see t...
I have the following models in python:
class ModuleType(models.Model):
name = models.CharField(max_length=150, unique=True)
icon = models.CharField(max_length=100, unique=True)
state = models.IntegerField(choices=state_choices, def...
Very good day, I would like to know if it is possible to make portable applications that is to say that they run on a USB and do not have to be installed on a computer, using python and a database to store data is redundant, and googled a lot an...
I have a problem with the joint use of for loops and chunks.
I have a list of 300 origins and another list with 300 destinations (30 in the example) and I want to contrast each of the origins with each of the destinations. To do this, first of a...
I have this form in a template:
<form method='POST' action='{% url "proceso-compra" object.slug %}'>
{% csrf_token %}
<span>TALLA </span>
<select name="talla" id='id_t...
I have two scripts which I connect to the database and the second extracts information from the database called Timetable.
The first function is called persistence which makes the connection and executes a query in the database and the second...
I am trying to create a form for my project with Django 2.0, with Python 3.6.4 in Windows 10, but when using a reference of some models of another app it tells me that it does not exist or that it is not defined, in a similar question said that...
Could you explain to me how the ranges that are placed on the stythos work?
table.setStyle([('VALIGN', (0, 0), (-1, -1), 'TOP'),
('LINEABOVE', (1, 0), (1, 0), 1, colors.black),
('LINEABOVE', (3, 0), (3,...