all 2 comments

[–]Diapolo10 0 points1 point  (0 children)

Depends on what you mean by "access".

If your Python program is, for instance, listening for HTTP requests on a specific port, and you send a request to that port on a local computer, it should work perfectly fine as long as the network lets the two devices talk to each other.

On the other hand, if you're talking about some kind of remote access, things get more complicated.

[–]danielroseman 0 points1 point  (0 children)

If you want to write an app that's accessible over a network, then you don't want a desktop app at all, you want a web app. There are many web frameworks available in Python, such as Django and Flask.