Posts by Denis Callau • 306 points
11 posts
-
0
votes1
answer97
viewsQ: Django Class-Based Views - Noreversematch Error
I’m developing a CRUD system with class-based views. I have an app that List, Create and Delete views are working perfectly, but Update is having a problem. From Listview, I try to Updateview one of…
-
0
votes1
answer31
viewsQ: Identify which page requests another via require_once
I have a header.php, where is contained my page bar, which in turn has the breadcrumb and also what I call "Toolbar" which are the action buttons related to the page being accessed. For example:…
phpasked Denis Callau 306 -
0
votes0
answers41
viewsQ: Questions about Django MTV
I’m having a hard time understanding the concept of Django. Please check that my conception is correct: MTV refers to Model Template View. Model would be my database. Template would be the interface…
-
0
votes1
answer531
viewsA: Sqlite - Python - refer to table column in a loop
When you write select * from despesas you are selecting all the columns of the expenses table. To select only a specific column, change the * by the name of the desired column. So your loop for can…
-
-2
votes3
answers2731
viewsA: Problems with Pip install to install Virtualenvwrapper on Windows
The problem is in the module name. Utilize: pip install virtualenv Virtualenv Installation Documentation, in English: https://virtualenv.pypa.io/en/stable/installation/…
-
3
votes3
answers760
viewsA: Doubt with IF and LISTS python3
To list all network interfaces, you can use the python-nmap. Take a look to find the correct command for this. After grabbing all interfaces, put them in a list and then use a for to test conditions…
pythonanswered Denis Callau 306 -
1
votes1
answer218
viewsA: Is this a scam?
Gambiarra may have several interpretations, but it is never the ultimate best solution. It may be something provisional, but not permanent. When it comes to Python, I think his philosophy is a great…
-
2
votes2
answers471
viewsA: Theoretical doubt about while and indentation
Count < 10 is always true at point B. Actually it is not. At point B Count will be the previous Count +1. Its maximum will be 9, because while stops if Count equals 10. Test your script. i = 6…
-
0
votes1
answer258
viewsA: Scraping data from a website with dynamic filtering
Maybe you could use the Selenium to emulate the use and capture the data. If the amount of data to be captured is not too large, surely Selenium can help you.…
-
3
votes3
answers4993
viewsA: Python Virtual Assistant - Efficiency
I received some feedback from other sources: First take a look at the NTLK and learn about Natural Processing of Language. Learn about tokenization and tagging and I think you’ll get somewhere. This…
pythonanswered Denis Callau 306 -
7
votes3
answers4993
viewsQ: Python Virtual Assistant - Efficiency
I’m creating a virtual assistant in Python, and I want it to be more "human". I want her to interpret my request, and not just compare what I said to a string. So my question is: To cover all…
pythonasked Denis Callau 306