Re: setup.py for project?

2015-04-02 Thread Simon Brunning
On 2 April 2015 at 11:56, Thomas Güttler wrote: > There are many books about this topic. Which one do you recommend? Continuous Delivery: Reliable Software Releases through Build, Test, and Deployment Automation, ISBN 978-0321601919 Very good indeed. Cheers, Simon B. @brunns

Re: csv files

2010-08-18 Thread Simon Brunning
On 13 August 2010 17:59:01 UTC+1, Tony wrote: > My script right now basically just reads from a csv file and puts it > into a dictionary for me.  However, when I make my own csv file (just > the same as any I have seen), it acts inconsistently.  For example, > sometimes it

Re: not able to install django development version

2010-06-22 Thread Simon Brunning
On 22 June 2010 12:33, samie wrote: > sir i am not able to install django development version on my machine > i am using vista 32 basic.. > > problem is occurring during svn checkout command,, And the problem is? -- Cheers, Simon B. -- You received this message

Re: Force ContentType id

2010-06-22 Thread Simon Brunning
On 22 June 2010 09:58, donato.gr wrote: > I found some topics about tools such as 'django evolution' but I was > wondering if Django itself provides a simpler way to make simple > alterations... It's not built in to Django, but it sounds like you want South -

Re: gintare

2010-03-08 Thread Simon Brunning
On 7 March 2010 09:45, gintare wrote: > Hello, > > Is it possible in python access name of variable? "The same way as you get the name of that cat you found on your porch: the cat (object) itself cannot tell you its name, and it doesn't really care -- so the only way to

Re: any suggestion about how to build Continuous testing for django project?

2010-02-02 Thread Simon Brunning
On 1 February 2010 17:25, pyleaf wrote: > I am new for django. > any suggestion about how to build Continuous testing for django project? If you build your Django app with buildout () you could try Hudson (). I'm going to be

Re: TypeError: 'float' object is not iterable

2010-01-20 Thread Simon Brunning
2010/1/20 Christopher Bird : > Hi > > Im trying iterating over a dictionary. > i have no problem with this but when i get to the last key:value > ( value is a list) i get the following error > > > value= list > TypeError: 'float' object is not iterable > > > > django

Re: decimal is not json serializable.

2010-01-14 Thread Simon Brunning
2010/1/14 Meenu : > Hello all, > > I'm following the "Serializing Django objects" documentation and have > a view pretty much verbatim from the docs: > >        if xhr: >            return HttpResponse(simplejson.dumps(form_data), > mimetype='application/javascript') >

Re: Saving several copies of an object

2010-01-06 Thread Simon Brunning
2010/1/5 pjmorse : > It's a multi-language site: US, UK, DE. (Why US and UK are considered > different languages is organizational politics beyond the scope of my > work.) UK and US English are enormously similar, but there are real differences in vocabulary (e.g. lift

Re: can any on help me how to create a sample model project.

2009-12-15 Thread Simon Brunning
2009/12/15 chiranjeevi muttoju : > ImportError: No module named setuptools Seems pretty self-evident to me. Try installing setuptools first. -- Cheers, Simon B. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post

Re: can any on help me how to create a sample model project.

2009-12-15 Thread Simon Brunning
2009/12/15 chiranjeevi muttoju : > hey i installed django on one machine, and sql in another machine.. in which > mechine i need to install the sql connector. The Django machine. -- Cheers, Simon B. -- You received this message because you are subscribed to the Google

Re: can any on help me how to create a sample model project.

2009-12-15 Thread Simon Brunning
2009/12/15 chiranjeevi muttoju : > i've downloaded the mysql connector "MySQL-python-1.2.3c1.tar.gz' > could u please tellme how to instal that in linux.. If you untar it, you should find installation instructions in the README. -- Cheers, Simon B. -- You received this

Re: can any on help me how to create a sample model project.

2009-12-15 Thread Simon Brunning
2009/12/15 chiranjeevi muttoju : > i cont able to understand how to modify the settings for mysql.. > when i run the cammand 'python manage.py shell' > it gives the error no modulr fing for No module named MySQLdb You've not installed the database module that Python needs

Re: can any on help me how to create a sample model project.

2009-12-15 Thread Simon Brunning
2009/12/15 'chiru'tha : > hey i've seen dat.. bt i cont able to create a new one.. i'm doing > some mistake while setting settings. If u createed a project.. plz > tell me the process in detail.. plz. > thanku.. Sorry, but that *is* the process. Why don't you tell us what

Re: can any on help me how to create a sample model project.

2009-12-15 Thread Simon Brunning
2009/12/15 'chiru'tha : > hi.. > I'm new to Django, i need it in my project applications, can any one > guide me to create a new model project(using MySql database). plz give > the process in detail.. http://lmgtfy.com/?q=django+tutorial -- Cheers, Simon B. -- You

Re: Execute a java program

2008-10-30 Thread Simon Brunning
2008/10/30 [EMAIL PROTECTED] <[EMAIL PROTECTED]>: > I have to execute a java program very simple look something like this: (snip) > How Can I do that? Do I have to use JVM ? How ? You'll need a JVM - Python doesn't speak Java! You can either just use the Subprocess module to call the JVM,