Posts by Naokity • 19 points
4 posts
-
-1
votes1
answer202
viewsQ: Running Simple Python Script with Docker on Windows
I am using Windows environment I created a Docker.py where I just put: print ('Hello Docker') that file is in the folder C: python I did a test to run this file using Docker and it didn’t work I…
-
-2
votes1
answer41
viewsQ: connecting AWS RDS postgres with python
I have a database mounting with the postgres engine in the AWS RDS I would like to know how to access it through python import psycopg2 import sys import boto3 ENDPOINT="endpoint na AWS" PORT="5432"…
-
0
votes1
answer28
viewsQ: imports csv files automatically
I have a list of several csv files in a single directory it happens that every 5 min more file enters this directory file example:…
-
-3
votes1
answer323
viewsQ: Create dataframe pandas by dicionario 1 key and 1 value
How do I create a Data Frame Pandas through a dictionary counting only 1 key and 1 value dic = {'banco': 0, 'correndo': 1, 'da': 2, 'de': 3, 'depois': 4, 'descasnando': 5, 'foi': 6, 'ladrão': 7,…