-
파이썬에서 UUID(GUID) 를 생성하는 방법.
import uuid print(uuid.uuid1()) print(uuid.uuid3(uuid.NAMESPACE_URL, "testname1")) print(uuid.uuid4()) print(uuid.uuid5(uuid.NAMESPACE_URL, "testname2"))
uuid.uuid1(node=None, clock_seq=None)
-호스트ID, 시퀀스, 현재시간을 기준으로 uuid를 생성.uuid.uuid3(namespace, name)
-네임 스페이스 UUID와 이름의 MD5 해시에서 UUID를 생성.
uuid.uuid4()
-랜덤 UUID를 생성.uuid.uuid5(namespace, name)
-네임 스페이스 UUID와 이름의 SHA-1 해시에서 UUID를 생성.'Python' 카테고리의 다른 글
PyGame 소리 sound file 재생(wav, mp3 등) (0) 2023.08.17 오류해결 - module compiled against API version 0xf but this version of numpy is 0xd (0) 2023.08.13 Python - dict() for문 key value 처리 (0) 2023.07.13 파이썬 파일 경로 슬러쉬 (0) 2023.07.12 Python Streamlit 시각화(웹서비스) (0) 2023.02.05 Python Re 정규식 예제1 (0) 2023.01.15 Python bs4.BeautifulSoup (0) 2022.12.16 Python Requests (0) 2022.12.16