factordb-python
factordb-python copied to clipboard
FactorDB client library with Python
Could you add an interface to submit a number and its factors? There is a blockchain ([FACT0RN](https://fact0rn.io/)) that uses integer factorization as its proof of work and it would be...
closes #12 Please also note there is: https://github.com/RsaCtfTool/RsaCtfTool/blob/master/lib/fdb.py I did not use or reference this, because its license might not be compatible with the MIT license of this project. And...
FactorDB can provide status for each of the factors, however I do not see how this can be accessed by factordb-python besides just additionally trying to "factor" each of the...
While the factors of `2**(2**20)-1` are present in http://factordb.com/index.php?query=2%5E%282%5E20%29-1 `factordb-python` is unable to retrieve them. `.connect()` returns .
from factordb.factordb import factordb f = factordb() f.connect(16) factors = f.get_factor_list() print(factors) Error: ImportError cannot import name 'factordb' from 'factordb.factordb' (C:\Users\TorSilver\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\LocalCache\local-packages\Python311\site-packages\factordb\factordb.py) File "C:\Users\TorSilver\Desktop\factorDBTEST.py", line 1, in from factordb.factordb import factordb...