Psycopg is a PostgreSQL adapter for Python programming language. It implements PEP 249 with many extensions.

learn more… | top users | synonyms

0
votes
0answers
11 views

ImportError: No module named psycopg2 on heroku

Here is a piece of my python code import psycopg2 Its showing error ImportError: No module named psycopg2 when deployed on heroku. And here is my requirements.txt Flask==0.9 Jinja2==2.7 ...
0
votes
0answers
7 views

INSERT with web.py

I started a new database named GREEN.db with one TABLE defined as followed: CREATE TABLE articles( "articleID" serial NOT NULL, "articleTitle" character ...
0
votes
0answers
22 views

Django slowdown - thousands of unused datababase calls

I have a weird issue with a database consisting of about 27,000 items in the main table, and ~400,000 items in a many-to-many linking those items. The database is a Postgresql, running from Psycopg2, ...
-1
votes
0answers
15 views

psycopg2.OperationalError: FATAL: role “david” does not exist but the role does exist

I installed PostgreSQL on Ubuntu 64bit OS. Then, I created a database called 'l2s' and created a user called 'david' with password 'password'. I wrote a python program to using psycopg2 to connect to ...
0
votes
1answer
16 views

Can't install psycopg2

I'm trying to install psycopg2 so I can use postgresQL in python and Django. I have run into multiple errors in the last few hours trying to install it, and my latest one I can't seem to solve. When I ...
0
votes
1answer
28 views

Deployment issues of Psycopg2 Python App

I have created an application in Python that is tested and runs perfectly on my computer (Mac OSX 10.8.3 Python2.7.3 Postgresql9.2.4 Psycopg2-2.5). The app is compiled using py2app, and I can see that ...
-1
votes
1answer
19 views

python psycopg2 ConnectionError: Transaction failed, failure was 'int' object does not support indexing

I am using, python psycopg2 to connect to PostGreSQL and fetching some data on based on timestamp. create_date is defined as below: create_date | timestamp without time zone | not null My query is ...
0
votes
1answer
22 views

“ProgrammingError: syntax error at or near” when executing query in python using psycopg2

I am running Python v 2.7 and psycopg2 v 2.5 I have a postgresql database function that returns a sql query as a text field. I am using the following code to call the function and extract the query ...
2
votes
1answer
21 views

Python eTree Parser isn't appending an element

Look at my log and see how it says that the row I'm getting back from Postgres has been turned from a string into an element (and I print the string, print the element, print the isElement boolean!) ...
0
votes
1answer
24 views

Replacing an element with HTMLParser in python and using pscyopg2

In my database I have values like this: <p class="description">Text here <a href=#>Text here</a> </p> And I need that whole <p> object to replace the same <p ...
0
votes
0answers
20 views

Error installing psycopg2: unrecognized option `-Wdeclaration-after-statement'

I'm on a shared hosting provider, trying to install psycopg2 in order to get Django up and running with psql. I ran $ pip install psycopg2 and got following error gcc -pthread -fno-strict-aliasing ...
0
votes
1answer
33 views

How to write/overwrite a file with HTMLParser

I need to create some files from a template. I'm using psycopg2 to fetch from a database. Then I loop through. Now I need to write to file. Thanks! import sys from HTMLParser import HTMLParser from ...
1
vote
1answer
30 views

Multiple insert statements failing postgresql / psycopg2

I'm using scrapy to scrape a webpage which I then add to a postgres database. The first INSERT statements works fine, and I can select the items from the database. The second one seems to insert data ...
0
votes
3answers
93 views

Psycopg2 image not found

Trying to setup postgres with the postgres mac app and hit this error, which I haven't been able to solve. Any thoughts? ImportError: ...
0
votes
2answers
35 views

psycopg2 psycopg2.InternalError dependent objects

I am using peewee on heroku, but according to peewee docs, dropping related tables has to be done in code. Question is how? I have the following models class WebPage(Model): title = CharField() ...
1
vote
1answer
53 views

Should unit tests run faster with a gevent patched codebase?

We’re investigating gevent as a drop in performance enhancer for our Flask API. There is a lot of communication over psycopg2 and Redis in our codebase. We thought we’d try running the test suite with ...
0
votes
1answer
70 views

Problems in connecting to MusicBrainz database using psycopg2

I am trying to connect to the MusicBrainz database using the psycopg2 python's module. I have followed the instructions presented on http://musicbrainz.org/doc/MusicBrainz_Server/Setup, but I cannot ...
1
vote
1answer
60 views

Python/PostgreSQL - check if server is running

I've just started using the psycopg2 module to access a local PostgreSQL server and I'll like a way to progammatically check if the server is already started so my program can handle the error when I ...
0
votes
0answers
98 views

postgresql idle connections with django (and gunicorn+gevent)

My stack incudes django (1.4.3), psycopg2 (0.0.3), and postgres (9.1). Additionally, I am using psycogreen.gevent.patch_psycopg because I am serving up my django with gunicorn and gevent. ...
0
votes
1answer
29 views

Error pip install psycopg2 on osx

I'm attempting to install psycopg2 in a virtualenv via pip install psycopg2, and receive the following error: https://gist.github.com/pjhoberman/5347708. I attempted the solution here, but received ...
0
votes
1answer
69 views

psycopg2 with flask, when to close connection

I'm trying to build a simple web application that will be querying a postgres db and inserting/deleting data as well. since it is a very simple application, im not using an orm layer like sqlalchemy. ...
1
vote
2answers
331 views

Django setting : psycopg2.OperationalError: FATAL: Peer authentication failed for user “indivo”

I am getting problem in Django project setting with POSTGRESQL. Here is my setting.py database setting DATABASES = { 'default':{ 'ENGINE':'django.db.backends.postgresql_psycopg2', # ...
0
votes
2answers
74 views

Remove all data from table but last N entries

I'm using psycopg2 with Python. I'd like to periodically flush data from my db. I've set up a task with Timer for this. I had asked this question before, but using the answer listed there freezes ...
0
votes
1answer
35 views

find data that corresponds to newest entry

I'm working on a db via psycopg2, and I want to find the 'newest' entry in the database. It doesn't seem that I should have to do any sorting to obtain this, as I literally just want the newest. The ...
0
votes
1answer
41 views

python PostgreSQL unit test not completing execution

I have unit test as class TestUser(TestCase): def setUp(self): print 'setting db up' db.create_all() def test_new_user(self): user = User('test_new_user@none.com', ...
0
votes
2answers
66 views

psql - how to flush database content without dropping table

I have a table in my db called 'mytable'. I'd like to clear it so that I can continue to collect and analyze 'fresh data' from it. Something like conn = psycopg2.connect(database = mydb_name, host ...
1
vote
1answer
61 views

converting types returned from fetchall()

I'm using psycopg2, and I run the following code: conn = psycopg2.connect(database = mydb_name, host = mydb_server, user = mydb_uname, password = mydb_pwd) cur = conn.cursor() cur.execute("SELECT ...
2
votes
2answers
30 views

Ident connection fails via psycopg2 but works via command line

When I try to connect to my postgres server via psycopg2 with a bit of code like this (running python as "username"): psycopg2.connect(database="apis_master") I get an error ...
2
votes
1answer
113 views

Setting application_name on Postgres/SQLAlchemy

Looking at the output of select * from pg_stat_activity;, I see a column called application_name, described here. I see psql sets this value correctly (to psql...), but my application code ...
1
vote
1answer
88 views

Django Postgres psycopg2 wrong script generated - quoting of table names

Django 1.5 PostgreSQL 9.2 psycopg2 2.4.6 I'm using extra feature from QuerySet API to be able to employ functions from cube extension for Postgres - I know that extra is not very good for portability ...
1
vote
1answer
118 views

sqlalchemy.exc.ArgumentError: Can't load plugin: sqlalchemy.dialects:driver

I am trying to run alembic migration and when I run alembic revision --autogenerate -m "Added initial tables" It fails saying sqlalchemy.exc.ArgumentError: Can't load plugin: ...
1
vote
1answer
66 views

Connect to an URI in postgres

I'm guessing this is a pretty basic question, but I can't figure out why: import psycopg2 psycopg2.connect("postgresql://postgres:postgres@localhost/postgres") Is giving the following error: ...
1
vote
2answers
267 views

Copying data from S3 to AWS redshift using python and psycopg2

I'm having issues executing the copy command to load data from S3 to Amazon's Redshift from python. I have the following copy command: copy moves from ...
0
votes
1answer
66 views

why does easy_install install 64x when I ask for 32x

Is it trying to be "helpful"? I'm running win 8 64x. I need to install psycopg 32x. I use the command as noted in the heroku guide easy_install ...
0
votes
1answer
60 views

How insert encypted value with DES into Postgresql DB?

I am using pyDes and psycopg2 Python library for save encrypted password into a PostgreSql database. For a given password, the corresponding DES value is not printable. If i try to execute the ...
0
votes
1answer
33 views

psycopg2 enum types

I have the following type in postgres 9.2: CREATE TYPE profile_categories AS ENUM ( 'particulier', 'professionel', 'assureur', 'manager' ); So I want to register it with : ...
0
votes
1answer
65 views

Can a pickled object be reliably encoded as Postgres string (to be sent with NOTIFY)?

Postgres NOTIFY supports only string literals (no binary data). I've managed to use it with a pickled object in a following way: message = cPickle.dumps(objectFoo) cursor = connection.cursor() # this ...
0
votes
0answers
33 views

Python+mysql: equivalent for Postgresql's copy_from?

The psycopg2 cursor copy_from function doesn't work with MySQLdb. I there an equivalent for MySQLdb? Code sample: for table in buffers: buf = buffers[table] buf.seek(0) ...
0
votes
1answer
84 views

Socket connection to postgres is not close when network down or hard boot the server

I am creating connection with postgresql using sqlalchemy and executing simple command. >>> from sqlalchemy import create_engine >>> c = ...
0
votes
2answers
96 views

psycopg2 install for two versions of python

I have a fresh debian install with : + default 2.6.6 python installed + also installed python3 at /opt/python3/ + installed psycopg2 Problem : >>> import psycopg2 works with standard python ...
0
votes
0answers
49 views

psycopg2 difficuty in formatting an array of user defined types in calling postgres stored function [duplicate]

I am using postgres 9.1 and python 2.7 with psycopg2. I have a user-defined type, as CREATE TYPE RegCompT AS (short_name VARCHAR, description VARCHAR, currency CHAR(3), NumId INTEGER); CREATE OR ...
0
votes
1answer
135 views

psycopg2 import error due to failure to load libraries

I have tried many ways of installing psycopg2 after having installed PostgreSQL using the one-click installer, but anyway I try confronts me with the same import error in python: ImportError: ...
1
vote
1answer
189 views

Django on Mac OS X: OperationalError 'role “_www” does not exist'. PostgreSQL or Psycopg issue?

I'm new to web development with Django, so please bear with me and thank you in advance for your help. I've been using Django's own web server and SQLite while learning. However, now I'm struggling ...
1
vote
0answers
32 views

psycopg2 DB Exception: UnicodeError

DatabaseErrors in django with psycopg2 are sometimes non-ascii byte strings: DatabaseError('FEHLER: Wert zu lang f\xc3\xbcr Typ character varying(10)\n',) This results in UnicodeErrors..... All ...
1
vote
0answers
114 views

Python SQLAlchemy memory leak on Linux

I wrote a script that iterates through a large database table. (~150K rows.) To avoid using too much memory I'm using this windowed_query method. My script goes something like this: query = ...
1
vote
1answer
115 views

How to generate a new table in PostgreSQL by iterating over an existing table of OSM data

I have a PostgreSQL database made up of the OSM map data for London. I imported this data using osm2psql. I would like to: Iterate over every line in the planet_osm_line table Break up the lines ...
1
vote
2answers
176 views

Psycopg missing module in Django

I have pip installed psycopg2, but when I try to runserver or syncdb in my Django project, it raises an error saying there is "no module named _psycopg". EDIT: the "syncdb" command now raises: ...
2
votes
1answer
39 views

Multi-threaded psycopg2 and python not returning results

I have a program where the parent process has a DB connection, and each child process has its own DB connection (created in the constructor), using python 2.6 and psycopg2. Every 5 seconds, the ...
0
votes
0answers
87 views

Using postgresql for Django under win7?

I am currently playing with django and want to use as my database postgresql: and these are my configurations in my settings file: DATABASES = { 'default': { 'ENGINE': ...
0
votes
1answer
163 views

Connecting to postgresql gives password authentication failed

0 Hi, i'm new to django. i'm building a django project on server Webfaction. i got an error when i do "python manage.py sync": > Traceback (most recent call last): File "manage.py", line 10, in ...

1 2 3 4 5 8