I am generating a container for my application with the following dockerfile
FROM django
ADD ./cryptoassistant /cryptoassistant
WORKDIR /cryptoassistant
RUN ["chmod", "+x", "/cryptoassistant/manage.py"]
RUN ["pip", "install", "--upgrade"...
I am observing an alert message (not an error) InsecurePlatformWarning when executing the pip command in Linux:
$ pip search reportlab
/usr/local/lib/python2.7/dist-packages/pip/_vendor/requests/packages/urllib3/util/ssl_.py:90:...
I divided the application into parts, but for now I just want it to work when I try to switch between windows (without creating a new one or closing it). I'm doing this with buttons.
Open well without problems and start in the main menu, and...
I am new to python, I am currently developing an application, which is responsible for generating several very simple reports, however there is a report which I have not yet been able to solve, I have researched but I still can not find the solu...
I think in the question I said everything.
I use Python 3.5, Tweepy and after a search (search) of tweets through a keyword, I see that many have the GEO active but I can not access Lat and Lng using Tweepy.
Does anyon...
I have the following dataframe in python:
months = [1,2,3,4,5,6,7,8,9,10,11,12]
data1 = [100,200,300,400,500,600,700,800,900,1000,1100,1200]
df = pd.DataFrame({
'month' : months,
'd1' : data1,...
I'm doing a program to graph 22 different lines but I can not make the color shift be gradual from blue to green so that you can see better the difference in growth between each of the lines instead of a color random Please help
import matplot...
Hi, I'm new to Selenium.
This is the code of the button where I want to click
<a href="javascript:bp(26834)">Clic para ver</a>
I navigate to the indicated page but it does not reflect the click action that should show a hidde...
I'm starting with Python and I have a problem with the code I'm doing ...
from numpy import *
import random
def busquedaLineal(buscado, arreglo):
encontrado = 0
for i in range(len(arreglo)):
if arreglo[i] == buscado:
en...
I'm importing data from a Google Sheets spreadsheet, but I need to filter some rows and not load all of them. Someone runs this library, and knows if there is an argument to filter rows.
I am doing it in the following way so far:
import...