Spotify technology

2022-08-01 Thread Gonzalo V
Hi everyone! i need a guide or advice or anything. I few years ago, i was able to connect to my music receiver via spotify app from my phone or laptop. You had to connect to receiver and your laptop to the same wifi network and this is. Years later, that service was deprecated by spotify conditions

always return the same pdf

2022-03-07 Thread Gonzalo V
Hello everyone. i had upload a Django app to an ubuntu 18.04 server and it gives me the same pdf everytime the view is called. To generate the pdf it receipts differents string buy it gives me the same pdf. Could you give some idea what is happening? thanks everyone @never_cached def generar_pdf(r

SPECIALS CHARACTERS

2020-04-15 Thread Gonzalo V
Good morning! A tiny question. Are there a way to create a new character on python? i need to create some kind of arroba @ but with other letter inside. Are there a library for that? Really thanks. Gonzalo from Chile. -- https://mail.python.org/mailman/listinfo/python-list

python certification

2017-06-08 Thread Gonzalo V
hi, good day. where can i get a python certification? thanks! -- https://mail.python.org/mailman/listinfo/python-list

Re: UTF-8 Encoding Error

2016-12-25 Thread Gonzalo V
Try utf-8-sig El 25 dic. 2016 2:57 AM, "Grady Martin" escribió: > On 2016年12月22日 22時38分, subhabangal...@gmail.com wrote: > >> I am getting the error: >> UnicodeDecodeError: 'utf8' codec can't decode byte 0x96 in position 15: >> invalid start byte >> > > The following is a reflex of mine, whenever

Re: Web Scraping

2016-11-12 Thread Gonzalo V
Explore url module and you need urlretrieve() saludos, desde un móvil. El nov 12, 2016 12:23 p.m., "Veek M" escribió: > Steve D'Aprano wrote: > > > On Sat, 12 Nov 2016 11:07 pm, Veek M wrote: > > > >> 121sukha wrote: > >> > >>> I am new to python and I want to use web scraping to download songs

Re: How to read from serial port?

2016-04-26 Thread Gonzalo V
Try print('blaba'+str(out)) saludos, desde un móvil. El abr 26, 2016 2:33 p.m., "Grant Edwards" escribió: > On 2016-04-26, David Aldrich wrote: > > > #!/usr/bin/python3 > > import serial > > > > ser=serial.Serial('COM1',115200) > > while True: > > out = ser.read() > > print('Receiving..

Re: Failed install scipy lib

2016-04-20 Thread Gonzalo V
oscar instálate mejor anaconda y listo. Saludos, Gonzalo 2016-04-20 10:04 GMT-03:00 Oscar Benjamin : > On 20 April 2016 at 12:30, wrote: > > On Wednesday, April 20, 2016 at 2:09:10 PM UTC+3, liran@gmail.com > wrote: > >> On Tuesday, April 19, 2016 at 9:21:42 PM UTC+3, eryk sun wrote: > >>

Re: Need help - How to identify the cell display format?

2015-12-15 Thread Gonzalo V
Are you working with time series? saludos, desde un móvil. El dic 15, 2015 9:41 a.m., "Ezhilarasan Chandrasekar" escribió: > Hi folks, > > I just want to find the cell display format in Excel. I have a Expected > excel file and Actual Excel file. > > I have some knowledge about, how to check the

Re: Interacting with a web site, which lib?

2015-09-27 Thread Gonzalo V
Selenium https://selenium-python.readthedocs.org/ i used pip for install it. Saludos, Gonzalo 2015-09-27 18:16 GMT-04:00 Gonzalo V : > I am working with selenium for.python. easy and powerful > > saludos, > desde un móvil. > El sep 27, 2015 6:01 p.m., "Laura Creighton&q

Re: Interacting with a web site, which lib?

2015-09-27 Thread Gonzalo V
I am working with selenium for.python. easy and powerful saludos, desde un móvil. El sep 27, 2015 6:01 p.m., "Laura Creighton" escribió: > In a message of Sun, 27 Sep 2015 15:05:37 -0600, > paul.hermeneu...@gmail.com wri > tes: > >Does anyone have an opinion on the relative merits of using the >

Re: ConnectionError handling problem

2015-09-27 Thread Gonzalo V
Hi Cameron. i had the same problems and you have to tell to python what to do with the connect problem. try this: ... except *urllib.error.HTTPError* as e: if e.getcode()==504: disp = "SIN RESPUESTA DEL SERVIDOR" #(No answer from the server) nombre=''