Tagged Questions

1
vote
2answers
22 views

Use pyExcelerator to generate dynamic Excel file with Django. Ensure unique temporary filename.

I'd like to generate a dynamic Excel file on request from Django. The library pyExcelerator does this, but I haven't found any way to use the contents of the Excel file without generating a …
1
vote
4answers
177 views

Django - Getting last object created, simultaneous filters

Apologies, I am completely new to Django and Python. I have 2 questions. First, how would I go about getting the last object created (or highest pk) in a list of objects? For example, I know that I …
1
vote
4answers
72 views

Django: vps or shared hosting?

I am new to web development and everything involved with it. Im finishing my website in django and i will soon have to find a hosting and deploy it. I heard there are vps or shared hosting types. So …
2
votes
3answers
85 views

How slow are Python/django exceptions?

is python exception slow? I'm kind using python exceptions to structure programm follow in my web application, and I'm wondering how throwing exceptions will affect performance of my application. …
0
votes
1answer
24 views

How to populate sqlite3 in django?

My plan is to collect data from websites in batches (lawyer bios from each firm's website; since they are all different, I will use a modified spider for each site) and convert each batch into a csv …
0
votes
3answers
24 views

Django loaddata error

I created a "fixtures" folder in the app directory and put data1.json in there. This is what is in the file: [{"firm_url": "http://www.graychase.com/kadam", "firm_name": "Gray & Chase", "first": …
0
votes
1answer
50 views

How do I transfer data in .csv file into my sqlite database in django?

This is my models.py from django.db import models class School(models.Model): school = models.CharField(max_length=300) def __unicode__(self): return self.school class …
0
votes
0answers
11 views

Set django-notification to be opt in rather than the default of opt out.

I'm using django-notification to allow my users to opt out of certain alerts I generate in my web-application. By default when I create a new notice type it is enabled rather than disabled. I'd …
1
vote
1answer
25 views

Handling UTF-16 in a Django uploaded file

In my Django webapp, in one location users can upload a text file where each line contains a string which will be operated on - the file isn't being stored on the server or anything like that. My …
0
votes
1answer
45 views

Excel and Django

I have an excel spreadsheet with calculations I would like to use in a Django web application. I do not need to present the spreadsheet as it appears in excel. I only want to use the formulae embedded …
0
votes
1answer
54 views

Decorators on Django Template Filters?

I have a template filter that performs a very simple task and works well, but I would like to use a decorator on it. Unfortunately the decorator causes a nasty django error that doesn't make any …
1
vote
1answer
53 views

Can I use Django 1.1 with django-search-lucene for full-text searching, and if so, what resources/links/docs can I reference to get it up and running?

A little background: I want to use Django Search with Lucene I have Django 1.1 w/ Python 2.5 installed MySQL 5.1 is being used My local machine is running Windows Vista x64, but we will deploy to …
0
votes
4answers
85 views

Python stacktrace help

hello, I have this stack trace error when I try view some data in my pyhton website, could some one clue me up as to what the problem is I am so lost Environment: Request Method: GET Request …
0
votes
4answers
34 views

WMD Preview Doesn’t Match Output

I am using WMD in a google app situation whereby the site administrator can update the pages of the site and the users see the information. The preview function is working fine and I can see the …
6
votes
2answers
286 views

Serve a dynamically generated image with Django

How do I serve a dynamically generated image in Django? I have an html tag <html> ... <img src="images/dynamic_chart.png" /> ... </html> linked up to this request handler, …

1 2 3 4 5 115 next
15 30 50 per page