19 November 2025
Charly RománI'm telling you to not use web browser.
Why i need webbrowser.open() some user use the tool in there local device so it's good ux to use it
id 583577522Why i need webbrowser.open() some user use the tool in there local device so it's good ux to use it
Because you can't open the user browser if the user is using a ssh session
Charly RománBecause you can't open the user browser if the user is using a ssh session
It is cli tool so users can use it in servers or in there own device laptop desktop etc so i need to have webbrowser.open
id 583577522It is cli tool so users can use it in servers or in there own device laptop desktop etc so i need to have webbrowser.open
Yes then do it conditionally. If you are in a ssh session you can't Open the browser and that's it
Sam KHello everyone, can Python as a language be used to build enterprise level applications?
Ya it can be, but depends upon what you need to build
id 8014209671Any body got Automate the Boring Stuff with Python” by Al Sweigart
Read it online for free.
Sam KHello everyone, can Python as a language be used to build enterprise level applications?
Yes, Python is very much used in “enterprise” projects. Plenty of big systems run backends on Django / FastAPI / Flask, whole data and ML platforms are built on Python, and lots of companies use it for internal tools, analytics and microservices.
The real question is what you mean by enterprise: high-load trading, internal dashboards, SaaS with mobile clients? For some of these Python is perfect, for others teams prefer Java/Go/.NET on the backend or, say, Dart + Flutter on the client side.
So in principle Python is fine for serious production work - it just has to fit the specific problem you’re solving.
Any body here ever used this package? How the async http client works
https://github.com/birddevelper/dequest
Dan DAny body here ever used this package? How the async http client works
https://github.com/birddevelper/dequest
The readme shows how the async client works
Charly RománThe readme shows how the async client works
Yes, but I want to use it in async function and await it, while it works with call back. is there any other declarative http tools that works like what I need?
Dan DYes, but I want to use it in async function and await it, while it works with call back. is there any other declarative http tools that works like what I need?
It doesn't seem to use python asyncio but their own async implementation so you can't await it directly
Charly RománMaybe you can try uplink which seems to be declarative and uses aiohttp
Thanks, it seems more flexible and accepts more config, like setting http library.
Dan Dthat one is somewhat batteries included I like its DTO mapping, but its async support only uses callbacks, which I don’t want for my current project.
uplink let you use pydantic. models as DTO and have more options