I've setup my config with credentials and the attributes indicated on your page. I'm running python 3.9.6 and getting the following error on launch
% python3 -m okcupidon run
A new database will be created in ...
Traceback (most recent call last):
File "/usr/local/Cellar/python@3.9/3.9.6/Frameworks/Python.framework/Versions/3.9/lib/python3.9/runpy.py", line 197, in _run_module_as_main
return _run_code(code, main_globals, None,
File "/usr/local/Cellar/python@3.9/3.9.6/Frameworks/Python.framework/Versions/3.9/lib/python3.9/runpy.py", line 87, in _run_code
exec(code, run_globals)
File "/usr/local/lib/python3.9/site-packages/okcupidon/main.py", line 207, in
main()
File "/usr/local/lib/python3.9/site-packages/okcupidon/main.py", line 122, in main
okc_db = DataBase(outfile)
File "/usr/local/lib/python3.9/site-packages/okcupidon/ourdatabase.py", line 34, in init
self.__c.executescript(create_database_script)
sqlite3.OperationalError: near "max": syntax error
I've setup my config with credentials and the attributes indicated on your page. I'm running python 3.9.6 and getting the following error on launch
% python3 -m okcupidon run
main()
File "/usr/local/lib/python3.9/site-packages/okcupidon/main.py", line 122, in main
okc_db = DataBase(outfile)
File "/usr/local/lib/python3.9/site-packages/okcupidon/ourdatabase.py", line 34, in init
self.__c.executescript(create_database_script)
sqlite3.OperationalError: near "max": syntax error
A new database will be created in ... Traceback (most recent call last): File "/usr/local/Cellar/python@3.9/3.9.6/Frameworks/Python.framework/Versions/3.9/lib/python3.9/runpy.py", line 197, in _run_module_as_main return _run_code(code, main_globals, None, File "/usr/local/Cellar/python@3.9/3.9.6/Frameworks/Python.framework/Versions/3.9/lib/python3.9/runpy.py", line 87, in _run_code exec(code, run_globals) File "/usr/local/lib/python3.9/site-packages/okcupidon/main.py", line 207, in