Re: Using Python Libraries in Django

2021-04-23 Thread Gabriel Araya Garcia
Felipe: Mandame una muestra del archivo el cual usaría esta pequeña aplicación de consulta, puede ser una tabla con los datos ya procesados (tú dices que con pandas está sumando correctamente) ahora lo que necesitas es la aplicación para que los demás funcionarios puedan ver los resultados ordenado

Re: Using Python Libraries in Django

2021-04-23 Thread felipe herrera
Great video. Thank you Sr. ! El jueves, 22 de abril de 2021 a la(s) 19:05:50 UTC-5, Gerardo Palazuelos escribió: > Have a look at the following video. It might help with your first question. > https://youtu.be/04L0BbAcCpQ > > Regards, > > -- > Gerardo Palazuelos Guerrero > > > > On Thu, Apr 22,

Re: Using Python Libraries in Django

2021-04-23 Thread Agoua David
Yes it's possible to use other python library, and for second question i think it's better to encapsulate tour code in a class toi create a service and call it in your views. This a clean way and like this your Can call it in a thread if you want to savez Time. Le ven. 23 avr. 2021 à 00:05, Gerar

Re: Using Python Libraries in Django

2021-04-22 Thread Gerardo Palazuelos Guerrero
Have a look at the following video. It might help with your first question. https://youtu.be/04L0BbAcCpQ Regards, -- Gerardo Palazuelos Guerrero On Thu, Apr 22, 2021 at 2:45 PM felipe herrera wrote: > Awesome! Thank you . > > Andrés > > El jue, 22 de abr. de 2021 a la(s) 14:52, Kasper Laudru

Re: Using Python Libraries in Django

2021-04-22 Thread felipe herrera
Awesome! Thank you . Andrés El jue, 22 de abr. de 2021 a la(s) 14:52, Kasper Laudrup ( laud...@stacktrace.dk) escribió: > On 22/04/2021 18.48, felipe herrera wrote: > > 1) Can we use any python libraries in Django ( such as PDFplumber, > > pandas, etc) ? > > Yes. > > Of course something like a P

Re: Using Python Libraries in Django

2021-04-22 Thread Kasper Laudrup
On 22/04/2021 18.48, felipe herrera wrote: > 1) Can we use any python libraries in Django ( such as PDFplumber, > pandas, etc) ? Yes. Of course something like a Python library for rendering 3D graphics with OpenGL wouldn't make much sense to use for a web framework, but you can use any Python cod

Re: using python libraries in django?

2009-08-08 Thread Luke Seelenbinder
Django follows normal python import rules. So just lookup those to know what Django can use and how it needs to be setup. -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Luke Seelenbinder luke.seelenbin...@gmail.com -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (GNU/Linux) iEYEARECAAYFAkp+M

Re: using python libraries in django?

2009-08-08 Thread Daniel Roseman
On Aug 8, 7:42 pm, djangonoob wrote: > Hi Alex, > in that case, do we need to know where is the python modules being > installed > before importing it? No. > Or do we install another python library to a directory where our > django project lives before importing the > python modules? > > Best R

Re: using python libraries in django?

2009-08-08 Thread djangonoob
Hi Alex, in that case, do we need to know where is the python modules being installed before importing it? Or do we install another python library to a directory where our django project lives before importing the python modules? Best Rgds. On Jul 6, 9:31 pm, Alex Gaynor wrote: > On Mon, Jul 6

Re: using python libraries in django?

2009-07-06 Thread Alex Gaynor
On Mon, Jul 6, 2009 at 8:30 AM, djangonoob wrote: > > Hi all, > i was wondering if we can use python libraries in Django? > > Do we need to type in any form of extra commands ? > > For instance, if i want to use the urllib library, how do i do that? > > Best Regards. > > > Django is just python,