Hello. Faced such a problem: after installing the psycopg2 module, PyCharm does not want to show hints (autocomplete) when writing code for this module. For the rest of the modules, everything works fine.
For example, I try to get the cursor to the database:
import psycopg2 as db con = db.connect(con_string) cur = con.cur (пусто при нажатии Ctrl + Space) If anyone has encountered such a problem and solved it, please give advice.