subdomain

How do I get my computer's fully qualified domain name in Python?

How do I get my computer's fully qualified domain name in Python? Question: I know I can use platform.node() to get my computer’s network name: >>> import platform >>> platform.node() ‘MyComputerName’ But what I really want is something that will work similar to the following: >>> get_full_network_domain_name() ‘MyComputerName.it.na.mycompany.com’ Does something like this exist? Asked By: …

Total answers: 1

Dynamic Subdomain Handling in a Web App (Flask)

Dynamic Subdomain Handling in a Web App (Flask) Question: I’m going to be using flask to create a web application, and part of the application will involve a subdomain (for example, user1.appname.org). I’m not sure how to go about creating these subdomains dynamically in the flask configuration, or how to deploy them to a production …

Total answers: 2