How to generate a fixed-length hash based on current date and time in Python?

后端 未结 5 608
旧巷少年郎
旧巷少年郎 2021-02-02 17:46

I want to generate a fixed-length (say 10 characters) hash based on current date & time. This hash will be append to names of the uploaded files from my users. How can I do

5条回答
  •  心在旅途
    2021-02-02 18:12

    I think my comment is a reasonable answer so I am going to post it. The code uses the python time() function to get the number of seconds since the unix epoch:

    import time
    import datetime
    ts = int(time.time())  # this removes the decimals
    
    # convert the timestamp to a datetime object if you want to extract the date
    d = datetime.datetime.fromtimestamp(ts)
    

    The time stamp is currently a 10 digit integer that can easily be converted back to a datetime object for other uses. If you want to further shrink the length of the timestamp you could encode the number in hexadecimal or some other format. ie.

    hex(int(time.time()))
    

    This reduces the length to 8 characters if you remove the 0x prefix

    EDIT:

    In your comment you specified that you don't want people to figure out the original date so I would suggest doing something like:

    hex(int(time.time() + 12345))[2:]   #The [2:] removes the 0x prefix
    

    Just chose a number and remember to subtract it when you are trying to extract the timestamp. Without knowing this number the user would have a very difficult time inferring the real date from your code.

    int(stamp,16) - 12345  
    

提交回复
热议问题