Antes de começar:
- AWS CLI instalado e configurado (
aws configure
) - Permissões de administrador (IAM Full Access, S3, ECR, ECS, etc.)
- Linguagem padrão:
bash
- Estrutura de pastas do projeto:
""" | |
Paginas de Login para Testes: | |
http://testing-ground.scraping.pro/login | |
Mais paginas: | |
http://testing-ground.scraping.pro/ | |
Exemplo simples: | |
https://selenium.dev/selenium/docs/api/py/ |
import os | |
import platform | |
__author__ = "Ronivaldo Sampaio" | |
__copyright__ = "Kontus (www.kontus.com.br)" | |
__credits__ = ["Ronivaldo Sampaio"] | |
__version__ = "1.0.0" | |
__maintainer__ = "Ronivaldo Sampaio" | |
__email__ = "[email protected]" | |
__status__ = "Production" |
from __future__ import print_function | |
import requests | |
import base64 | |
# curl to python requests | |
# https://curl.trillworks.com/ | |
home_url = 'http://192.168.1.170/' | |
session = requests.Session() |
from __future__ import print_function | |
# tutorial | |
# https://www.pythoncentral.io/introductory-tutorial-python-sqlalchemy/ | |
# https://chartio.com/resources/tutorials/how-to-execute-raw-sql-in-sqlalchemy/ | |
import os | |
import sys | |
from sqlalchemy import Column, ForeignKey, Integer, String, Numeric | |
from sqlalchemy.ext.declarative import declarative_base | |
from sqlalchemy.orm import relationship | |
from sqlalchemy import create_engine |
var message = prompt("Enter the message"); | |
var count = prompt("Enter the Number of times"); // Change the Number to change | |
var looper = 0; | |
for(looper=0;looper<count;looper++) | |
{ | |
window.InputEvent = window.Event || window.InputEvent; | |
var d = new Date(); | |
var event = new InputEvent('input', {bubbles: true}); | |
var textbox= document.querySelector('#main > footer > div._2BU3P.tm2tP.copyable-area > div > span:nth-child(2) > div > div._2lMWa > div.p3_M1 > div > div._13NKt.copyable-text.selectable-text'); | |
# Backup and Restore a Docker Volume | |
Reference: | |
https://github.com/loomchild/volume-backup | |
As the docker user guide explains, [data volumes](https://docs.docker.com/userguide/dockervolumes/#data-volumes) are meant to persist data outside of a container filesystem. This also ease the sharing of data between multiple containers. | |
A Metabase Docker compose file will be used as containers: | |
```yml | |
version: '3.8' |