Initial revision
This commit is contained in:
4
.gitignore
vendored
Normal file
4
.gitignore
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
.DS_Store
|
||||
__pycache__
|
||||
output
|
||||
*.mp3
|
||||
32
README.md
Normal file
32
README.md
Normal file
@@ -0,0 +1,32 @@
|
||||
# FAI GLI AUGURI AI TUOI AMICI DA PARTE DI MACCIO CAPATONDA
|
||||
|
||||
Da qualche giorno, Maccio Capatonda, di cui sono un grande fan, ha pubblicato [questa simpatica clip][1], una sorta di kit per creare degli auguri video personalizzati, montando un nome di persona su una delle quattro diverse occasioni, previste dal simpatico comico:
|
||||
|
||||
- Compleanno
|
||||
- Laurea
|
||||
- Matrimonio
|
||||
- Morte
|
||||
|
||||
Appena ho visto video, ho cominciato a pensare come automatizzare il tutto senza utilizzare un software di video editing.
|
||||
|
||||
Sono riuscito a generare tutti i video possibili, utilizzando [Python][2], [MoviePy][3] e questo semplicissimo script.
|
||||
|
||||
## Istruzioni
|
||||
|
||||
Installare le dipendenze con il comando:
|
||||
|
||||
`curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python -`
|
||||
|
||||
Installare le dipendenze con il comando:
|
||||
|
||||
`poetry install`
|
||||
|
||||
Per lanciare la generazione batch dei video, utilizzare il comando:
|
||||
|
||||
`poetry run python -m main`
|
||||
|
||||
I video saranno organizzati nella cartella `output`, generata eseguendo il programma.
|
||||
|
||||
[1]: https://www.youtube.com/watch?v=D_J1mAN1Hm4
|
||||
[2]: https://www.python.org/
|
||||
[3]: https://zulko.github.io/moviepy/
|
||||
BIN
auguri.mp4
Normal file
BIN
auguri.mp4
Normal file
Binary file not shown.
114
main.py
Normal file
114
main.py
Normal file
@@ -0,0 +1,114 @@
|
||||
import os
|
||||
from collections import namedtuple
|
||||
from datetime import datetime, timedelta
|
||||
from enum import Enum
|
||||
from multiprocessing import Pool
|
||||
|
||||
from moviepy.editor import CompositeAudioClip, VideoFileClip
|
||||
|
||||
|
||||
THREADS = int(os.getenv("THREADS", 1))
|
||||
PROCESSES = int(os.getenv("PROCESSES", os.cpu_count()))
|
||||
|
||||
|
||||
# This is the master-piece from Maccio
|
||||
master = VideoFileClip("auguri.mp4")
|
||||
|
||||
# Here we extract the sub-clips for all the different occasions:
|
||||
BaseVideoClip = namedtuple("BaseVideoClip", ["name", "clip"])
|
||||
|
||||
|
||||
class BaseClip(Enum):
|
||||
BIRTHDAY = "compleanno"
|
||||
DIPLOMA = "laurea"
|
||||
WEDDING = "matrimonio"
|
||||
DEATH = "morte"
|
||||
|
||||
|
||||
BASE_CLIPS = {
|
||||
BaseClip.BIRTHDAY: BaseVideoClip("compleanno", master.subclip(49.5, 55)),
|
||||
BaseClip.DIPLOMA: BaseVideoClip("laurea", master.subclip(57.3, 62)),
|
||||
BaseClip.WEDDING: BaseVideoClip("matrimonio", master.subclip(63.8, 70)),
|
||||
BaseClip.DEATH: BaseVideoClip(
|
||||
"morte", master.subclip(17 * 60 + 31.8, 17 * 60 + 36)
|
||||
),
|
||||
}
|
||||
|
||||
|
||||
# For each name we'll keep a data structure with the corresponding
|
||||
# starting and ending time on the master track, so we can extract
|
||||
# the relevant audio clip:
|
||||
NameClip = namedtuple("NameClip", ["start", "stop"])
|
||||
|
||||
|
||||
def load_names(path="names.txt"):
|
||||
loaded_names = {}
|
||||
with open(path, "r") as names:
|
||||
while True:
|
||||
start_time_line = names.readline().rstrip()
|
||||
if not start_time_line:
|
||||
break
|
||||
|
||||
try:
|
||||
start_time = datetime.strptime(start_time_line, "%M:%S.%f")
|
||||
except ValueError:
|
||||
start_time = datetime.strptime(start_time_line, "%M:%S")
|
||||
|
||||
end_time = (start_time + timedelta(seconds=2)).strftime("%M:%S.%f")
|
||||
name = names.readline().rstrip()
|
||||
loaded_names[name] = NameClip(start_time_line, end_time)
|
||||
return loaded_names
|
||||
|
||||
|
||||
NAMES = load_names()
|
||||
|
||||
|
||||
def get_name_clip(name):
|
||||
found = NAMES[name]
|
||||
return master.subclip(found.start, found.stop).audio
|
||||
|
||||
|
||||
def overlay_name(name_clip, base_clip=BaseClip.BIRTHDAY):
|
||||
master_clip = BASE_CLIPS[base_clip].clip
|
||||
composite_audio = CompositeAudioClip(
|
||||
clips=[master_clip.audio, name_clip.set_start(1.2)],
|
||||
)
|
||||
return master_clip.set_audio(composite_audio)
|
||||
|
||||
|
||||
def make_clip(name, base_clip=BaseClip.BIRTHDAY):
|
||||
name_clip = get_name_clip(name)
|
||||
return overlay_name(name_clip, base_clip=base_clip)
|
||||
|
||||
|
||||
def reload_clip(name, base_clip=BaseClip.BIRTHDAY):
|
||||
global NAMES
|
||||
NAMES = load_names()
|
||||
make_clip(name, base_clip=base_clip).write_videofile(
|
||||
f"output/{base_clip.value}/{name}.mp4", threads=THREADS
|
||||
)
|
||||
|
||||
|
||||
def generate_and_save_clip(name, clip_type):
|
||||
output_file = f"output/{clip_type.value}/{name}.mp4"
|
||||
if os.path.exists(output_file):
|
||||
return
|
||||
|
||||
print(f"Making clip {output_file}")
|
||||
clip = make_clip(name=name, base_clip=clip_type)
|
||||
clip.write_videofile(output_file, threads=THREADS)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
with Pool(PROCESSES) as pool:
|
||||
|
||||
# Pre-generate all possible clips
|
||||
clip_combinations = []
|
||||
for clip_type in BaseClip:
|
||||
os.makedirs(f"output/{clip_type.value}", exist_ok=True)
|
||||
|
||||
for name in NAMES:
|
||||
clip_combinations.append((name, clip_type))
|
||||
|
||||
# Run them on the multiprocess pool
|
||||
pool.starmap(generate_and_save_clip, clip_combinations)
|
||||
892
names.txt
Normal file
892
names.txt
Normal file
@@ -0,0 +1,892 @@
|
||||
01:10
|
||||
adriano
|
||||
01:12
|
||||
agostino
|
||||
01:14
|
||||
alberto
|
||||
01:16
|
||||
aldo
|
||||
01:18
|
||||
alessandro
|
||||
01:20
|
||||
alessio
|
||||
01:23
|
||||
alfio
|
||||
01:25
|
||||
alfredo
|
||||
01:28
|
||||
alvaro
|
||||
01:30
|
||||
ambrogio
|
||||
01:32
|
||||
amedeo
|
||||
01:34.8
|
||||
andrea
|
||||
01:37
|
||||
angelo
|
||||
01:39.8
|
||||
antonello
|
||||
01:42.65
|
||||
antonio
|
||||
01:45
|
||||
armando
|
||||
01:47
|
||||
arnaldo
|
||||
01:49
|
||||
arturo
|
||||
01:51.7
|
||||
attilio
|
||||
01:53.5
|
||||
augusto
|
||||
01:56
|
||||
aurelio
|
||||
01:58.65
|
||||
bartolomeo
|
||||
02:01.7
|
||||
battista
|
||||
02:04
|
||||
benedetto
|
||||
02:06
|
||||
bernardo
|
||||
02:08.8
|
||||
biagio
|
||||
02:11
|
||||
bruno
|
||||
02:13.3
|
||||
calogero
|
||||
02:15.7
|
||||
camillo
|
||||
02:18
|
||||
carlo
|
||||
02:20.7
|
||||
carmelo
|
||||
02:23
|
||||
carmine
|
||||
02:25
|
||||
cesare
|
||||
02:28
|
||||
claudio
|
||||
02:30
|
||||
clemente
|
||||
02:32.7
|
||||
corrado
|
||||
02:35
|
||||
cosimo
|
||||
02:37.35
|
||||
costantino
|
||||
02:40
|
||||
cristiano
|
||||
02:42.5
|
||||
damiano
|
||||
02:45
|
||||
daniele
|
||||
02:47
|
||||
danilo
|
||||
02:50
|
||||
dario
|
||||
02:52
|
||||
davide
|
||||
02:54.5
|
||||
diego
|
||||
02:57
|
||||
dino
|
||||
02:59.4
|
||||
domenico
|
||||
03:02
|
||||
donato
|
||||
03:04.3
|
||||
edoardo
|
||||
03:06.7
|
||||
egidio
|
||||
03:09
|
||||
elia
|
||||
03:11
|
||||
elio
|
||||
03:14.8
|
||||
emanuele
|
||||
03:16.9
|
||||
emiliano
|
||||
03:19
|
||||
emilio
|
||||
03:21
|
||||
enrico
|
||||
03:23
|
||||
enzo
|
||||
03:25.6
|
||||
ermanno
|
||||
03:28
|
||||
ernesto
|
||||
03:30.6
|
||||
ettore
|
||||
03:32.7
|
||||
eugenio
|
||||
03:35
|
||||
ezio
|
||||
03:37.5
|
||||
fabio
|
||||
03:39.8
|
||||
fabrizio
|
||||
03:42.5
|
||||
fausto
|
||||
03:45
|
||||
federico
|
||||
03:47
|
||||
felice
|
||||
03:49.6
|
||||
ferdinando
|
||||
03:52.2
|
||||
fernando
|
||||
03:54.75
|
||||
filippo
|
||||
03:57.7
|
||||
fiorenzo
|
||||
04:00
|
||||
flavio
|
||||
04:02.3
|
||||
fortunato
|
||||
04:04.8
|
||||
francesco
|
||||
04:07
|
||||
fulvio
|
||||
04:09.7
|
||||
gabriele
|
||||
04:12
|
||||
gaetano
|
||||
04:14
|
||||
gaspare
|
||||
04:16.6
|
||||
gennaro
|
||||
04:18.6
|
||||
gerardo
|
||||
04:21
|
||||
germano
|
||||
04:23.3
|
||||
giacomo
|
||||
04:25.6
|
||||
gianfranco
|
||||
04:28
|
||||
gianluca
|
||||
04:30.4
|
||||
gianluigi
|
||||
04:32.85
|
||||
gianni
|
||||
04:35.25
|
||||
giampaolo
|
||||
04:37.4
|
||||
giampiero
|
||||
04:39.95
|
||||
gianpietro
|
||||
04:42.45
|
||||
gilberto
|
||||
04:45
|
||||
gioacchino
|
||||
04:47.7
|
||||
joele
|
||||
04:50
|
||||
giorgio
|
||||
04:52
|
||||
giovanni
|
||||
04:54.5
|
||||
girolamo
|
||||
04:56.7
|
||||
giuliano
|
||||
04:58.6
|
||||
giulio
|
||||
05:01
|
||||
giuseppe
|
||||
05:03.5
|
||||
graziano
|
||||
05:05.75
|
||||
gregorio
|
||||
05:08
|
||||
guglielmo
|
||||
05:10.5
|
||||
guido
|
||||
05:12.75
|
||||
jacopo
|
||||
05:15
|
||||
ilario
|
||||
05:17
|
||||
ignazio
|
||||
05:20.3
|
||||
italo
|
||||
05:22.4
|
||||
ivan
|
||||
05:24.85
|
||||
ivano
|
||||
05:27.75
|
||||
ivo
|
||||
05:30.2
|
||||
leonardo
|
||||
05:32.5
|
||||
livio
|
||||
05:35
|
||||
lorenzo
|
||||
05:37.6
|
||||
loris
|
||||
05:39.6
|
||||
luca
|
||||
05:42
|
||||
luciano
|
||||
05:44
|
||||
lucio
|
||||
05:46.3
|
||||
ludovico
|
||||
05:48.5
|
||||
luigi
|
||||
05:50.65
|
||||
manuele
|
||||
05:53.3
|
||||
marcello
|
||||
05:56
|
||||
marco
|
||||
05:58
|
||||
mariano
|
||||
06:00.35
|
||||
marino
|
||||
06:02.4
|
||||
mario
|
||||
06:05
|
||||
martino
|
||||
06:08
|
||||
massimiliano
|
||||
06:10.3
|
||||
massimo
|
||||
06:12.4
|
||||
matteo
|
||||
06:14.75
|
||||
mattia
|
||||
06:17.6
|
||||
maurizio
|
||||
06:20.15
|
||||
mauro
|
||||
06:22.4
|
||||
michelangelo
|
||||
06:24.55
|
||||
michele
|
||||
06:27
|
||||
mirko
|
||||
06:29.7
|
||||
moreno
|
||||
06:32
|
||||
natale
|
||||
06:34.5
|
||||
nicola
|
||||
06:36.5
|
||||
nicolò
|
||||
06:38.7
|
||||
omar
|
||||
06:40.6
|
||||
orazio
|
||||
06:43
|
||||
oreste
|
||||
06:45.3
|
||||
orlando
|
||||
06:47.3
|
||||
oscar
|
||||
06:49.7
|
||||
osvaldo
|
||||
06:52
|
||||
ottavio
|
||||
06:54.6
|
||||
paolo
|
||||
06:56.6
|
||||
pasquale
|
||||
06:58.75
|
||||
patrizio
|
||||
07:01
|
||||
pierangelo
|
||||
07:03
|
||||
piergiorgio
|
||||
07:05
|
||||
pierluigi
|
||||
07:07.6
|
||||
piero
|
||||
07:09.7
|
||||
pietro
|
||||
07:12.6
|
||||
raffaele
|
||||
07:15
|
||||
raimondo
|
||||
07:17
|
||||
remo
|
||||
07:19.3
|
||||
renato
|
||||
07:21.4
|
||||
renzo
|
||||
07:23.8
|
||||
riccardo
|
||||
07:26
|
||||
roberto
|
||||
07:28
|
||||
rocco
|
||||
07:30.2
|
||||
rodolfo
|
||||
07:32.2
|
||||
rolando
|
||||
07:34.2
|
||||
romano
|
||||
07:36.2
|
||||
romeo
|
||||
07:38.3
|
||||
romolo
|
||||
07:40.3
|
||||
rosario
|
||||
07:42.65
|
||||
ruggiero
|
||||
07:44.65
|
||||
salvatore
|
||||
07:46.6
|
||||
salvo
|
||||
07:48.75
|
||||
samuele
|
||||
07:51.3
|
||||
sandro
|
||||
07:53.5
|
||||
santo
|
||||
07:55.5
|
||||
saverio
|
||||
07:57.5
|
||||
savino
|
||||
07:59.5
|
||||
sebastiano
|
||||
08:02
|
||||
sergio
|
||||
08:04.4
|
||||
silvano
|
||||
08:06.6
|
||||
silvio
|
||||
08:08.6
|
||||
simone
|
||||
08:11
|
||||
stefano
|
||||
08:13.3
|
||||
tiziano
|
||||
08:15.6
|
||||
tommaso
|
||||
08:17.75
|
||||
ubaldo
|
||||
08:19.8
|
||||
ugo
|
||||
08:21.75
|
||||
umberto
|
||||
08:24.2
|
||||
valentino
|
||||
08:26.4
|
||||
valerio
|
||||
08:28.65
|
||||
vincenzo
|
||||
08:30.75
|
||||
virgilio
|
||||
08:33.4
|
||||
vito
|
||||
08:35.4
|
||||
virginio
|
||||
08:38
|
||||
vittorio
|
||||
08:39
|
||||
walter
|
||||
08:43
|
||||
ada
|
||||
08:45
|
||||
adalgisa
|
||||
08:48
|
||||
adelaide
|
||||
08:50
|
||||
adele
|
||||
08:52
|
||||
adriana
|
||||
08:55
|
||||
agata
|
||||
08:56.8
|
||||
agostina
|
||||
08:59
|
||||
alba
|
||||
09:01.3
|
||||
alda
|
||||
09:03.4
|
||||
alessia
|
||||
09:05
|
||||
allegra
|
||||
09:08
|
||||
amanda
|
||||
09:10
|
||||
ambra
|
||||
09:13
|
||||
angelica
|
||||
09:15
|
||||
anna
|
||||
09:17.5
|
||||
annagrazia
|
||||
09:19.8
|
||||
annunziata
|
||||
09:22
|
||||
antonia
|
||||
09:24.3
|
||||
arianna
|
||||
09:26.5
|
||||
asia
|
||||
09:28.5
|
||||
astrid
|
||||
09:31
|
||||
adelina
|
||||
09:33
|
||||
agnese
|
||||
09:36
|
||||
alessandra
|
||||
09:38
|
||||
alice
|
||||
09:40
|
||||
amalia
|
||||
09:43
|
||||
amelia
|
||||
09:45
|
||||
anastasia
|
||||
09:48
|
||||
angela
|
||||
09:50
|
||||
anita
|
||||
09:52.7
|
||||
annabella
|
||||
09:54.6
|
||||
annamaria
|
||||
09:57
|
||||
antonella
|
||||
09:59.7
|
||||
assunta
|
||||
10:02
|
||||
aurora
|
||||
10:04
|
||||
azzurra
|
||||
10:06
|
||||
barbara
|
||||
10:08
|
||||
beatrice
|
||||
10:10
|
||||
benedetta
|
||||
10:12.6
|
||||
bruna
|
||||
10:15
|
||||
bartolomea
|
||||
10:17.8
|
||||
bianca
|
||||
10:19.8
|
||||
bice
|
||||
10:22.65
|
||||
carmela
|
||||
10:25.5
|
||||
carmen
|
||||
10:27
|
||||
carolina
|
||||
10:30
|
||||
caterina
|
||||
10:32
|
||||
chiara
|
||||
10:35
|
||||
claudia
|
||||
10:37.6
|
||||
concetta
|
||||
10:39.5
|
||||
corinna
|
||||
10:41
|
||||
cristina
|
||||
10:43.5
|
||||
camilla
|
||||
10:45.5
|
||||
carla
|
||||
10:47
|
||||
carola
|
||||
10:49
|
||||
cecilia
|
||||
10:51.4
|
||||
cinzia
|
||||
10:53.2
|
||||
clara
|
||||
10:55
|
||||
clelia
|
||||
10:57
|
||||
costanza
|
||||
10:59
|
||||
cristiana
|
||||
11:01
|
||||
dafne
|
||||
11:03.4
|
||||
dalila
|
||||
11:05.8
|
||||
daniela
|
||||
11:08
|
||||
dina
|
||||
11:10
|
||||
donata
|
||||
11:12
|
||||
daria
|
||||
11:14
|
||||
debora
|
||||
11:16
|
||||
diana
|
||||
11:18
|
||||
diletta
|
||||
11:20
|
||||
domenica
|
||||
11:22
|
||||
donatella
|
||||
11:24.5
|
||||
eleonora
|
||||
11:26.6
|
||||
eliana
|
||||
11:29.05
|
||||
elisabetta
|
||||
11:31
|
||||
elsa
|
||||
11:32.8
|
||||
elvira
|
||||
11:35
|
||||
emilia
|
||||
11:37
|
||||
emma
|
||||
11:39
|
||||
enrica
|
||||
11:41.4
|
||||
ester
|
||||
11:43.8
|
||||
eugenia
|
||||
11:46
|
||||
elena
|
||||
11:48
|
||||
elettra
|
||||
11:50
|
||||
elide
|
||||
11:52
|
||||
elisa
|
||||
11:54.6
|
||||
emanuela
|
||||
11:57
|
||||
emiliana
|
||||
11:59.7
|
||||
erminia
|
||||
12:02
|
||||
eva
|
||||
12:04
|
||||
fabiana
|
||||
12:06.6
|
||||
federica
|
||||
12:08.8
|
||||
fernanda
|
||||
12:10.9
|
||||
filippa
|
||||
12:12.6
|
||||
fiorella
|
||||
12:15
|
||||
floriana
|
||||
12:17
|
||||
fortunata
|
||||
12:19
|
||||
franca
|
||||
12:21
|
||||
fulvia
|
||||
12:22.7
|
||||
fabiola
|
||||
12:24.5
|
||||
fausta
|
||||
12:26.3
|
||||
fiammetta
|
||||
12:28.4
|
||||
filomena
|
||||
12:30.4
|
||||
fiorenza
|
||||
12:32
|
||||
flavia
|
||||
12:34
|
||||
francesca
|
||||
12:36
|
||||
gabriella
|
||||
12:38
|
||||
gemma
|
||||
12:40.9
|
||||
giada
|
||||
12:43
|
||||
gilda
|
||||
12:45
|
||||
germana
|
||||
12:47
|
||||
giorgia
|
||||
12:49
|
||||
giulia
|
||||
12:51.6
|
||||
giuseppina
|
||||
12:53.6
|
||||
grazia
|
||||
12:56
|
||||
graziella
|
||||
12:58
|
||||
guendalina
|
||||
13:00
|
||||
gaia
|
||||
13:02
|
||||
giovanna
|
||||
13:04
|
||||
giuliana
|
||||
13:06
|
||||
gloria
|
||||
13:07.9
|
||||
greta
|
||||
13:09.7
|
||||
ilaria
|
||||
13:11.7
|
||||
ileana
|
||||
13:13.6
|
||||
iole
|
||||
13:15.6
|
||||
irene
|
||||
13:17.5
|
||||
isabella
|
||||
13:19.8
|
||||
ida
|
||||
13:21.65
|
||||
ilenia
|
||||
13:23.6
|
||||
ines
|
||||
13:25.75
|
||||
iolanda
|
||||
13:27.65
|
||||
irma
|
||||
13:29.35
|
||||
isotta
|
||||
13:31
|
||||
lara
|
||||
13:33
|
||||
lavinia
|
||||
13:35
|
||||
letizia
|
||||
13:37
|
||||
liliana
|
||||
13:39
|
||||
lisa
|
||||
13:41
|
||||
loredana
|
||||
13:43
|
||||
lorena
|
||||
13:45
|
||||
loretta
|
||||
13:47.5
|
||||
lucia
|
||||
13:49.3
|
||||
lucilla
|
||||
13:51.5
|
||||
ludovica
|
||||
13:53.5
|
||||
luisa
|
||||
13:55.8
|
||||
laura
|
||||
13:57.5
|
||||
licia
|
||||
13:59.4
|
||||
lidia
|
||||
14:01
|
||||
linda
|
||||
14:03
|
||||
livia
|
||||
14:05.3
|
||||
lorella
|
||||
14:07.3
|
||||
lorenza
|
||||
14:09
|
||||
luciana
|
||||
14:11.4
|
||||
lucrezia
|
||||
14:13.4
|
||||
mafalda
|
||||
14:15
|
||||
mara
|
||||
14:17
|
||||
marcella
|
||||
14:19
|
||||
margherita
|
||||
14:20.8
|
||||
marianna
|
||||
14:22.7
|
||||
mariella
|
||||
14:24.6
|
||||
marina
|
||||
14:26.5
|
||||
martina
|
||||
14:28.5
|
||||
matilde
|
||||
14:30.6
|
||||
melania
|
||||
14:32.5
|
||||
milena
|
||||
14:36
|
||||
mina
|
||||
14:36
|
||||
mirella
|
||||
14:38.4
|
||||
monica
|
||||
14:40.5
|
||||
maddalena
|
||||
14:42.3
|
||||
magda
|
||||
14:44
|
||||
manuela
|
||||
14:46
|
||||
maria
|
||||
14:48.4
|
||||
marilena
|
||||
14:50.5
|
||||
marinella
|
||||
14:52.5
|
||||
marisa
|
||||
14:54.4
|
||||
marta
|
||||
14:56
|
||||
maura
|
||||
14:58
|
||||
melissa
|
||||
15:00
|
||||
michela
|
||||
15:02
|
||||
mimma
|
||||
15:04
|
||||
miriam
|
||||
15:05.8
|
||||
moira
|
||||
15:07.7
|
||||
morena
|
||||
15:09.5
|
||||
nadia
|
||||
15:11.5
|
||||
nicoletta
|
||||
15:13
|
||||
mina
|
||||
15:15
|
||||
natalia
|
||||
15:17
|
||||
noemi
|
||||
15:19
|
||||
norma
|
||||
15:21
|
||||
olga
|
||||
15:23
|
||||
orsola
|
||||
15:25
|
||||
olivia
|
||||
15:27
|
||||
ombretta
|
||||
15:28.65
|
||||
oriana
|
||||
15:30.75
|
||||
ornella
|
||||
15:32.6
|
||||
paola
|
||||
15:34.5
|
||||
pia
|
||||
15:36.5
|
||||
priscilla
|
||||
15:38.6
|
||||
pamela
|
||||
15:40.4
|
||||
patrizia
|
||||
15:42.4
|
||||
penelope
|
||||
15:44.5
|
||||
piera
|
||||
15:46
|
||||
rachele
|
||||
15:48
|
||||
regina
|
||||
15:50
|
||||
riccarda
|
||||
15:52
|
||||
rita
|
||||
15:54
|
||||
romana
|
||||
15:56
|
||||
romina
|
||||
15:58
|
||||
rosa
|
||||
16:00
|
||||
rosalinda
|
||||
16:02
|
||||
rosanna
|
||||
16:04
|
||||
rossella
|
||||
16:06.4
|
||||
raffaella
|
||||
16:08.5
|
||||
rebecca
|
||||
16:10.5
|
||||
renata
|
||||
16:12.5
|
||||
rina
|
||||
16:14.4
|
||||
roberta
|
||||
16:16.3
|
||||
romola
|
||||
16:18
|
||||
rosita
|
||||
16:20
|
||||
rossana
|
||||
16:22.2
|
||||
sabrina
|
||||
16:25
|
||||
serena
|
||||
16:27
|
||||
silvana
|
||||
16:29
|
||||
simona
|
||||
16:31
|
||||
sonia
|
||||
16:33
|
||||
stefania
|
||||
16:35
|
||||
susanna
|
||||
16:37.3
|
||||
samantha
|
||||
16:39.5
|
||||
sandra
|
||||
16:41.5
|
||||
sara
|
||||
16:44
|
||||
serafina
|
||||
16:46
|
||||
selvaggia
|
||||
16:48.35
|
||||
silvia
|
||||
16:50.75
|
||||
simonetta
|
||||
16:53.1
|
||||
sofia
|
||||
16:55.5
|
||||
stella
|
||||
16:57.5
|
||||
tiziana
|
||||
16:59.6
|
||||
tea
|
||||
17:02.2
|
||||
teresa
|
||||
17:04.25
|
||||
tina
|
||||
17:06
|
||||
tullia
|
||||
17:08
|
||||
valeria
|
||||
17:10.5
|
||||
veronica
|
||||
17:12.5
|
||||
valeriana
|
||||
17:14.5
|
||||
vanessa
|
||||
17:17.5
|
||||
vera
|
||||
17:19.4
|
||||
vincenza
|
||||
17:21
|
||||
violante
|
||||
17:23
|
||||
viviana
|
||||
17:25
|
||||
wanda
|
||||
17:27
|
||||
zaira
|
||||
17:29
|
||||
zoe
|
||||
606
poetry.lock
generated
Normal file
606
poetry.lock
generated
Normal file
@@ -0,0 +1,606 @@
|
||||
[[package]]
|
||||
name = "atomicwrites"
|
||||
version = "1.4.0"
|
||||
description = "Atomic file writes."
|
||||
category = "dev"
|
||||
optional = false
|
||||
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
|
||||
|
||||
[[package]]
|
||||
name = "attrs"
|
||||
version = "21.2.0"
|
||||
description = "Classes Without Boilerplate"
|
||||
category = "dev"
|
||||
optional = false
|
||||
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
|
||||
|
||||
[package.extras]
|
||||
dev = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "six", "mypy", "pytest-mypy-plugins", "zope.interface", "furo", "sphinx", "sphinx-notfound-page", "pre-commit"]
|
||||
docs = ["furo", "sphinx", "zope.interface", "sphinx-notfound-page"]
|
||||
tests = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "six", "mypy", "pytest-mypy-plugins", "zope.interface"]
|
||||
tests_no_zope = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "six", "mypy", "pytest-mypy-plugins"]
|
||||
|
||||
[[package]]
|
||||
name = "black"
|
||||
version = "21.10b0"
|
||||
description = "The uncompromising code formatter."
|
||||
category = "dev"
|
||||
optional = false
|
||||
python-versions = ">=3.6.2"
|
||||
|
||||
[package.dependencies]
|
||||
click = ">=7.1.2"
|
||||
mypy-extensions = ">=0.4.3"
|
||||
pathspec = ">=0.9.0,<1"
|
||||
platformdirs = ">=2"
|
||||
regex = ">=2020.1.8"
|
||||
tomli = ">=0.2.6,<2.0.0"
|
||||
typing-extensions = [
|
||||
{version = ">=3.10.0.0", markers = "python_version < \"3.10\""},
|
||||
{version = "!=3.10.0.1", markers = "python_version >= \"3.10\""},
|
||||
]
|
||||
|
||||
[package.extras]
|
||||
colorama = ["colorama (>=0.4.3)"]
|
||||
d = ["aiohttp (>=3.7.4)"]
|
||||
jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"]
|
||||
python2 = ["typed-ast (>=1.4.3)"]
|
||||
uvloop = ["uvloop (>=0.15.2)"]
|
||||
|
||||
[[package]]
|
||||
name = "certifi"
|
||||
version = "2021.10.8"
|
||||
description = "Python package for providing Mozilla's CA Bundle."
|
||||
category = "main"
|
||||
optional = false
|
||||
python-versions = "*"
|
||||
|
||||
[[package]]
|
||||
name = "charset-normalizer"
|
||||
version = "2.0.7"
|
||||
description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet."
|
||||
category = "main"
|
||||
optional = false
|
||||
python-versions = ">=3.5.0"
|
||||
|
||||
[package.extras]
|
||||
unicode_backport = ["unicodedata2"]
|
||||
|
||||
[[package]]
|
||||
name = "click"
|
||||
version = "8.0.3"
|
||||
description = "Composable command line interface toolkit"
|
||||
category = "dev"
|
||||
optional = false
|
||||
python-versions = ">=3.6"
|
||||
|
||||
[package.dependencies]
|
||||
colorama = {version = "*", markers = "platform_system == \"Windows\""}
|
||||
|
||||
[[package]]
|
||||
name = "colorama"
|
||||
version = "0.4.4"
|
||||
description = "Cross-platform colored terminal text."
|
||||
category = "main"
|
||||
optional = false
|
||||
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
|
||||
|
||||
[[package]]
|
||||
name = "decorator"
|
||||
version = "4.4.2"
|
||||
description = "Decorators for Humans"
|
||||
category = "main"
|
||||
optional = false
|
||||
python-versions = ">=2.6, !=3.0.*, !=3.1.*"
|
||||
|
||||
[[package]]
|
||||
name = "idna"
|
||||
version = "3.3"
|
||||
description = "Internationalized Domain Names in Applications (IDNA)"
|
||||
category = "main"
|
||||
optional = false
|
||||
python-versions = ">=3.5"
|
||||
|
||||
[[package]]
|
||||
name = "imageio"
|
||||
version = "2.10.4"
|
||||
description = "Library for reading and writing a wide range of image, video, scientific, and volumetric data formats."
|
||||
category = "main"
|
||||
optional = false
|
||||
python-versions = ">=3.5"
|
||||
|
||||
[package.dependencies]
|
||||
numpy = "*"
|
||||
pillow = ">=8.3.2"
|
||||
|
||||
[package.extras]
|
||||
build = ["wheel"]
|
||||
dev = ["invoke", "pytest", "pytest-cov", "black", "flake8"]
|
||||
docs = ["sphinx", "numpydoc", "pydata-sphinx-theme"]
|
||||
ffmpeg = ["imageio-ffmpeg", "psutil"]
|
||||
fits = ["astropy"]
|
||||
full = ["astropy", "black", "flake8", "gdal", "imageio-ffmpeg", "invoke", "itk", "numpydoc", "psutil", "pydata-sphinx-theme", "pytest", "pytest-cov", "sphinx", "wheel"]
|
||||
gdal = ["gdal"]
|
||||
itk = ["itk"]
|
||||
linting = ["black", "flake8"]
|
||||
test = ["invoke", "pytest", "pytest-cov"]
|
||||
|
||||
[[package]]
|
||||
name = "imageio-ffmpeg"
|
||||
version = "0.4.5"
|
||||
description = "FFMPEG wrapper for Python"
|
||||
category = "main"
|
||||
optional = false
|
||||
python-versions = ">=3.4"
|
||||
|
||||
[[package]]
|
||||
name = "iniconfig"
|
||||
version = "1.1.1"
|
||||
description = "iniconfig: brain-dead simple config-ini parsing"
|
||||
category = "dev"
|
||||
optional = false
|
||||
python-versions = "*"
|
||||
|
||||
[[package]]
|
||||
name = "moviepy"
|
||||
version = "1.0.3"
|
||||
description = "Video editing with Python"
|
||||
category = "main"
|
||||
optional = false
|
||||
python-versions = "*"
|
||||
|
||||
[package.dependencies]
|
||||
decorator = ">=4.0.2,<5.0"
|
||||
imageio = {version = ">=2.5,<3.0", markers = "python_version >= \"3.4\""}
|
||||
imageio_ffmpeg = {version = ">=0.2.0", markers = "python_version >= \"3.4\""}
|
||||
numpy = [
|
||||
{version = ">=1.17.3", markers = "python_version != \"2.7\""},
|
||||
{version = "*", markers = "python_version >= \"2.7\""},
|
||||
]
|
||||
proglog = "<=1.0.0"
|
||||
requests = ">=2.8.1,<3.0"
|
||||
tqdm = ">=4.11.2,<5.0"
|
||||
|
||||
[package.extras]
|
||||
doc = ["numpydoc (>=0.6.0,<1.0)", "sphinx_rtd_theme (>=0.1.10b0,<1.0)", "Sphinx (>=1.5.2,<2.0)", "pygame (>=1.9.3,<2.0)"]
|
||||
optional = ["youtube-dl", "opencv-python (>=3.0,<4.0)", "scipy (>=0.19.0,<1.5)", "scikit-image (>=0.13.0,<1.0)", "scikit-learn", "matplotlib (>=2.0.0,<3.0)"]
|
||||
test = ["coverage (<5.0)", "coveralls (>=1.1,<2.0)", "pytest-cov (>=2.5.1,<3.0)", "pytest (>=3.0.0,<4.0)", "requests (>=2.8.1,<3.0)"]
|
||||
|
||||
[[package]]
|
||||
name = "mypy-extensions"
|
||||
version = "0.4.3"
|
||||
description = "Experimental type system extensions for programs checked with the mypy typechecker."
|
||||
category = "dev"
|
||||
optional = false
|
||||
python-versions = "*"
|
||||
|
||||
[[package]]
|
||||
name = "numpy"
|
||||
version = "1.21.1"
|
||||
description = "NumPy is the fundamental package for array computing with Python."
|
||||
category = "main"
|
||||
optional = false
|
||||
python-versions = ">=3.7"
|
||||
|
||||
[[package]]
|
||||
name = "packaging"
|
||||
version = "21.2"
|
||||
description = "Core utilities for Python packages"
|
||||
category = "dev"
|
||||
optional = false
|
||||
python-versions = ">=3.6"
|
||||
|
||||
[package.dependencies]
|
||||
pyparsing = ">=2.0.2,<3"
|
||||
|
||||
[[package]]
|
||||
name = "pathspec"
|
||||
version = "0.9.0"
|
||||
description = "Utility library for gitignore style pattern matching of file paths."
|
||||
category = "dev"
|
||||
optional = false
|
||||
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7"
|
||||
|
||||
[[package]]
|
||||
name = "pillow"
|
||||
version = "8.4.0"
|
||||
description = "Python Imaging Library (Fork)"
|
||||
category = "main"
|
||||
optional = false
|
||||
python-versions = ">=3.6"
|
||||
|
||||
[[package]]
|
||||
name = "platformdirs"
|
||||
version = "2.4.0"
|
||||
description = "A small Python module for determining appropriate platform-specific dirs, e.g. a \"user data dir\"."
|
||||
category = "dev"
|
||||
optional = false
|
||||
python-versions = ">=3.6"
|
||||
|
||||
[package.extras]
|
||||
docs = ["Sphinx (>=4)", "furo (>=2021.7.5b38)", "proselint (>=0.10.2)", "sphinx-autodoc-typehints (>=1.12)"]
|
||||
test = ["appdirs (==1.4.4)", "pytest (>=6)", "pytest-cov (>=2.7)", "pytest-mock (>=3.6)"]
|
||||
|
||||
[[package]]
|
||||
name = "pluggy"
|
||||
version = "1.0.0"
|
||||
description = "plugin and hook calling mechanisms for python"
|
||||
category = "dev"
|
||||
optional = false
|
||||
python-versions = ">=3.6"
|
||||
|
||||
[package.extras]
|
||||
dev = ["pre-commit", "tox"]
|
||||
testing = ["pytest", "pytest-benchmark"]
|
||||
|
||||
[[package]]
|
||||
name = "proglog"
|
||||
version = "0.1.9"
|
||||
description = "Log and progress bar manager for console, notebooks, web..."
|
||||
category = "main"
|
||||
optional = false
|
||||
python-versions = "*"
|
||||
|
||||
[package.dependencies]
|
||||
tqdm = "*"
|
||||
|
||||
[[package]]
|
||||
name = "py"
|
||||
version = "1.11.0"
|
||||
description = "library with cross-python path, ini-parsing, io, code, log facilities"
|
||||
category = "dev"
|
||||
optional = false
|
||||
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
|
||||
|
||||
[[package]]
|
||||
name = "pyparsing"
|
||||
version = "2.4.7"
|
||||
description = "Python parsing module"
|
||||
category = "dev"
|
||||
optional = false
|
||||
python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*"
|
||||
|
||||
[[package]]
|
||||
name = "pytest"
|
||||
version = "6.2.5"
|
||||
description = "pytest: simple powerful testing with Python"
|
||||
category = "dev"
|
||||
optional = false
|
||||
python-versions = ">=3.6"
|
||||
|
||||
[package.dependencies]
|
||||
atomicwrites = {version = ">=1.0", markers = "sys_platform == \"win32\""}
|
||||
attrs = ">=19.2.0"
|
||||
colorama = {version = "*", markers = "sys_platform == \"win32\""}
|
||||
iniconfig = "*"
|
||||
packaging = "*"
|
||||
pluggy = ">=0.12,<2.0"
|
||||
py = ">=1.8.2"
|
||||
toml = "*"
|
||||
|
||||
[package.extras]
|
||||
testing = ["argcomplete", "hypothesis (>=3.56)", "mock", "nose", "requests", "xmlschema"]
|
||||
|
||||
[[package]]
|
||||
name = "regex"
|
||||
version = "2021.11.10"
|
||||
description = "Alternative regular expression module, to replace re."
|
||||
category = "dev"
|
||||
optional = false
|
||||
python-versions = "*"
|
||||
|
||||
[[package]]
|
||||
name = "requests"
|
||||
version = "2.26.0"
|
||||
description = "Python HTTP for Humans."
|
||||
category = "main"
|
||||
optional = false
|
||||
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*"
|
||||
|
||||
[package.dependencies]
|
||||
certifi = ">=2017.4.17"
|
||||
charset-normalizer = {version = ">=2.0.0,<2.1.0", markers = "python_version >= \"3\""}
|
||||
idna = {version = ">=2.5,<4", markers = "python_version >= \"3\""}
|
||||
urllib3 = ">=1.21.1,<1.27"
|
||||
|
||||
[package.extras]
|
||||
socks = ["PySocks (>=1.5.6,!=1.5.7)", "win-inet-pton"]
|
||||
use_chardet_on_py3 = ["chardet (>=3.0.2,<5)"]
|
||||
|
||||
[[package]]
|
||||
name = "toml"
|
||||
version = "0.10.2"
|
||||
description = "Python Library for Tom's Obvious, Minimal Language"
|
||||
category = "dev"
|
||||
optional = false
|
||||
python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*"
|
||||
|
||||
[[package]]
|
||||
name = "tomli"
|
||||
version = "1.2.2"
|
||||
description = "A lil' TOML parser"
|
||||
category = "dev"
|
||||
optional = false
|
||||
python-versions = ">=3.6"
|
||||
|
||||
[[package]]
|
||||
name = "tqdm"
|
||||
version = "4.62.3"
|
||||
description = "Fast, Extensible Progress Meter"
|
||||
category = "main"
|
||||
optional = false
|
||||
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,>=2.7"
|
||||
|
||||
[package.dependencies]
|
||||
colorama = {version = "*", markers = "platform_system == \"Windows\""}
|
||||
|
||||
[package.extras]
|
||||
dev = ["py-make (>=0.1.0)", "twine", "wheel"]
|
||||
notebook = ["ipywidgets (>=6)"]
|
||||
telegram = ["requests"]
|
||||
|
||||
[[package]]
|
||||
name = "typing-extensions"
|
||||
version = "4.0.0"
|
||||
description = "Backported and Experimental Type Hints for Python 3.6+"
|
||||
category = "dev"
|
||||
optional = false
|
||||
python-versions = ">=3.6"
|
||||
|
||||
[[package]]
|
||||
name = "urllib3"
|
||||
version = "1.26.7"
|
||||
description = "HTTP library with thread-safe connection pooling, file post, and more."
|
||||
category = "main"
|
||||
optional = false
|
||||
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4"
|
||||
|
||||
[package.extras]
|
||||
brotli = ["brotlipy (>=0.6.0)"]
|
||||
secure = ["pyOpenSSL (>=0.14)", "cryptography (>=1.3.4)", "idna (>=2.0.0)", "certifi", "ipaddress"]
|
||||
socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"]
|
||||
|
||||
[metadata]
|
||||
lock-version = "1.1"
|
||||
python-versions = "^3.9"
|
||||
content-hash = "10a50fe4f7e6227e59507bdfa93258bc967f4b70126d1f321d9b76beafe710d2"
|
||||
|
||||
[metadata.files]
|
||||
atomicwrites = [
|
||||
{file = "atomicwrites-1.4.0-py2.py3-none-any.whl", hash = "sha256:6d1784dea7c0c8d4a5172b6c620f40b6e4cbfdf96d783691f2e1302a7b88e197"},
|
||||
{file = "atomicwrites-1.4.0.tar.gz", hash = "sha256:ae70396ad1a434f9c7046fd2dd196fc04b12f9e91ffb859164193be8b6168a7a"},
|
||||
]
|
||||
attrs = [
|
||||
{file = "attrs-21.2.0-py2.py3-none-any.whl", hash = "sha256:149e90d6d8ac20db7a955ad60cf0e6881a3f20d37096140088356da6c716b0b1"},
|
||||
{file = "attrs-21.2.0.tar.gz", hash = "sha256:ef6aaac3ca6cd92904cdd0d83f629a15f18053ec84e6432106f7a4d04ae4f5fb"},
|
||||
]
|
||||
black = [
|
||||
{file = "black-21.10b0-py3-none-any.whl", hash = "sha256:6eb7448da9143ee65b856a5f3676b7dda98ad9abe0f87fce8c59291f15e82a5b"},
|
||||
{file = "black-21.10b0.tar.gz", hash = "sha256:a9952229092e325fe5f3dae56d81f639b23f7131eb840781947e4b2886030f33"},
|
||||
]
|
||||
certifi = [
|
||||
{file = "certifi-2021.10.8-py2.py3-none-any.whl", hash = "sha256:d62a0163eb4c2344ac042ab2bdf75399a71a2d8c7d47eac2e2ee91b9d6339569"},
|
||||
{file = "certifi-2021.10.8.tar.gz", hash = "sha256:78884e7c1d4b00ce3cea67b44566851c4343c120abd683433ce934a68ea58872"},
|
||||
]
|
||||
charset-normalizer = [
|
||||
{file = "charset-normalizer-2.0.7.tar.gz", hash = "sha256:e019de665e2bcf9c2b64e2e5aa025fa991da8720daa3c1138cadd2fd1856aed0"},
|
||||
{file = "charset_normalizer-2.0.7-py3-none-any.whl", hash = "sha256:f7af805c321bfa1ce6714c51f254e0d5bb5e5834039bc17db7ebe3a4cec9492b"},
|
||||
]
|
||||
click = [
|
||||
{file = "click-8.0.3-py3-none-any.whl", hash = "sha256:353f466495adaeb40b6b5f592f9f91cb22372351c84caeb068132442a4518ef3"},
|
||||
{file = "click-8.0.3.tar.gz", hash = "sha256:410e932b050f5eed773c4cda94de75971c89cdb3155a72a0831139a79e5ecb5b"},
|
||||
]
|
||||
colorama = [
|
||||
{file = "colorama-0.4.4-py2.py3-none-any.whl", hash = "sha256:9f47eda37229f68eee03b24b9748937c7dc3868f906e8ba69fbcbdd3bc5dc3e2"},
|
||||
{file = "colorama-0.4.4.tar.gz", hash = "sha256:5941b2b48a20143d2267e95b1c2a7603ce057ee39fd88e7329b0c292aa16869b"},
|
||||
]
|
||||
decorator = [
|
||||
{file = "decorator-4.4.2-py2.py3-none-any.whl", hash = "sha256:41fa54c2a0cc4ba648be4fd43cff00aedf5b9465c9bf18d64325bc225f08f760"},
|
||||
{file = "decorator-4.4.2.tar.gz", hash = "sha256:e3a62f0520172440ca0dcc823749319382e377f37f140a0b99ef45fecb84bfe7"},
|
||||
]
|
||||
idna = [
|
||||
{file = "idna-3.3-py3-none-any.whl", hash = "sha256:84d9dd047ffa80596e0f246e2eab0b391788b0503584e8945f2368256d2735ff"},
|
||||
{file = "idna-3.3.tar.gz", hash = "sha256:9d643ff0a55b762d5cdb124b8eaa99c66322e2157b69160bc32796e824360e6d"},
|
||||
]
|
||||
imageio = [
|
||||
{file = "imageio-2.10.4-py3-none-any.whl", hash = "sha256:3b0ce2bdf380c38d2686694870a85e92adc31c736bb8071596325b64d790661b"},
|
||||
{file = "imageio-2.10.4.tar.gz", hash = "sha256:ec90094501fdb1ba3cc256f4cefbcefe0ad63ea9cf360a476383f97666b16c66"},
|
||||
]
|
||||
imageio-ffmpeg = [
|
||||
{file = "imageio-ffmpeg-0.4.5.tar.gz", hash = "sha256:f2ea4245a2adad25dedf98d343159579167e549ac8c4691cef5eff980e20c139"},
|
||||
{file = "imageio_ffmpeg-0.4.5-py3-none-macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", hash = "sha256:266601aab7619acf6ff78cd5ba78b5a593a1119a96d266d33b88bfcd01bbd3ca"},
|
||||
{file = "imageio_ffmpeg-0.4.5-py3-none-manylinux2010_x86_64.whl", hash = "sha256:f127b8cdd842e8398de5f2aef23c687ae75d4d964e1df2ea3a9ff03e92a370e7"},
|
||||
{file = "imageio_ffmpeg-0.4.5-py3-none-manylinux2014_aarch64.whl", hash = "sha256:db4d318f640419037a0df29bb11b1022f2f8094c90b4aac8affc7177b8ce4641"},
|
||||
{file = "imageio_ffmpeg-0.4.5-py3-none-win32.whl", hash = "sha256:39a9ab4326bdf5eae3457961dfdfb4317078659ebe4e6980914ac897a462aeb2"},
|
||||
{file = "imageio_ffmpeg-0.4.5-py3-none-win_amd64.whl", hash = "sha256:d2ba8339eecc02fa73a6b85c34654c49a7c78d732a1ac76478d11224e6cfa902"},
|
||||
]
|
||||
iniconfig = [
|
||||
{file = "iniconfig-1.1.1-py2.py3-none-any.whl", hash = "sha256:011e24c64b7f47f6ebd835bb12a743f2fbe9a26d4cecaa7f53bc4f35ee9da8b3"},
|
||||
{file = "iniconfig-1.1.1.tar.gz", hash = "sha256:bc3af051d7d14b2ee5ef9969666def0cd1a000e121eaea580d4a313df4b37f32"},
|
||||
]
|
||||
moviepy = [
|
||||
{file = "moviepy-1.0.3.tar.gz", hash = "sha256:2884e35d1788077db3ff89e763c5ba7bfddbd7ae9108c9bc809e7ba58fa433f5"},
|
||||
]
|
||||
mypy-extensions = [
|
||||
{file = "mypy_extensions-0.4.3-py2.py3-none-any.whl", hash = "sha256:090fedd75945a69ae91ce1303b5824f428daf5a028d2f6ab8a299250a846f15d"},
|
||||
{file = "mypy_extensions-0.4.3.tar.gz", hash = "sha256:2d82818f5bb3e369420cb3c4060a7970edba416647068eb4c5343488a6c604a8"},
|
||||
]
|
||||
numpy = [
|
||||
{file = "numpy-1.21.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:38e8648f9449a549a7dfe8d8755a5979b45b3538520d1e735637ef28e8c2dc50"},
|
||||
{file = "numpy-1.21.1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:fd7d7409fa643a91d0a05c7554dd68aa9c9bb16e186f6ccfe40d6e003156e33a"},
|
||||
{file = "numpy-1.21.1-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:a75b4498b1e93d8b700282dc8e655b8bd559c0904b3910b144646dbbbc03e062"},
|
||||
{file = "numpy-1.21.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1412aa0aec3e00bc23fbb8664d76552b4efde98fb71f60737c83efbac24112f1"},
|
||||
{file = "numpy-1.21.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e46ceaff65609b5399163de5893d8f2a82d3c77d5e56d976c8b5fb01faa6b671"},
|
||||
{file = "numpy-1.21.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:c6a2324085dd52f96498419ba95b5777e40b6bcbc20088fddb9e8cbb58885e8e"},
|
||||
{file = "numpy-1.21.1-cp37-cp37m-win32.whl", hash = "sha256:73101b2a1fef16602696d133db402a7e7586654682244344b8329cdcbbb82172"},
|
||||
{file = "numpy-1.21.1-cp37-cp37m-win_amd64.whl", hash = "sha256:7a708a79c9a9d26904d1cca8d383bf869edf6f8e7650d85dbc77b041e8c5a0f8"},
|
||||
{file = "numpy-1.21.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95b995d0c413f5d0428b3f880e8fe1660ff9396dcd1f9eedbc311f37b5652e16"},
|
||||
{file = "numpy-1.21.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:635e6bd31c9fb3d475c8f44a089569070d10a9ef18ed13738b03049280281267"},
|
||||
{file = "numpy-1.21.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:4a3d5fb89bfe21be2ef47c0614b9c9c707b7362386c9a3ff1feae63e0267ccb6"},
|
||||
{file = "numpy-1.21.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:8a326af80e86d0e9ce92bcc1e65c8ff88297de4fa14ee936cb2293d414c9ec63"},
|
||||
{file = "numpy-1.21.1-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:791492091744b0fe390a6ce85cc1bf5149968ac7d5f0477288f78c89b385d9af"},
|
||||
{file = "numpy-1.21.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0318c465786c1f63ac05d7c4dbcecd4d2d7e13f0959b01b534ea1e92202235c5"},
|
||||
{file = "numpy-1.21.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9a513bd9c1551894ee3d31369f9b07460ef223694098cf27d399513415855b68"},
|
||||
{file = "numpy-1.21.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:91c6f5fc58df1e0a3cc0c3a717bb3308ff850abdaa6d2d802573ee2b11f674a8"},
|
||||
{file = "numpy-1.21.1-cp38-cp38-win32.whl", hash = "sha256:978010b68e17150db8765355d1ccdd450f9fc916824e8c4e35ee620590e234cd"},
|
||||
{file = "numpy-1.21.1-cp38-cp38-win_amd64.whl", hash = "sha256:9749a40a5b22333467f02fe11edc98f022133ee1bfa8ab99bda5e5437b831214"},
|
||||
{file = "numpy-1.21.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:d7a4aeac3b94af92a9373d6e77b37691b86411f9745190d2c351f410ab3a791f"},
|
||||
{file = "numpy-1.21.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:d9e7912a56108aba9b31df688a4c4f5cb0d9d3787386b87d504762b6754fbb1b"},
|
||||
{file = "numpy-1.21.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:25b40b98ebdd272bc3020935427a4530b7d60dfbe1ab9381a39147834e985eac"},
|
||||
{file = "numpy-1.21.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:8a92c5aea763d14ba9d6475803fc7904bda7decc2a0a68153f587ad82941fec1"},
|
||||
{file = "numpy-1.21.1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:05a0f648eb28bae4bcb204e6fd14603de2908de982e761a2fc78efe0f19e96e1"},
|
||||
{file = "numpy-1.21.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f01f28075a92eede918b965e86e8f0ba7b7797a95aa8d35e1cc8821f5fc3ad6a"},
|
||||
{file = "numpy-1.21.1-cp39-cp39-win32.whl", hash = "sha256:88c0b89ad1cc24a5efbb99ff9ab5db0f9a86e9cc50240177a571fbe9c2860ac2"},
|
||||
{file = "numpy-1.21.1-cp39-cp39-win_amd64.whl", hash = "sha256:01721eefe70544d548425a07c80be8377096a54118070b8a62476866d5208e33"},
|
||||
{file = "numpy-1.21.1-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:2d4d1de6e6fb3d28781c73fbde702ac97f03d79e4ffd6598b880b2d95d62ead4"},
|
||||
{file = "numpy-1.21.1.zip", hash = "sha256:dff4af63638afcc57a3dfb9e4b26d434a7a602d225b42d746ea7fe2edf1342fd"},
|
||||
]
|
||||
packaging = [
|
||||
{file = "packaging-21.2-py3-none-any.whl", hash = "sha256:14317396d1e8cdb122989b916fa2c7e9ca8e2be9e8060a6eff75b6b7b4d8a7e0"},
|
||||
{file = "packaging-21.2.tar.gz", hash = "sha256:096d689d78ca690e4cd8a89568ba06d07ca097e3306a4381635073ca91479966"},
|
||||
]
|
||||
pathspec = [
|
||||
{file = "pathspec-0.9.0-py2.py3-none-any.whl", hash = "sha256:7d15c4ddb0b5c802d161efc417ec1a2558ea2653c2e8ad9c19098201dc1c993a"},
|
||||
{file = "pathspec-0.9.0.tar.gz", hash = "sha256:e564499435a2673d586f6b2130bb5b95f04a3ba06f81b8f895b651a3c76aabb1"},
|
||||
]
|
||||
pillow = [
|
||||
{file = "Pillow-8.4.0-cp310-cp310-macosx_10_10_universal2.whl", hash = "sha256:81f8d5c81e483a9442d72d182e1fb6dcb9723f289a57e8030811bac9ea3fef8d"},
|
||||
{file = "Pillow-8.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3f97cfb1e5a392d75dd8b9fd274d205404729923840ca94ca45a0af57e13dbe6"},
|
||||
{file = "Pillow-8.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eb9fc393f3c61f9054e1ed26e6fe912c7321af2f41ff49d3f83d05bacf22cc78"},
|
||||
{file = "Pillow-8.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d82cdb63100ef5eedb8391732375e6d05993b765f72cb34311fab92103314649"},
|
||||
{file = "Pillow-8.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:62cc1afda735a8d109007164714e73771b499768b9bb5afcbbee9d0ff374b43f"},
|
||||
{file = "Pillow-8.4.0-cp310-cp310-win32.whl", hash = "sha256:e3dacecfbeec9a33e932f00c6cd7996e62f53ad46fbe677577394aaa90ee419a"},
|
||||
{file = "Pillow-8.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:620582db2a85b2df5f8a82ddeb52116560d7e5e6b055095f04ad828d1b0baa39"},
|
||||
{file = "Pillow-8.4.0-cp36-cp36m-macosx_10_10_x86_64.whl", hash = "sha256:1bc723b434fbc4ab50bb68e11e93ce5fb69866ad621e3c2c9bdb0cd70e345f55"},
|
||||
{file = "Pillow-8.4.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:72cbcfd54df6caf85cc35264c77ede902452d6df41166010262374155947460c"},
|
||||
{file = "Pillow-8.4.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:70ad9e5c6cb9b8487280a02c0ad8a51581dcbbe8484ce058477692a27c151c0a"},
|
||||
{file = "Pillow-8.4.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:25a49dc2e2f74e65efaa32b153527fc5ac98508d502fa46e74fa4fd678ed6645"},
|
||||
{file = "Pillow-8.4.0-cp36-cp36m-win32.whl", hash = "sha256:93ce9e955cc95959df98505e4608ad98281fff037350d8c2671c9aa86bcf10a9"},
|
||||
{file = "Pillow-8.4.0-cp36-cp36m-win_amd64.whl", hash = "sha256:2e4440b8f00f504ee4b53fe30f4e381aae30b0568193be305256b1462216feff"},
|
||||
{file = "Pillow-8.4.0-cp37-cp37m-macosx_10_10_x86_64.whl", hash = "sha256:8c803ac3c28bbc53763e6825746f05cc407b20e4a69d0122e526a582e3b5e153"},
|
||||
{file = "Pillow-8.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c8a17b5d948f4ceeceb66384727dde11b240736fddeda54ca740b9b8b1556b29"},
|
||||
{file = "Pillow-8.4.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1394a6ad5abc838c5cd8a92c5a07535648cdf6d09e8e2d6df916dfa9ea86ead8"},
|
||||
{file = "Pillow-8.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:792e5c12376594bfcb986ebf3855aa4b7c225754e9a9521298e460e92fb4a488"},
|
||||
{file = "Pillow-8.4.0-cp37-cp37m-win32.whl", hash = "sha256:d99ec152570e4196772e7a8e4ba5320d2d27bf22fdf11743dd882936ed64305b"},
|
||||
{file = "Pillow-8.4.0-cp37-cp37m-win_amd64.whl", hash = "sha256:7b7017b61bbcdd7f6363aeceb881e23c46583739cb69a3ab39cb384f6ec82e5b"},
|
||||
{file = "Pillow-8.4.0-cp38-cp38-macosx_10_10_x86_64.whl", hash = "sha256:d89363f02658e253dbd171f7c3716a5d340a24ee82d38aab9183f7fdf0cdca49"},
|
||||
{file = "Pillow-8.4.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:0a0956fdc5defc34462bb1c765ee88d933239f9a94bc37d132004775241a7585"},
|
||||
{file = "Pillow-8.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5b7bb9de00197fb4261825c15551adf7605cf14a80badf1761d61e59da347779"},
|
||||
{file = "Pillow-8.4.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:72b9e656e340447f827885b8d7a15fc8c4e68d410dc2297ef6787eec0f0ea409"},
|
||||
{file = "Pillow-8.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a5a4532a12314149d8b4e4ad8ff09dde7427731fcfa5917ff16d0291f13609df"},
|
||||
{file = "Pillow-8.4.0-cp38-cp38-win32.whl", hash = "sha256:82aafa8d5eb68c8463b6e9baeb4f19043bb31fefc03eb7b216b51e6a9981ae09"},
|
||||
{file = "Pillow-8.4.0-cp38-cp38-win_amd64.whl", hash = "sha256:066f3999cb3b070a95c3652712cffa1a748cd02d60ad7b4e485c3748a04d9d76"},
|
||||
{file = "Pillow-8.4.0-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:5503c86916d27c2e101b7f71c2ae2cddba01a2cf55b8395b0255fd33fa4d1f1a"},
|
||||
{file = "Pillow-8.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:4acc0985ddf39d1bc969a9220b51d94ed51695d455c228d8ac29fcdb25810e6e"},
|
||||
{file = "Pillow-8.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0b052a619a8bfcf26bd8b3f48f45283f9e977890263e4571f2393ed8898d331b"},
|
||||
{file = "Pillow-8.4.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:493cb4e415f44cd601fcec11c99836f707bb714ab03f5ed46ac25713baf0ff20"},
|
||||
{file = "Pillow-8.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b8831cb7332eda5dc89b21a7bce7ef6ad305548820595033a4b03cf3091235ed"},
|
||||
{file = "Pillow-8.4.0-cp39-cp39-win32.whl", hash = "sha256:5e9ac5f66616b87d4da618a20ab0a38324dbe88d8a39b55be8964eb520021e02"},
|
||||
{file = "Pillow-8.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:3eb1ce5f65908556c2d8685a8f0a6e989d887ec4057326f6c22b24e8a172c66b"},
|
||||
{file = "Pillow-8.4.0-pp36-pypy36_pp73-macosx_10_10_x86_64.whl", hash = "sha256:ddc4d832a0f0b4c52fff973a0d44b6c99839a9d016fe4e6a1cb8f3eea96479c2"},
|
||||
{file = "Pillow-8.4.0-pp36-pypy36_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9a3e5ddc44c14042f0844b8cf7d2cd455f6cc80fd7f5eefbe657292cf601d9ad"},
|
||||
{file = "Pillow-8.4.0-pp36-pypy36_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c70e94281588ef053ae8998039610dbd71bc509e4acbc77ab59d7d2937b10698"},
|
||||
{file = "Pillow-8.4.0-pp37-pypy37_pp73-macosx_10_10_x86_64.whl", hash = "sha256:3862b7256046fcd950618ed22d1d60b842e3a40a48236a5498746f21189afbbc"},
|
||||
{file = "Pillow-8.4.0-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a4901622493f88b1a29bd30ec1a2f683782e57c3c16a2dbc7f2595ba01f639df"},
|
||||
{file = "Pillow-8.4.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:84c471a734240653a0ec91dec0996696eea227eafe72a33bd06c92697728046b"},
|
||||
{file = "Pillow-8.4.0-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:244cf3b97802c34c41905d22810846802a3329ddcb93ccc432870243211c79fc"},
|
||||
{file = "Pillow-8.4.0.tar.gz", hash = "sha256:b8e2f83c56e141920c39464b852de3719dfbfb6e3c99a2d8da0edf4fb33176ed"},
|
||||
]
|
||||
platformdirs = [
|
||||
{file = "platformdirs-2.4.0-py3-none-any.whl", hash = "sha256:8868bbe3c3c80d42f20156f22e7131d2fb321f5bc86a2a345375c6481a67021d"},
|
||||
{file = "platformdirs-2.4.0.tar.gz", hash = "sha256:367a5e80b3d04d2428ffa76d33f124cf11e8fff2acdaa9b43d545f5c7d661ef2"},
|
||||
]
|
||||
pluggy = [
|
||||
{file = "pluggy-1.0.0-py2.py3-none-any.whl", hash = "sha256:74134bbf457f031a36d68416e1509f34bd5ccc019f0bcc952c7b909d06b37bd3"},
|
||||
{file = "pluggy-1.0.0.tar.gz", hash = "sha256:4224373bacce55f955a878bf9cfa763c1e360858e330072059e10bad68531159"},
|
||||
]
|
||||
proglog = [
|
||||
{file = "proglog-0.1.9.tar.gz", hash = "sha256:d8c4ccbf2138e0c5e3f3fc0d80dc51d7e69dcfe8bfde4cacb566725092a5b18d"},
|
||||
]
|
||||
py = [
|
||||
{file = "py-1.11.0-py2.py3-none-any.whl", hash = "sha256:607c53218732647dff4acdfcd50cb62615cedf612e72d1724fb1a0cc6405b378"},
|
||||
{file = "py-1.11.0.tar.gz", hash = "sha256:51c75c4126074b472f746a24399ad32f6053d1b34b68d2fa41e558e6f4a98719"},
|
||||
]
|
||||
pyparsing = [
|
||||
{file = "pyparsing-2.4.7-py2.py3-none-any.whl", hash = "sha256:ef9d7589ef3c200abe66653d3f1ab1033c3c419ae9b9bdb1240a85b024efc88b"},
|
||||
{file = "pyparsing-2.4.7.tar.gz", hash = "sha256:c203ec8783bf771a155b207279b9bccb8dea02d8f0c9e5f8ead507bc3246ecc1"},
|
||||
]
|
||||
pytest = [
|
||||
{file = "pytest-6.2.5-py3-none-any.whl", hash = "sha256:7310f8d27bc79ced999e760ca304d69f6ba6c6649c0b60fb0e04a4a77cacc134"},
|
||||
{file = "pytest-6.2.5.tar.gz", hash = "sha256:131b36680866a76e6781d13f101efb86cf674ebb9762eb70d3082b6f29889e89"},
|
||||
]
|
||||
regex = [
|
||||
{file = "regex-2021.11.10-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:9345b6f7ee578bad8e475129ed40123d265464c4cfead6c261fd60fc9de00bcf"},
|
||||
{file = "regex-2021.11.10-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:416c5f1a188c91e3eb41e9c8787288e707f7d2ebe66e0a6563af280d9b68478f"},
|
||||
{file = "regex-2021.11.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0538c43565ee6e703d3a7c3bdfe4037a5209250e8502c98f20fea6f5fdf2965"},
|
||||
{file = "regex-2021.11.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7ee1227cf08b6716c85504aebc49ac827eb88fcc6e51564f010f11a406c0a667"},
|
||||
{file = "regex-2021.11.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6650f16365f1924d6014d2ea770bde8555b4a39dc9576abb95e3cd1ff0263b36"},
|
||||
{file = "regex-2021.11.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:30ab804ea73972049b7a2a5c62d97687d69b5a60a67adca07eb73a0ddbc9e29f"},
|
||||
{file = "regex-2021.11.10-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:68a067c11463de2a37157930d8b153005085e42bcb7ad9ca562d77ba7d1404e0"},
|
||||
{file = "regex-2021.11.10-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:162abfd74e88001d20cb73ceaffbfe601469923e875caf9118333b1a4aaafdc4"},
|
||||
{file = "regex-2021.11.10-cp310-cp310-win32.whl", hash = "sha256:98ba568e8ae26beb726aeea2273053c717641933836568c2a0278a84987b2a1a"},
|
||||
{file = "regex-2021.11.10-cp310-cp310-win_amd64.whl", hash = "sha256:780b48456a0f0ba4d390e8b5f7c661fdd218934388cde1a974010a965e200e12"},
|
||||
{file = "regex-2021.11.10-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:dba70f30fd81f8ce6d32ddeef37d91c8948e5d5a4c63242d16a2b2df8143aafc"},
|
||||
{file = "regex-2021.11.10-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e1f54b9b4b6c53369f40028d2dd07a8c374583417ee6ec0ea304e710a20f80a0"},
|
||||
{file = "regex-2021.11.10-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fbb9dc00e39f3e6c0ef48edee202f9520dafb233e8b51b06b8428cfcb92abd30"},
|
||||
{file = "regex-2021.11.10-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:666abff54e474d28ff42756d94544cdfd42e2ee97065857413b72e8a2d6a6345"},
|
||||
{file = "regex-2021.11.10-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5537f71b6d646f7f5f340562ec4c77b6e1c915f8baae822ea0b7e46c1f09b733"},
|
||||
{file = "regex-2021.11.10-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ed2e07c6a26ed4bea91b897ee2b0835c21716d9a469a96c3e878dc5f8c55bb23"},
|
||||
{file = "regex-2021.11.10-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:ca5f18a75e1256ce07494e245cdb146f5a9267d3c702ebf9b65c7f8bd843431e"},
|
||||
{file = "regex-2021.11.10-cp36-cp36m-win32.whl", hash = "sha256:93a5051fcf5fad72de73b96f07d30bc29665697fb8ecdfbc474f3452c78adcf4"},
|
||||
{file = "regex-2021.11.10-cp36-cp36m-win_amd64.whl", hash = "sha256:b483c9d00a565633c87abd0aaf27eb5016de23fed952e054ecc19ce32f6a9e7e"},
|
||||
{file = "regex-2021.11.10-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:fff55f3ce50a3ff63ec8e2a8d3dd924f1941b250b0aac3d3d42b687eeff07a8e"},
|
||||
{file = "regex-2021.11.10-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e32d2a2b02ccbef10145df9135751abea1f9f076e67a4e261b05f24b94219e36"},
|
||||
{file = "regex-2021.11.10-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:53db2c6be8a2710b359bfd3d3aa17ba38f8aa72a82309a12ae99d3c0c3dcd74d"},
|
||||
{file = "regex-2021.11.10-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2207ae4f64ad3af399e2d30dde66f0b36ae5c3129b52885f1bffc2f05ec505c8"},
|
||||
{file = "regex-2021.11.10-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d5ca078bb666c4a9d1287a379fe617a6dccd18c3e8a7e6c7e1eb8974330c626a"},
|
||||
{file = "regex-2021.11.10-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dd33eb9bdcfbabab3459c9ee651d94c842bc8a05fabc95edf4ee0c15a072495e"},
|
||||
{file = "regex-2021.11.10-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:05b7d6d7e64efe309972adab77fc2af8907bb93217ec60aa9fe12a0dad35874f"},
|
||||
{file = "regex-2021.11.10-cp37-cp37m-win32.whl", hash = "sha256:e71255ba42567d34a13c03968736c5d39bb4a97ce98188fafb27ce981115beec"},
|
||||
{file = "regex-2021.11.10-cp37-cp37m-win_amd64.whl", hash = "sha256:07856afef5ffcc052e7eccf3213317fbb94e4a5cd8177a2caa69c980657b3cb4"},
|
||||
{file = "regex-2021.11.10-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:ba05430e819e58544e840a68b03b28b6d328aff2e41579037e8bab7653b37d83"},
|
||||
{file = "regex-2021.11.10-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7f301b11b9d214f83ddaf689181051e7f48905568b0c7017c04c06dfd065e244"},
|
||||
{file = "regex-2021.11.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aaa4e0705ef2b73dd8e36eeb4c868f80f8393f5f4d855e94025ce7ad8525f50"},
|
||||
{file = "regex-2021.11.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:788aef3549f1924d5c38263104dae7395bf020a42776d5ec5ea2b0d3d85d6646"},
|
||||
{file = "regex-2021.11.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f8af619e3be812a2059b212064ea7a640aff0568d972cd1b9e920837469eb3cb"},
|
||||
{file = "regex-2021.11.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:85bfa6a5413be0ee6c5c4a663668a2cad2cbecdee367630d097d7823041bdeec"},
|
||||
{file = "regex-2021.11.10-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f23222527b307970e383433daec128d769ff778d9b29343fb3496472dc20dabe"},
|
||||
{file = "regex-2021.11.10-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:da1a90c1ddb7531b1d5ff1e171b4ee61f6345119be7351104b67ff413843fe94"},
|
||||
{file = "regex-2021.11.10-cp38-cp38-win32.whl", hash = "sha256:0617383e2fe465732af4509e61648b77cbe3aee68b6ac8c0b6fe934db90be5cc"},
|
||||
{file = "regex-2021.11.10-cp38-cp38-win_amd64.whl", hash = "sha256:a3feefd5e95871872673b08636f96b61ebef62971eab044f5124fb4dea39919d"},
|
||||
{file = "regex-2021.11.10-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f7f325be2804246a75a4f45c72d4ce80d2443ab815063cdf70ee8fb2ca59ee1b"},
|
||||
{file = "regex-2021.11.10-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:537ca6a3586931b16a85ac38c08cc48f10fc870a5b25e51794c74df843e9966d"},
|
||||
{file = "regex-2021.11.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eef2afb0fd1747f33f1ee3e209bce1ed582d1896b240ccc5e2697e3275f037c7"},
|
||||
{file = "regex-2021.11.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:432bd15d40ed835a51617521d60d0125867f7b88acf653e4ed994a1f8e4995dc"},
|
||||
{file = "regex-2021.11.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b43c2b8a330a490daaef5a47ab114935002b13b3f9dc5da56d5322ff218eeadb"},
|
||||
{file = "regex-2021.11.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:962b9a917dd7ceacbe5cd424556914cb0d636001e393b43dc886ba31d2a1e449"},
|
||||
{file = "regex-2021.11.10-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fa8c626d6441e2d04b6ee703ef2d1e17608ad44c7cb75258c09dd42bacdfc64b"},
|
||||
{file = "regex-2021.11.10-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:3c5fb32cc6077abad3bbf0323067636d93307c9fa93e072771cf9a64d1c0f3ef"},
|
||||
{file = "regex-2021.11.10-cp39-cp39-win32.whl", hash = "sha256:3b5df18db1fccd66de15aa59c41e4f853b5df7550723d26aa6cb7f40e5d9da5a"},
|
||||
{file = "regex-2021.11.10-cp39-cp39-win_amd64.whl", hash = "sha256:83ee89483672b11f8952b158640d0c0ff02dc43d9cb1b70c1564b49abe92ce29"},
|
||||
{file = "regex-2021.11.10.tar.gz", hash = "sha256:f341ee2df0999bfdf7a95e448075effe0db212a59387de1a70690e4acb03d4c6"},
|
||||
]
|
||||
requests = [
|
||||
{file = "requests-2.26.0-py2.py3-none-any.whl", hash = "sha256:6c1246513ecd5ecd4528a0906f910e8f0f9c6b8ec72030dc9fd154dc1a6efd24"},
|
||||
{file = "requests-2.26.0.tar.gz", hash = "sha256:b8aa58f8cf793ffd8782d3d8cb19e66ef36f7aba4353eec859e74678b01b07a7"},
|
||||
]
|
||||
toml = [
|
||||
{file = "toml-0.10.2-py2.py3-none-any.whl", hash = "sha256:806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b"},
|
||||
{file = "toml-0.10.2.tar.gz", hash = "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f"},
|
||||
]
|
||||
tomli = [
|
||||
{file = "tomli-1.2.2-py3-none-any.whl", hash = "sha256:f04066f68f5554911363063a30b108d2b5a5b1a010aa8b6132af78489fe3aade"},
|
||||
{file = "tomli-1.2.2.tar.gz", hash = "sha256:c6ce0015eb38820eaf32b5db832dbc26deb3dd427bd5f6556cf0acac2c214fee"},
|
||||
]
|
||||
tqdm = [
|
||||
{file = "tqdm-4.62.3-py2.py3-none-any.whl", hash = "sha256:8dd278a422499cd6b727e6ae4061c40b48fce8b76d1ccbf5d34fca9b7f925b0c"},
|
||||
{file = "tqdm-4.62.3.tar.gz", hash = "sha256:d359de7217506c9851b7869f3708d8ee53ed70a1b8edbba4dbcb47442592920d"},
|
||||
]
|
||||
typing-extensions = [
|
||||
{file = "typing_extensions-4.0.0-py3-none-any.whl", hash = "sha256:829704698b22e13ec9eaf959122315eabb370b0884400e9818334d8b677023d9"},
|
||||
{file = "typing_extensions-4.0.0.tar.gz", hash = "sha256:2cdf80e4e04866a9b3689a51869016d36db0814d84b8d8a568d22781d45d27ed"},
|
||||
]
|
||||
urllib3 = [
|
||||
{file = "urllib3-1.26.7-py2.py3-none-any.whl", hash = "sha256:c4fdf4019605b6e5423637e01bc9fe4daef873709a7973e195ceba0a62bbc844"},
|
||||
{file = "urllib3-1.26.7.tar.gz", hash = "sha256:4987c65554f7a2dbf30c18fd48778ef124af6fab771a377103da0585e2336ece"},
|
||||
]
|
||||
17
pyproject.toml
Normal file
17
pyproject.toml
Normal file
@@ -0,0 +1,17 @@
|
||||
[tool.poetry]
|
||||
name = "auguri"
|
||||
version = "0.1.0"
|
||||
description = "Auguri personalizzati da Maccio in persona proprio lui"
|
||||
authors = ["Domenico Testa <domenico.testa@gmail.com>"]
|
||||
|
||||
[tool.poetry.dependencies]
|
||||
python = "^3.9"
|
||||
moviepy = "^1.0.3"
|
||||
|
||||
[tool.poetry.dev-dependencies]
|
||||
pytest = "^6.2.5"
|
||||
black = {version = "^21.10b0", allow-prereleases = true}
|
||||
|
||||
[build-system]
|
||||
requires = ["poetry-core>=1.0.0"]
|
||||
build-backend = "poetry.core.masonry.api"
|
||||
Reference in New Issue
Block a user