What are django packages for making crypto transactions.

2022-01-08 Thread Le Sage Code
I'm trying to build a crypto exchange and to do that I don't know what django or python packages I need to send cryptos to someone with my wallet address. I need help please -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubs

Re: What Python/Django code checkers do you recommend?...

2016-04-11 Thread Christian Ledermann
I use all, specially because they are free for open source > > > On Fri, Apr 8, 2016 at 7:00 PM, Fred Stluka <f...@bristle.com> wrote: >> >> Python/Django programmers, >> >> What code review tools do you use? Do you run them automatically >> when check

Re: What Python/Django code checkers do you recommend?...

2016-04-10 Thread Avraham Serour
I use all, specially because they are free for open source On Fri, Apr 8, 2016 at 7:00 PM, Fred Stluka <f...@bristle.com> wrote: > Python/Django programmers, > > What code review tools do you use? Do you run them automatically > when checking in new code? Do you recommend

What Python/Django code checkers do you recommend?...

2016-04-08 Thread Fred Stluka
Python/Django programmers, What code review tools do you use?  Do you run them automatically when checking in new code?  Do you recommend them? Details: I'm working on a large Python/Django Web app (1,000 files, 200,000 lines of code, 3.5 years

Re: What to Django people have to say about Javascript frameworks to complement Django's philosophy on the front end

2013-06-01 Thread Doug S
a wiser >>> choice for me. I've also read about Spine, which describes itself as a >>> simple lightweight MVC framework. Backbone is apparently a library entirely >>> concerned with front end data models but not databinding or routing. I >>> found a li

Re: What to Django people have to say about Javascript frameworks to complement Django's philosophy on the front end

2013-04-18 Thread Doug Snyder
ion that can be extended in any variety of >>> ways ( much like django ). I tend to feel good about trusting Google but I >>> wonder if what I think is a more structured approach in Ember js is a wiser >>> choice for me. I've also read about Spine, which describes itself as a

Re: What to Django people have to say about Javascript frameworks to complement Django's philosophy on the front end

2013-04-18 Thread Doug Snyder
d approach in Ember js is a wiser >> choice for me. I've also read about Spine, which describes itself as a >> simple lightweight MVC framework. Backbone is apparently a library entirely >> concerned with front end data models but not databinding or routing. I >> found a library cal

Re: What to Django people have to say about Javascript frameworks to complement Django's philosophy on the front end

2013-04-18 Thread Thomas Weholt
I think is a more structured approach in Ember js is a wiser >> choice for me. I've also read about Spine, which describes itself as a >> simple lightweight MVC framework. Backbone is apparently a library entirely >> concerned with front end data models but not databinding or r

Re: What to Django people have to say about Javascript frameworks to complement Django's philosophy on the front end

2013-04-18 Thread Russell Keith-Magee
On Thu, Apr 18, 2013 at 1:53 PM, Doug S wrote: > I hope this is OK to talk Javascript in this Django group, I'm hoping its > relevant to enough Django folks to not be distracting. > I'm relatively new to Django, but my impression is that a few years ago > most django

Re: What to Django people have to say about Javascript frameworks to complement Django's philosophy on the front end

2013-04-18 Thread Doug Snyder
ta models but not databinding or routing. I > found a library called Batman intended for Rails but since a Google search > for django and batman is all about movies and not programming I'm guessing > no one has adapted this JS lib for django. All of what I'm writing is not > based on

What to Django people have to say about Javascript frameworks to complement Django's philosophy on the front end

2013-04-17 Thread Doug S
. All of what I'm writing is not based on expertise or experience, what I'm really hoping for is some hints from django people about what they use or what the pros and cons of the different options for javascript frameworks are, and to encourage discussion about this that might be useful to a lot

Re: What is Django?

2011-08-24 Thread Derek
zed further. If you are building websites that fit into the domain space that it covers, you'd get a boost in productivity from not re-inventing some wheels. On Aug 23, 2:01 pm, Julian <notdiffic...@gmx.net> wrote: > Is there any document available that describes WHAT Django is? I am >

Re: What is Django?

2011-08-23 Thread Karen Tracey
On Tue, Aug 23, 2011 at 8:01 AM, Julian <notdiffic...@gmx.net> wrote: > Is there any document available that describes WHAT Django is? I am > not looking for an installation guide, neither for tutorial, nor for > [snipped] Perhaps the overview: https://docs.djangoproject.c

What is Django?

