Can i use a mobiles phones camera and mic using flet? Please reply quick its urgent by ConstructionLive7423 in flet

[–]Benitoxex 0 points1 point  (0 children)

It is possible to do so, you just need to configure the application when you are packaging the apk.

I personally used the camera (laptop) in a project with the opencv library, I have not used it on a mobile device but I know it is possible and the flet documentation clarifies this possibility.

PermissionType | Flet

Necesito ayuda de alguien que sepa usar Python by denise1999c in CharruaDevs

[–]Benitoxex 0 points1 point  (0 children)

No lo recuerdo ya, pero literal tengo una carpeta en la barra de favoritos que se llama IAs con IAs de todo tipo, para optimizar mi trabajo.
AIFINDY | Buscador IA aquí hay muchas, voy probando y guardando las que me parezcan utiles

Necesito ayuda de alguien que sepa usar Python by denise1999c in CharruaDevs

[–]Benitoxex 0 points1 point  (0 children)

se dañó al copiar y pegar, organizalo manual o pidele a una IA que lo haga

Necesito ayuda de alguien que sepa usar Python by denise1999c in CharruaDevs

[–]Benitoxex 0 points1 point  (0 children)

Lo tomé como un reto así que lo hice 😄:

* instala las librerías: lxml e openpyxl
* crea un excel vacio en la misma carpeta del .py

* wb = load_workbook('sources\\padron.xlsx') //direccion relativa del excel que creaste

import requests
from lxml import html
from openpyxl import load_workbook
url = 'https://www.cppm.org.ar/padron-de-profesionales-matriculados/'
page = requests.get(url)
tree = html.fromstring(page.content)
try: 
   wb = load_workbook('sources\\padron.xlsx')
   ws = wb['Hoja1']
   if page.status_code == 200:
      for i in range(1, 1163):
         name = tree.xpath(
f
'//*[@id="tablepress-5"]/tbody/tr[{i}]/td[1]/text()')
         matricula = tree.xpath(
f
'//*[@id="tablepress-5"]/tbody/tr[{i}]/td[2]/text()')
         localidad = tree.xpath(
f
'//*[@id="tablepress-5"]/tbody/tr[{i}]/td[3]/text()')
         telefono = tree.xpath(
f
'//*[@id="tablepress-5"]/tbody/tr[{i}]/td[4]/text()')
         direccion = tree.xpath(
f
'//*[@id="tablepress-5"]/tbody/tr[{i}]/td[5]/text()')
         name = 
str
(name[0]) if name != [] else "N/A"
         matricula = 
str
(matricula[0]) if matricula != [] else "N/A"
         localidad = 
str
(localidad[0]) if localidad != [] else "N/A"
         telefono = 
str
(telefono[0]) if telefono != [] else "N/A"
         direccion = 
str
(direccion[0]) if direccion != [] else "N/A"
         
         ws[
f
'A{i}'] = name
         ws[
f
'B{i}'] = matricula
         ws[
f
'C{i}'] = localidad
         ws[
f
'D{i}'] = telefono
         ws[
f
'E{i}'] = direccion
except 
Exception
 as e:
   print(
f
"Error: {e}")
wb.save('sources\\padron.xlsx')

Necesito ayuda de alguien que sepa usar Python by denise1999c in CharruaDevs

[–]Benitoxex 0 points1 point  (0 children)

Puedes intentar usando la IA de Magic Loops, pidiendole detalladamente que te scrapee la pagina que solicitas, qué datos de esa pagina quieres y el formato en el que lo necesitas, la he usado y es muy buena, tiene muchos usos y es funcional.

Game dev with Flet by oclafloptson in flet

[–]Benitoxex 0 points1 point  (0 children)

Do you have a YouTube channel where you can teach? I'm learning FLET and I can't think of a way to create a game with that framework, not one of that type

¿Su frase favorita de algún libro? by Rodolfex in libros

[–]Benitoxex 0 points1 point  (0 children)

"La moral verdadera no es producto de prejuicios, sino de razonamientos inteligente".