python으로 GUID 만들기

조회수 4305회

발생하는 문제 및 실행환경

모든 플랫폼에서 동작하는 를 짜는 방법이 있을까요?

윈도우에서는 ActivePython을 쓰는 걸로 알고있는데 저는 리눅스 유닉스 그런거 상관없이 다 동작하는 코드가 필요합니다.

1 답변

  • 좋아요

    0

    싫어요
    채택 취소하기

    python 2.5이상부터 uuid 모듈을 표준으로 인정했습니다.

    python3을 기준으로 해석해보면 대략

    1. uuid.uuid1(node=None, clock_seq=None)

    Generate a UUID from a host ID, sequence number, and the current time. If node is not given, getnode() is used to obtain the hardware address. If clock_seq is given, it is used as the sequence number; otherwise a random 14-bit sequence number is chosen.

    host ID, sequence number, 현재 시간을 기준으로 UUID를 생성합니다. node가 주어지지 않을 경우에는 getnode()로 하드웨어의 주소를 얻습니다. clock_seq가 주어진 경우 clock_seq를 sequence number로 쓰고 그렇지 않은 경우는 랜덤 14-bit을 만들어냅니다

    2. uuid.uuid3(namespace, name)

    Generate a UUID based on the MD5 hash of a namespace identifier (which is a UUID) and a name (which is a string).

    namespace 식별자의 MD5와 name을 기준으로 UUID를 생성합니다.

    3. uuid.uuid4()

    Generate a random UUID.

    랜덤 UUID를 생성합니다

    4. uuid.uuid5(namespace, name)

    Generate a UUID based on the SHA-1 hash of a namespace identifier (which is a UUID) and a name (which is a string).

    namespace 식별자의 SHA-1 해시와 name을 기준으로 UUID를 생성합니다.

    사용 예 :

    >>> import uuid
    >>> uuid.uuid4()
    UUID('5361a11b-615c-42bf-9bdb-e2c3790ada14')
    

답변을 하려면 로그인이 필요합니다.

프로그래머스 커뮤니티는 개발자들을 위한 Q&A 서비스입니다. 로그인해야 답변을 작성하실 수 있습니다.

(ಠ_ಠ)
(ಠ‿ಠ)