Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1016255
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T10:31:22+00:00 2026-05-16T10:31:22+00:00

I need to generate unique 64 bits integers from Python. I’ve checked out the

  • 0

I need to generate unique 64 bits integers from Python. I’ve checked out the UUID module. But the UUID it generates are 128 bits integers. So that wouldn’t work.

Do you know of any way to generate 64 bits unique integers within Python? Thanks.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T10:31:22+00:00Added an answer on May 16, 2026 at 10:31 am

    just mask the 128bit int

    >>> import uuid
    >>> uuid.uuid4().int & (1<<64)-1
    9518405196747027403L
    >>> uuid.uuid4().int & (1<<64)-1
    12558137269921983654L
    

    These are more or less random, so you have a tiny chance of a collision

    Perhaps the first 64 bits of uuid1 is safer to use

    >>> uuid.uuid1().int>>64
    9392468011745350111L
    >>> uuid.uuid1().int>>64
    9407757923520418271L
    >>> uuid.uuid1().int>>64
    9418928317413528031L
    

    These are largely based on the clock, so much less random but the uniqueness is better

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to generate 8 random integers, but they need to be unique, aka
I need to generate a couple of objects from lists in Javascript. In Python,
I need to generate unique ID's for my application. When I used (UUID.randomUUID()).toString() ,
I need to generate an unique number of 32 bits in Java. I need
I need to generate a set of unique (no duplicate) integers, and between 0
I need to generate a unique code from a single PC, my software will
I need to generate Entities/Object from selected tables - not all. Is this possible
I need to generate a unique string that is 30 characters in length. At
I want to generate unique file paths in Objective-C. I looked at NSTemporaryDirectory() but
I use this class (taken from a blog tutorial) to generate unique keys to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.