1
I am currently starting a web system project using Python 3.5 and the Django 1.9.1 framework, aiming to integrate them with a database Postgresql 9.5, all installed on a Windows 10 x64 OS machine.
Python and Django installed well using "Pip", but I couldn’t find the Django Postgresql adapter for Python 3.5 . Officially is maintained an adapter called win-psycopg (which in its view only supports up to Python version 3.4), derived from psycopg2.
I wonder if there is any other Django DB connection driver option on Windows for Postgresql? or if it is possible to force this adapter from version 3.4 to version 3.5?
Postgres libraries are installed in python and postgres DBMS is running on the machine or on some server?
– Brumazzi DB
everything is running local on my machine
– lorduakiti
have you ever considered the idea of using ctypes and Hibernate? I believe it is not the most viable means, but can solve your problem
– Brumazzi DB