Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1

2

3

4

5

6

7

8

"""Urls are hashed with a sha256 string""" 

import hashlib 

 

 

def generate_hash(url_string): 

    m = hashlib.sha256() 

    m.update(url_string) 

    return m.hexdigest()[:14]