peewee is a small ORM written in Python, providing a lightweight querying interface over SQL.
0
votes
0answers
14 views
Getting peewee to work on elastic beanstalk
I'm trying to install the peewee package on an elastic beanstalk instance to control a bottle application. I think the problem is with the MySQL-python dependency, but peewee doesn't load either. My ...
0
votes
1answer
43 views
Accessing remote MySQL database with peewee
I'm trying to connect to a MySQL database on Amazon's RDS using peewee and I can't get it to work. I'm new to databases so I'm probably doing something stupid, but this is what I'm trying:
import ...
0
votes
1answer
54 views
SQLite3 OperationalError: Table XYZ has no column named ABC
I am new to peewee, so please forgive me if this is a stupid question. I have searched on Google and in the peewee cookbook, but found no solution so far.
So, I have the following models to four of ...
0
votes
1answer
70 views
Inserting into MySQL table using peewee raises “unknown column” exception
I have the following script:
from peewee import *
db = MySQLDatabase('database', user='root')
class BaseModel(Model):
class Meta:
database = db
class Locations(BaseModel):
...
0
votes
2answers
74 views
Python web.py peewee and heroku
I have a small all based on web.py and peewee. Deployment to heroku goes fine and I have a DB running, but how do I configure peewee to use the heroku postgress db?
The peewee documentation doesn't ...
0
votes
1answer
65 views
Passing a list from peewee to jinja2 in flask
I'm trying to write a Flask application that queries my database (using peewee), and sends the results into Jinja2 for rendering. My view looks like this:
@application.route('/maindash')
def ...
0
votes
1answer
42 views
Custom sqlite database for unit tests for code using peewee ORM
I am trying to implement a many-to-many scenario using peewee python ORM and I'd like some unit tests. Peewee tutorial is great but it assumes that database is defined at module level then all models ...
0
votes
1answer
54 views
Python orm datetime issue
I have a Peewee database model Products in a very big database with a datetime field.
when i want to select articles with (inserted time bigger than now()) the query hangs forever.
class ...
1
vote
1answer
66 views
peewee: object has no attribute _meta
I am working on Windows with Python 3.3 32-bit. I have installed peewee and want to try some of its features. I have started with Peewee Quickstart ...
2
votes
2answers
87 views
Python Peewee resets primary key
In some situations, the Python module Peewee will reset the (non-integer) primary key when saving an object. I have constructed this example to clarify:
#!/usr/bin/python
from peewee import *
import ...
2
votes
2answers
65 views
Better way to control flow around database query
In my program I need to read a very large table (it exceeds memory storage) and have myself writing the following construct to read from the table and do some work. While I know it's very possible to ...
0
votes
0answers
61 views
peewee installer for windows
I'm trying to install peewee on windows machine.
Is there an installer for windows?
or installation instructions for windows?
I'm new to Python/peewee and cant seem to find any.
0
votes
1answer
86 views
Peewee - query ['str' in item]
I know I'm doing this the wrong way - how do I do this without a list comprehension but with a query in peewee. I would like to get a query to see if a search term is "in" the objects parameter.
...
0
votes
0answers
94 views
peewee ForeignKey error while using from a package
Forgive me if this is dumb, but I'm sort of new to python...
This is for MySQL...
I'm getting a self.rel_model.DoesNotExist error from the python shell while testing out the ForeignKey linking.
I've ...
0
votes
1answer
99 views
How can I create a model of a table with an enum in peewee 2?
I'm trying to create a model to describe a table with an enum field in peewee.
I'm seeing that EnumField was removed from the peewee.py file before the 2.0 version, and I can't find anything in the ...
1
vote
1answer
173 views
Python: Dumping Database Data with Peewee
Background
I am looking for a way to dump the results of MySQL queries made with Python & Peewee to an excel file, including database column headers. I'd like the exported content to be laid out ...
0
votes
1answer
460 views
connecting mysql with peewee and some issue accessing a table
I'm doing a web development for the first time in my life in linux and it will be later ported onto an embedded system once it works on linux machine.
I have a table named Login in mydb database with ...
2
votes
1answer
137 views
Peewee ORM - annotate count on many-to-many relation even if count is 0
Let's try to explain my problem using users and tweets.
These are my models (from Peewee docs):
class User(BaseModel):
username = CharField()
class Tweet(BaseModel):
user = ...
0
votes
1answer
45 views
@commit_on_success and save()
I'm questioning myself regarding the new peewee's feature: commit_on_success decorator.
How is determined if the function is "success"?
If I use this decorator, do I need to call save() on my ...
2
votes
1answer
209 views
PeeWee + SQLite3 on Google App Engine
I'm trying to use Google App Engine to deploy a BootlePy + PeeWee web application.
I use PeeWee with SQLite.
Here is PeeWee's source code:
try:
import sqlite3
except ImportError:
sqlite3 = ...
0
votes
0answers
664 views
Peewee vs SQLAlcheymy for Flask project [closed]
Hi guys I want to start a new Flask project and I am trying to choose an ORM.
I want it to be really fast so dirty trackign and complex joins are out of questions anyway but I am also interested in ...
2
votes
1answer
371 views
flask peewee REST api authentication to limit GET
I am using flask-peewee to build a new project. Also I am using the REST interface that is included in flask peewee. I followed the example here ...
3
votes
1answer
118 views
Can an operator be overloaded as a class method in python?
In order to make an extension really clean looking I'm trying to implement the ">>" operator in python as a class method. I'm not sure how to go about it though. I don't want to have to create an ...
0
votes
1answer
210 views
Is it possible to limit choices in SelectModelField in wtf-peewee
I use flask with flask-peewee and wtfpeewee.
So, I have models like that:
class Category(Model):
name = CharField()
user = ForeignKeyField(User, null=True)
class Record(Model):
value = ...
1
vote
3answers
148 views
min python version for peewee
Does anyone know the minimum version of python required for peewee? I haven't been able to find it anywhere.
4
votes
3answers
415 views
Searching for items in a many-to-many relationship
I'm currently writing an application that allows one to store images, and then tag these images. I'm using Python and the Peewee ORM (http://charlesleifer.com/docs/peewee/), which is very similar to ...
3
votes
2answers
309 views
Python: Conditional variables based on whether nosetest is running
I'm running nosetests which have a setup function that needs to load a different database than the production database. The ORM I'm using is peewee which requires that the database for a model is set ...

