File size: 665 Bytes
b3f93c0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2e08dfb
 
b3f93c0
 
 
9d881ca
 
b3f93c0
 
 
 
 
06aa1cd
b3f93c0
06aa1cd
a835810
06aa1cd
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
from pydantic import BaseModel
from typing import Optional
from typing import List
import time

class Lead_Labels (BaseModel):
    company: str
    team: List[str]
    amount: int
    duration: str
    capacity: str

entity_labels = [
    "team",
    "developer",
    "technology",
    "tool",
    "amount",
    "duration",
    "capacity",
    "company",
    "currency"
]

def set_start () -> time:
    return time.time()

def audit_elapsedtime(function: str, start: time):
    end = time.time()
    elapsedtime = end-start
    print("------------------")
    print(f"[{function}] Elapsed time: {elapsedtime}")
    print("------------------")
    return elapsedtime