Tagged Questions
0
votes
0answers
5 views
Use Redis for a timeout queue
I want to use Redis basically like this, if it (hypothetically) accepted SQL:
SELECT id, data, processing_due FROM qtable WHERE processing_due < NOW()
where processing_due is an integer ...
1
vote
2answers
51 views
Speed up an sqlite3 database search
I"m new to databases and just wrote my first code using sqlite3. It does the job, but is running extremely slowly and I'm hoping to get some advice regarding how to speed things up.
Right now my ...
-2
votes
2answers
58 views
Database of Python codes [closed]
I would like to know if a database of Python codes exists somewhere on the Internet, like File Exchange for MATLAB. I was searching for it in vain.
Thanks!
-5
votes
0answers
26 views
How to Store Sqlite database on extenal hard drive python [closed]
I have a very large and simple database currently stored in many many text files (around 100gb of 800kb each) and I need to store it in something like Sqlite for indexing and fast lookups.
Since I ...
2
votes
1answer
57 views
How to put a textfile into sqlite simply using Python API?
I have a tab delimited file in the format:
sentenceID (sid) documentID (scid) sentenceText (sent)
E.g.
100004 100 即便您喜爱流连酒吧,也定然在这轻松安闲的一隅,来一场甜蜜沉醉的约会。
100005 100 您可以慢慢探究菜单上所有的秘密惊喜。
I want ...
-1
votes
0answers
26 views
Django Comparison Shopping Site: How to Keep Prices Up to Date? [closed]
I'm creating a web app (as in application as a whole, not referring to a Django app) that has a comparison shopping component. After researching this, it appears that I'll be creating a database and ...
0
votes
1answer
36 views
Sqlite3 List index out of range when trying to get LIKE Query
I'm trying to execute the following code:
conn = sqlite3.connect("./Databases/Functions/He.db")
cursor = conn.cursor()
sql = "SELECT * FROM Requests WHERE Request like ?"
cursor.execute(sql, ...
1
vote
1answer
61 views
Python proper way to store data
I am trying to store the names each with 5 attributes.For example:
name=apple
attributes=[red,sweet,soft,fruit,healthy]
each names and attributes will be entered by the user. And there can be as ...
0
votes
0answers
27 views
Store a collection in Cassandra with Pycassa
I want to store a list of data in Cassandra with Pycassa and columnfamilymap
row_key -> {
[column_name; entry1] -> "",
[column_name; entry2] -> "",
...
}
The problem is, ...
0
votes
1answer
44 views
Should I delete or set a variable to “deleted” in django/postgresql?
Specifically for my app, I have created this model in order to allow a user (the user_parent) to follow other users.
class Follow(models.Model):
user_parent = models.ForeignKey(User, unique=True, ...
0
votes
0answers
17 views
Mongokit no collection found error
I'm trying to save an object to mongodb with Mongokit. For some reason I am getting a "Connection Error: no collection found", only for this particular class model, Game.
I have defined the ...
0
votes
1answer
29 views
Python/SQLAlchemy not updating instances with list of tuples
I've been learning to use SQLAlchemy and am trying to get it to load data already in the database, change values of the objects by adding a tuple to a list, then save/update them in the database.
For ...
0
votes
0answers
16 views
Desktop application using MySQL for authentication and other information
I am currently working on an RCON tool(server administration) for Call of Duty 4 which is specific for the clan I play with..
I am wanting to use a MySQL database to store the user information for ...
-4
votes
0answers
17 views
which python packages should I use to create a web application which lets user navigate through database? [closed]
Suppose I have a MYSQL database which contains quotes from Movies by Different actors.
For e.g a table for every actor with all his quote
a table for every movie which lists all the actors in that ...
1
vote
4answers
52 views
data bridge between Java and Python daemons
I have two background processes running on linux machine. One is Java and second one is in Python. What would be most efficient way to exchange data between these two apps ? I am talking about text / ...
0
votes
1answer
25 views
sqlite3 foreign key not working at all
cur.execute("CREATE TABLE users(id integer PRIMARY KEY, username TEXT, password TEXT, email TEXT)")
cur.execute("CREATE TABLE posts(id integer PRIMARY KEY, body TEXT, user_id int, FOREIGN ...
2
votes
1answer
23 views
SQLAlchemy aliases not aliasing?
I have the following sqlalchemy code:
x = bbc.alias().c
w = bbc.alias().c
select([func.distinct(x.region)]).where(
select([func.sum(w.population)]).where((w.region == x.region)) > 100000000
)
...
0
votes
2answers
26 views
Python: Single Quotes Showing up in my Database
I'm doing some python programming, inserting data into a MYSQL database for a project. I've been doing the coding, but noticed an odd artifact; Whenever I insert string data, my database includes the ...
0
votes
4answers
55 views
Django ManyToMany Field
I need to make a smart menu, for which I need a ManyToMany relation.
My model is:
from django.db import models
class Health_plan(models.Model):
a = models.IntegerField ()
b = ...
0
votes
3answers
111 views
Get data from webpages with Python
Looking to get data from a specific website with Python to upload onto Google App Engine. The idea is to create a database data to store the information on the server to retrieve and display in an web ...
0
votes
0answers
25 views
Django Models key creation issue (OneToOneField)
I have two Django Models. I wanted to create a field which is OneToOneField. then i ran migration, but it is saying: key is duplicate. why is this? this is my code:
class Rate(models.Model):
cr = ...
1
vote
1answer
26 views
Flask/Mongo/Jinja - Slicing a ListField and showing the last entries of the database
I have a list with 12 categories inside an object, I want to get the first 3 itens of this list and show only the last entry of the database of each one of these 3 itens. What am I doing wrong? I ...
0
votes
3answers
74 views
Converting BLOB, stored on a database, to an image on an HTML website
This is my first question.
I am having users upload their own image to a database.
That image is stored as a BLOB.
I was able to do this successfully.
I am using MySQL for the database.
The part I ...
-3
votes
0answers
16 views
Cannot find inserted elements in mysql DB tables from python in mysql workbench [closed]
I have added some items to a table of a mysql database in python. The elements are there because I can select and show them in python. But I cannot see them in mysql workbench. I am using mac with ...
0
votes
1answer
34 views
Django models.Model all column values end with L?
In the docs tutorial docs where you use the shell on tutorial 1, it shows you how to look at the values of a model object. When I use model_object.__dict__ to see all the columns and its values ...
0
votes
1answer
32 views
How to use Django DateTimeField's default
I'm trying to use datetime.datetime.now as the default for my pub_date column, but keep getting an error.
DatabaseError: (1054, "Unknown column 'archive_app.pub_date' in 'field list'")
I'm just ...
0
votes
1answer
28 views
How can I force python to use dumbdbm module to create a new database?
The shelve module is implemented on top of the anydbm module. This module acts as a facade for 4 different specific DBM implementations, and it will pick the first module available when creating a new ...
0
votes
1answer
23 views
Compare Dates With SQLAlchemy One-To-Many Relationships
How do you compare dates for one-to-many SQLAlchemy relationships?
Basically for my model structure, there is a one to many relationship between Team and Player:
class Team(db.Model):
...
0
votes
1answer
43 views
Comparing Dates with SQLAlchemy, SQLite
I am writing an application that uses SQLAlchemy with an SQLite database. I believe my database, tables, and mapping are configured correctly because other operations work as expected. I am trying ...
0
votes
2answers
49 views
SQLAlchemy / Python / Pyramid Write To Database Issue
The problem:
I am working on a bit of code that is meant to create a new record in a linking table. The linking table has a primary key that is an auto number, the other two fields are VARCHAR with a ...
2
votes
3answers
55 views
Making a database with custom commands in python
I'm trying to make a simple, local database using Python where I can set values, get values, etc and I keep getting this error:
#Simple Database
#Functions include Set[name][value]
# ...
0
votes
2answers
49 views
SQLIte3 querying a database
I'm trying to write a program to query a database. The database is golfDB and it consists of one table called players with 5 fields:
name (player's name)
totalGross (sum of the gross scores from ...
0
votes
1answer
41 views
Querying a sqlite3 database
I'm trying to write a program to query a database. The database is golfDB and it consists of one table called players with 5 fields: name (player's name), totalGross (sum of the gross scores from each ...
0
votes
1answer
25 views
GAE: Dynamic Properties Serving (db.Model) depending on Client (Biz App) using same application code
Let come to the point directly,
Consider here my Clients App name - ABC & XYZ with same application code.
Now let consider a db kind,
class user_details(db.Model):
user_id = ...
0
votes
0answers
69 views
MongoDB -> Design decision for huge datasets
here is my problem. I have a 50 cities (a,b,....), each city contains up to 4000 addresses (a1, a2, ... or b1, b2, ...) and each of these addresses contains a list with 10.000-40.000 ...
-3
votes
2answers
71 views
In-memory database with full text search [closed]
I'm using Python to write a web application. I want to store a large number of short texts, say movie titles, and their related information. I care most about performance. The total data size is only ...
0
votes
1answer
45 views
How to fetch Riak object, change its value and store it back with all indexes in Python
I am using Riak database to store my Python application objects that are used and processed in parallel by multiple scripts. Because of that, I need to lock them in various places, to avoid being ...
1
vote
4answers
52 views
TypeError: not all arguments converted during string formatting when inserting with parameters
I'm trying to insert an interger, a string and a list as a single record into a database, but am striking an error.
Here is my code:
values=nprnd.randint(10, size=48) #NUMPY ARRAY
valuelist= ...
0
votes
1answer
24 views
Is there some sort of way to roll back the initialize_project_db script in pyramid?
I am a rails developer that is learning python and I am doing a project using the pyramid framework. I am used to having some sort of way of rolling back the database changes If I change the models in ...
0
votes
1answer
34 views
Django, link 2 tables in different database
I have 2 DB
Main DB have table for model
class Entry(m.Model):
value = m.CharField(max_length=250, null=True, blank=True)
Seconadry have this
class Feature(m.Model):
linked = ...
0
votes
0answers
82 views
OpenCV in python. Ask: Recognize my face and put my name. Like a database
I have a code in python to recognize my face, but now I want to recognize my face and put my name, as stored in a database.
My question is, how to do it in python? anyone have any example?
This is ...
1
vote
1answer
98 views
How do I access database hosted online using python?
I am writing a script that will be used by multiple users, and I am looking for a way to sync settings and other variables throughout them all. My first instinct fell upon using an online database, ...
5
votes
1answer
90 views
How do I use Python with a database?
I wrote a Python program that handles very large data. As it processes the data, it puts the processed data into an array, which easily grows to hundreds of megabytes or even over a gigabyte.
The ...
0
votes
0answers
46 views
find out linked data relationship from database
Here is an example snapshot of db.
---------------------
| column1 | column2 |
---------------------
| 2 | 1 |
---------------------
| 3 | 2 |
---------------------
| 2 ...
1
vote
1answer
46 views
How to find those users whose preferences are a superset of a given set preference_list?
this is a problem I've been pondering for a while, and I would want to hear opinions from more experienced Django developers than me. Say, I have the following models:
class Preference(models.Model):
...
0
votes
1answer
35 views
Django Queryset sort by order_by with relatedManager
I am tryint to get objects sorted. this is my code:
ratings = Rate.objects.order_by(sortid)
locations = Location.objects.filter(locations_rate__in=ratings).order_by('locations_rate').distinct('id')
...
0
votes
0answers
12 views
django relatedManager understanding issue
I am stuck again in understanding of how to work with Django RelatedManager. I like it, and find it very cool thing to use. but I am somehow still not comfortable with the logic.
I have this:
...
0
votes
0answers
40 views
Multiple databases in Django 1.5
I am using multiple databases in Django 1.5. The default database is always available, but the secondary databases are not always available at the computer. When they are available everything works ...
1
vote
2answers
83 views
Multi-OS text-based database with an engine for Python and JavaScript
This is probably a far fetch, but maybe someone knows a good solution for it.
Introduction
I'm currently making an application in Python with the new wxPython 2.9, which has the new html2 library, ...
2
votes
2answers
71 views
How to create a fast, queryable index from many JSON files (ideally in Python)
I have 78,000 individual JSON files that I created with a Python script that scrapes a community forum and extracts information from each post. They consist of simple key-value pairs, like so:
{
...