2011-08-23 Thread Julian
Is there any document available that describes WHAT Django is? I am not looking for an installation guide, neither for tutorial, nor for "Django is a high-level Python Web framework". But: What does this framework include? What is it used for? How does it increase productivity? Why shoul

Re: finding out what SQL Django generated

2009-04-15 Thread Alex Gaynor
On Wed, Apr 15, 2009 at 5:39 PM, Justin Bronn wrote: > > > If it's docs links you want :) : > > > > http://docs.djangoproject.com/en/dev/faq/models/#how-can-i-see-the-ra... > > This isn't in the docs, but it also works: > > >>> qs = Foo.objects.all() > >>> qs.query.as_sql() > >

Re: finding out what SQL Django generated

2009-04-15 Thread Justin Bronn
> If it's docs links you want :) : > > http://docs.djangoproject.com/en/dev/faq/models/#how-can-i-see-the-ra... This isn't in the docs, but it also works: >>> qs = Foo.objects.all() >>> qs.query.as_sql() It returns a two-element tuple comprised of the generated SQL and parameters,

Re: finding out what SQL Django generated

2009-04-15 Thread Chris Curvey
On Apr 15, 4:25 pm, Alex Gaynor wrote: > On Wed, Apr 15, 2009 at 4:23 PM, Chris Curvey wrote: > > > I'm getting unexpected results from a database query that was > > generated by Django, and I'm sure the problem is that I'm mis-using > > the API.  Is

Re: finding out what SQL Django generated

2009-04-15 Thread Alex Gaynor
On Wed, Apr 15, 2009 at 4:23 PM, Chris Curvey wrote: > > I'm getting unexpected results from a database query that was > generated by Django, and I'm sure the problem is that I'm mis-using > the API. Is there a way to get Django to tell me what SQL was sent to > the database

finding out what SQL Django generated

2009-04-15 Thread Chris Curvey
I'm getting unexpected results from a database query that was generated by Django, and I'm sure the problem is that I'm mis-using the API. Is there a way to get Django to tell me what SQL was sent to the database server? (Sorry if this is a FAQ, I've been looking for a while. Pointers to docs

Re: What is Django/python equivalent of this - Display textarea content with line breaks in html page?

2009-01-10 Thread Brian Neal
On Jan 10, 8:13 pm, zweb wrote: > Javascript: > document.getElemnetById(’textareacontent’).value.replace(/\n/ > g,’’); > PHP: > preg_replace(”/\n/”,””,$_REQUEST['t1']); > Ruby: > (teaxtareacontent).gsub(/\n/,””) > > ( reference >

What is Django/python equivalent of this - Display textarea content with line breaks in html page?

2009-01-10 Thread zweb
Javascript: document.getElemnetById(’textareacontent’).value.replace(/\n/ g,’’); PHP: preg_replace(”/\n/”,””,$_REQUEST['t1']); Ruby: (teaxtareacontent).gsub(/\n/,””) ( reference - http://rkutti.wordpress.com/2008/01/31/display-textarea-content-with-line-breaks-in-html-page/)

Re: WHAT IS DJANGO?

2007-03-14 Thread Todd O'Bryan
The Django you're looking for is here: http://webpages.charter.net/django/ It's apparently a program for printing tablature for various fretted instruments. This Django is a framework for writing applications on the web. On Wed, 2007-03-14 at 13:51 -0700, DICK wrote: > I AM NEW TO THIS SITE

Re: WHAT IS DJANGO?

2007-03-14 Thread Nathan R. Yergler
I think you've found the wrong Django. This Django is a Python web framework for building web applications. On 3/14/07, DICK <[EMAIL PROTECTED]> wrote: > > I AM NEW TO THIS SITE AND THE REASON I AM POSTING THIS IS BECAUSE I > WANTED TO DOWLOAD SOME SHEET MUSIC AND TABLATURE AT THIS LINK: > >

WHAT IS DJANGO?

2007-03-14 Thread DICK
I AM NEW TO THIS SITE AND THE REASON I AM POSTING THIS IS BECAUSE I WANTED TO DOWLOAD SOME SHEET MUSIC AND TABLATURE AT THIS LINK: cbsr26.ucr.edu/wlkfiles/Publications/JohnDowland/JohnDowland.html HOWEVER I CANT GET IN IT AND I WOULD LIKE TO BE ABLE TO BUT I DON'T KNOW HOW I'M HOPING SOMEBODY