Tagged Questions
0
votes
0answers
43 views
Sqlalchemy based alternatve to Django [closed]
Hi I have been using Django to a reasonably advanced level over the last two years. I think it is great for most things, but I notice that the ORM is somewhat limited for some of the tasks I want to ...
0
votes
2answers
48 views
UnicodeEncodeError:'latin-1' codec can't encode characters in position 0-1: ordinal not in range(256)
i am a newer in python.Today when I write some search function I met an error.well, I use sqlalchemy orm to do that, in my function,I input a chinese word as the key word.The html page give me an ...
0
votes
1answer
67 views
A django like unique together in turbogears/sqlalchemy
This question essentially two parts.
1. I have a situation where I require things to be unique together i.e the elements in db need to be unique together with each other.
Lets say we have a model ...
0
votes
0answers
284 views
django vs. tornado + sqlalchemy [closed]
I'm about to embark on a major web application refactoring. Currently I'm using php + mysql for most of my public facing website and node.js + mongo for my data aggregation/statistics collection and ...
0
votes
1answer
30 views
Django equivalent of SqlAlchemy's literal_column
Trying to port some SqlAlchemy to Django and I've got this tricky little bit:
version = Column(
BIGINT,
default=literal_column(
'UNIX_TIMESTAMP() * 1000000 + ...
2
votes
1answer
82 views
What's equivalent to Django's auto_now, auto_now_add in SQLAlchemy?
In Django, we can use these 2 parameters when making a date column:
DateField.auto_now Automatically set the field to now every time the
object is saved. Useful for “last-modified” timestamps. ...
0
votes
1answer
113 views
SQLAlchemy conversion of Django annotate
I have the following annotation in a Django model manager I'd like to convert to a SQLAlchemy ORM query:
annotations = {
'review_count' : Count("cookbookreview", distinct=True),
...
1
vote
0answers
78 views
SQLAlchemy Django: How can I import external Table declarations into the same Metadata?
I am using Django in combination with SQLAlchemy. I have the problem of putting all the Table declarations into the same Metadata.
I have several modules in different packages with table declarations ...
0
votes
1answer
109 views
SQLAlchemy query not retrieving committed data in alternate session
I have a problem where I insert a database item using a SQLAlchemy / Tastypie REST interface, but the item is missing when subsequently get the list of items. It shows up only after I get the list of ...
1
vote
1answer
256 views
Unique if not null SQLAlchemy and Django
Given this simple table written in SQLAlchemy and Django models.py, how would I set UPC to be unique if not null. UPC won't be available for all items, but if is it should be unique.
class ...
0
votes
1answer
112 views
How to use query.filter and .filter_by in SQLAlchemy?
With Django it is possible to find models using the filter method with keyword-arguments like so:
MyModel.objects.filter(serialNo_gt=10)
giving all models with a serial number greater than 10.
Is ...
3
votes
1answer
182 views
Does Django ORM have an equivalent to SQLAlchemy's Hybrid Attribute?
In SQLAlchemy, a hybrid attribute is either a property or method applied to an ORM-mapped class,
class Interval(Base):
__tablename__ = 'interval'
id = Column(Integer, primary_key=True)
...
0
votes
1answer
508 views
SQL Alchemy performance if used only for raw sql?
I intend to use very simple raw SQL in a Django project.
example:
SELECT name,doc_id,doc_content,creation_date from doc_table where uid = 'xxx' limit 1 ;
Primary requirements:
Ease of doing SQL ...
2
votes
1answer
703 views
Django - (OperationalError) FATAL: Ident authentication failed for user “username”
I've written a simple sqlalchemy-django model, according to this manual: http://lethain.com/replacing-django-s-orm-with-sqlalchemy/, which worked for me pretty well.
My Django is connected to a remote ...
0
votes
1answer
1k views
django error: __init__() takes exactly 1 argument (2 given)
I've written a sqlalchemy model called 'library':
class Library(Base):
__tablename__ = 'library'
id = Column(Integer, primary_key=True)
details = Column(String)
def __init__(self, ...
0
votes
2answers
95 views
In SQLAlchemy, how to input a list and get eligible items in the table?
Table A has two columns: ID and name
I want to input 3 ID and get 3 name, my way looks like
ID_list = [1,3,4]
DBSession.query(TableA).filter(or_(TableA.id == input_ID_list[0], TableA.id == ...
0
votes
0answers
82 views
SQLAlchemy and Django - working from a remote server
I'm working on Django locally, for debug reasons, while the database Django uses is located on a remote server. I've managed working with Django ORM on my remote database.
Now, in order to reuse a ...
0
votes
1answer
158 views
Shuffling SQLAlchemy results?
The code in question:
random_items = random.shuffle(Item.query.all())[20:30]
It's in a Flask/SQLAlchemy app.Item is the model.
That's what I'm doing right now and it works but I foresee a ...
0
votes
0answers
134 views
How to test django application with SQLAlchemy ORM and legacy database?
I want to test Django-SQLAlchemy application in django manner. I know I can create fixtures with fixture. In fixture documentation they give an example how to tests Pylons+SQLAlchemy.
With django ...
2
votes
1answer
1k views
Using both SQLAlchemy and Django ORM on the same database
I have two apps that both access the same database. The first has clients connecting via TCP and writes to the db using SQLAlchemy. The second is a more typical webapp using Django. Both have ...
9
votes
2answers
385 views
Is this a valid illustration of the Python web technology stack?
I'm trying to better understand the Python web stack. With so many frameworks and packages, it's a bit confusing, so I whipped up this diagram and did my best placing each component in the most ...
1
vote
1answer
530 views
Django-Celery 2.5.3 BROKER_URL Error 'No such transport: mysql'
i upgraded my celery from 2.4.X to celery-2.5.2, then modified the Broker_URL to be
BROKER_TRANSPORT = "sqlalchemy"
BROKER_URL = "sqla+mysql://root:root@localhost:3306/db"
this config can be ...
2
votes
1answer
317 views
sqlalchemy: stopping a long-running query
I have a seemingly straight-forward situation, but can't find a straight-forward solution.
I'm using sqlalchemy to query postgres. If a client timeout occurs, I'd like to stop/cancel the long ...
2
votes
2answers
322 views
A Python Web Framework that makes it easy to connect and use a Legacy Oracle DB?
I'm looking to get some advice on a web application framework (strong preference for Python, but Ruby is OK too) that I can learn to help me eventually solve a need we have in my organization.
I'd ...
3
votes
2answers
662 views
Django + SQLAlchemy + RESTful API (tastypie?)
I am currently using Django with SQLAlchemy, and would like to implement an (simple to begin with) API for mobile devices.
Am evaluating at different python RESTful API frameworks, particularly ...
0
votes
1answer
194 views
Django/Pyramid debugtoolbar: is it possible to see not only making query time, but also query duration in database?
And if not, how to check? I'm using SQLAlchemy.
Thanks!
4
votes
4answers
2k views
Admin interface for SQLAlchemy?
I've been developing a Django app, however I've recently changed the overall architecture plan. I no longer need a web-framework, just a simple Python script, so I'm changing from using the Django ORM ...
6
votes
2answers
280 views
Is there an SQLAlchemy equivalent of django-evolution?
All I want is to have a workflow somewhat similar to:
Add django_evolution to the INSTALLED_APPS for your project
Run ./manage.py syncdb
Make modifications to the model files in your project
Run ...
2
votes
1answer
340 views
How to make zabbix monitor django apps on an apache server
I have an apache server under Debian that runs several RESTful application written in Python with Django and Piston. These apps use SQLAlchemy to access data from a MySQL server. The server is ...
4
votes
1answer
408 views
SQLAlchemy Query not returning all of large text field
First up, here's a little bit about my environment:
Using MSSMS as my database management tool.
Using Django 1.3
Using SQLAlchemy
I have a text field in the database with no max length. There is ...
0
votes
1answer
469 views
SQLAlchemy EXISTS queryset
I use only django framework with his ORM.
And there is some code:
User.objects.filter(username='test').exists()
that return True or False.
this orm query generate SQL:
SELECT (1) AS "a" FROM ...
6
votes
1answer
593 views
Pyramid equivalent to Django's syncdb command?
I noticed in the Pyramid + SQLAlchemy + URL Dispatch Wiki Tutorial that the database is initialized in the main function when the application is run.
def main(global_config, **settings):
""" This ...
1
vote
2answers
241 views
Equivalent of models.Manager for SqlAlchemy
I'm using SQLAlchemy and I what I liked with Django ORM was the Manager I could implement to override the initial query of an object.
Is something like this exist in SQLAlchemy? I'd like to always ...
6
votes
2answers
3k views
Best way to integrate SqlAlchemy into a Django project
I changed my Django application to use SQLAlchemy, and it works now.
But I'm wondering where I should put these lines:
engine = sqlalchemy.create_engine(settings.DATABASE_URL)
Session = ...
3
votes
2answers
2k views
scoped_session(session_maker()) or plain session_maker() in sqlalchemy?
I am using SQlAlchemy in my web project. What should i use scoped_session(session_maker()) or plain session_maker() and Why ?. Or should i use something else ?
## model.py
from sqlalchemy import *
...
2
votes
1answer
266 views
Sqlalchemy for performing complex queries in Django project
What is the best option to use sqlalchemy for performing complex queries in Django project? I have found tranquil , but it does not look like a project with many users... Any suggestions?
Reason: I ...
1
vote
1answer
406 views
Python django sqlalchemy and formencode
I create a table in database using sqlalchemy and now want to make a form according to the database using django and valid it use formencode. (mention I use Django Web Framework)
The python code is ...
0
votes
2answers
397 views
Python ORM SQLAlchemy and Django usage
I am developing a Flex based dashboard and I am considering SQLAlchemy or Django to interact with the database.
I am new to both these frameworks. I know that Django can create the database with ...
0
votes
1answer
430 views
Generic relation with sqlalchemy as in django contenttypes
I'm trying to make some generic apps using Sql Alchemy, such as tags or rating for any model. But I couldn't find any help in the docs. I really liked what I could do with the django contenttypes ...
1
vote
1answer
2k views
Is Flask + Werkzeug faster than django? [closed]
I dont know whether this question makes sense but seriously is flask faster than django. The reason why i am saying this is that i have deployed one intranet application which is built in Django for a ...
3
votes
1answer
229 views
SQLAlchemy equivalent to Django's x.objects.extra()?
I just learned of django's (model).objects.extra() function, as documented:
http://docs.djangoproject.com/en/1.2/ref/models/querysets/#extra
I'm hoping that there is something similar in sqlalchemy. ...
1
vote
1answer
369 views
SQLAlchemy equivalent to Django's annotate() method
I'm doing a join like this in SQLAlchemy:
items = Item.query\
.outerjoin((ItemInfo, ItemInfo.item_id==Item.id))
items.add_columns(ItemInfo.count)
This causes SQLAlchemy to return tuples:
...
1
vote
1answer
75 views
Where is the best place to associate a 'form display text' with SQLAlchemy mapped property?
In django orm I can use the 'verbose_name' kwarg to set a label that will be displayed in model forms. Now I'm dynamically generating WTForms for each model in a SQLAlchemy mapped backend, but I'm not ...
10
votes
1answer
456 views
QuerySelectField works on one server, breaks on another with same code
I'm in the process of setting up a test installation of my current Python/Django project. Everything works great on my dev server, but we recently set up a new VM for the test and eventual production ...
4
votes
2answers
528 views
django orm versus sqlachemy, are they basically the same thing?
When using django, I believe you can swap out the built-in orm for sqlalchemy (not sure how though?).
Are they both basically the same thing or there is a clear winner between the 2?
1
vote
0answers
333 views
Django - using sqlalchemy with a read-only database
I'm using Django to nicely display stats etc from an Oracle database that I only have/want read access to. Because the database has composite primary keys I'm not using Django's ORM layer and I'm ...
24
votes
2answers
3k views
Does SQLAlchemy have an equivalent of Django's get_or_create?
I want to get an object from the database if it already exists (based on provided parameters) or create it if it does not.
Django's get_or_create does this. Is there an equivalent shortcut in ...
1
vote
2answers
164 views
Using Django's Model API without having to *include* the full Django stack
Currently an application of mine is using SQLAlchemy, but I have been considering the possibility of using Django model API.
Django 1.1.1 is about 3.6 megabytes in size, whereas SQLAlchemy is about ...
4
votes
9answers
249 views
Merging duplicates in a list? - Question is more complex than it seems
So I have a huge list of entries in a DB (MySql)
I'm using Python and Django in the creation of my web application.
This is the base Django model I'm using:
class DJ(models.Model):
alias = ...
4
votes
2answers
471 views
Is there a Django's inspectdb equivalent for SQLAlchemy?
I've used Django's inspectdb command in the past, which gives you models from an existing database.
Is there something equivalent for SQLAlchemy?


