Search on Google the images dataset as you wish, copy the url and run the script as:
python get_images.py <path where images will be saved> <url copied from Google>
{ | |
"agreement_id": "02wHxT36m9JJWysEPfB2Z1", | |
"organization": "Worten", | |
"status": "SIGNED", | |
"title": "webhook test 4", | |
"description": "", | |
"creation": { | |
"created_at": "2024-04-15T12:58:21.950000Z", | |
"user": { | |
"name": "Programa Parcerias Worten", |
# FZF | |
# Set up fzf key bindings and fuzzy completion | |
source <(fzf --zsh) | |
export FZF_COMPLETION_TRIGGER='..' | |
export FZF_DEFAULT_OPTS="--multi --reverse --border --inline-info --preview '([ -e {} ] && (bat --color=always --style=numbers --line-range :300 {} {} || tree -C {} | head -20 ) || (echo {})) 2> /dev/null' --preview-window=right:40%:wrap" | |
#export FZF_DEFAULT_OPTS="--multi --reverse --border --inline-info --preview 'bat --color=always --style=header,grid --line-range :300 {}' --preview-window=right:40%:wrap" | |
export FZF_CTRL_R_OPTS="--no-preview" |
from tkinter import NO, Button, Entry, Frame, StringVar, Text, Tk | |
from tkinter.ttk import Treeview | |
from typing import TypedDict | |
class FormData(TypedDict): | |
scope: StringVar | |
FILELIST_HEADERS = ["filename", "date"] |
import sys | |
from tkinter import E, Frame, Tk | |
TRANSPARENCY = 0.1 | |
window = Tk() | |
root = window | |
root.configure(background='white') |
import socket | |
from queue import Queue, Empty | |
from random import randint | |
from threading import Event, get_ident, Thread | |
class QueuedThreadProcess(Thread): | |
def __init__(self, queue, stop_event): | |
super().__init__() | |
self._queue = queue |
from threading import Thread, Event | |
from itertools import cycle | |
class Loading: | |
""" | |
Shows an animated loading message on screen while some long process is processing. | |
Args: | |
message(str): message |
import time | |
import random | |
from concurrent.futures import ThreadPoolExecutor | |
import timeit | |
def fn(n): | |
print(n) | |
""" | |
13. wordcount | |
Este desafio é um programa que conta palavras de um arquivo qualquer de duas | |
formas diferentes. | |
A. Lista todas as palavras por ordem alfabética indicando suas ocorrências. | |
Ou seja... |