Skip to content

HosseinSadeghi-dev/User-management

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

User-management

Used Packages

python numpy opencv sqlite3

for python >= 3.9 you should do following process:

in primes.py you have to change the content because in python 3.9 GCD belongs to math instead of fractions

primes.py-dir : C:\python39\Lib\site-packages\basehash\primes.py

---------- OLD ----------

def gcd(*n): from fractions import gcd return abs(reduce(gcd, n))

---------- NEW ----------

def gcd(*n): from math import gcd return abs(reduce(gcd, n))

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages