Posts by Willian Freitas • 159 points
9 posts
-
1
votes0
answers43
viewsQ: Problems with Memcached + Django + Celery(Rabbitmq)
I’m having trouble using the memcached + Celery(Django). My program makes a query in a database, through a cursor, creates chuncks with the return of the bank and sends these Chunks to be processed…
-
2
votes1
answer70
viewsQ: Working with static methods/variables
Expensive, When calling a python class, the variables of that class will always be restarted? What happens is this: I’m working with the parallelization of my code. I receive the data returned from…
-
1
votes2
answers230
viewsQ: Working with querysets and Celery
Following what I had asked here, I keep trying to run my code asynchronously. I’m trying to use Celery to perform this procedure, but I’m having some problems. I had the following: def get(self,…
-
2
votes1
answer98
viewsQ: TO BE executed asynchronously
Is there any way to execute a FOR asynchronously? What happens is this, my program recovers a large number of data from the database, processes it and returns the result to the user. I’m doing it…
-
2
votes1
answer29
viewsQ: Problems with Return Botman + Httpful
My project consists of a chatbot that receives user information, consults an api created by me with this information, and must present to the user the return of this query. This return is a list of…
-
1
votes3
answers332
viewsA: Container problem on Docker
You’ve tried using the remote docker ps -a? It is the command that lists all the existing containers on your machine.
dockeranswered Willian Freitas 159 -
1
votes1
answer72
viewsA: Insert/change data into a file?
Well, if I understand correctly, you need to type the product, then the quantity of that product and be inserted into the file. In this case, the changes I made were as follows:: if num == 1:…
-
-1
votes1
answer69
viewsQ: Generate all possible letter exchanges in a word
I need to create a function that manages all possible letter exchanges that generate words with the same sound: Palavra: Feijoada Possibilidades: Feigoada, Feyjoada, Feijoada, Feygoada But I’m not…
-
0
votes1
answer486
viewsQ: Problems with Urls in Django
Expensive, I’m with the following mistake my project: django.core.exceptions.ImproperlyConfigured: The included URLconf 'api.urls' does not appear to have any patterns in it. If you see valid…