I hereby claim:
- I am wiseaidev on github.
- I am wiseai (https://keybase.io/wiseai) on keybase.
- I have a public key whose fingerprint is 6C63 E3A7 C1B9 E36D F2DE 91C9 FC86 41B7 1E19 147B
To claim this, I am signing this object:
import argparse | |
import json | |
import os | |
import os.path | |
import shutil | |
import sys | |
from jupyter_client.kernelspec import (KernelSpec, KernelSpecManager, | |
NoSuchKernel) |
from fastapi import FastAPI | |
from typing import List, Optional | |
from pydantic import BaseModel | |
app = FastAPI() | |
class Node(BaseModel): | |
value: Optional[int] | |
left: Optional["Node"] = None |
from fastapi import ( | |
FastAPI, | |
) | |
from fastapi.openapi.utils import ( | |
get_openapi, | |
) | |
from typing import ( | |
Any, | |
) | |
app = FastAPI( |
from fastapi import FastAPI | |
from langdetect import detect | |
from gtts import gTTS | |
app = FastAPI() | |
translations = { | |
"Vortian": { | |
"A": "Z", | |
"B": "Y", |
102 | |
1755 | |
2075 | |
6543 | |
12548 | |
496080199 | |
0age | |
0mkara | |
0x5e5e | |
0xKiwi |
I hereby claim:
To claim this, I am signing this object:
from typing import Union, TypeVar | |
E = TypeVar("E", bound=Union[int, float]) | |
def recursive_binary_search(array: list[E], left: E, right: E, target: E) -> int: | |
if array != sorted(array): | |
array.sort() | |
if left is None: | |
left = 0 |
import random | |
import itertools | |
import operator | |
import functools | |
import collections | |
def extend(list1_list2): | |
list1, list2 = list1_list2 | |
merged_list = [] | |
merged_list.extend(list1) |
from concurrent.futures import ThreadPoolExecutor | |
from time import sleep | |
from typing import List, Union | |
def sleep_sort(input_list: List[Union[int, float]]) -> List[Union[int, float]]: | |
sorted_list: List[Union[int, float]] = [] | |
def inner(item: Union[int, float], sorted_list: List[Union[int, float]]) -> None: | |
sleep(item) | |
sorted_list.append(item) |
''' usage : | |
python3 Server.py | |
''' | |
import numpy as np | |
import cv2 | |
# Import the socket library | |
import socket | |
import pickle | |
import struct | |
from Recognize import * |