Questions tagged [python]

Python is an interpreted, general-purpose high-level programming language whose design philosophy emphasizes code readability.

enter image description here

Python is a dynamically and strongly typed programming language, used for developing a wide range of applications. The philosophy of Python is succinctly formulated in The Zen of Python (Author: Tim Peters), which can be revealed by issuing this command at the interactive interpreter:

>>> import this

The exhaustive and up-to-date reference to the Python specification and standard library documentation can be found in the official docs. There are a wide variety of implementations, which have relevant Stack Overflow tags reserved for them, although for most questions the tag should be sufficient. The reference implementation is known as CPython.

The current stable versions are 2.7.1 and 3.2.

58 questions
1
vote
2 answers

Temporarily share/deploy a python (flask) application

Goal Temporarily (1 month?) deploy/share a python (flask) web app without expensive/complex hosting. More info I've developed a basic mobile web app for the non-profit I work for. It's written in python and uses flask as its framework. I'd like to…
Jeff
1
vote
0 answers

Python convert webapp into desktop app or just show a webapp into a box like a desktop app

I'm a full stack web developer. I use python for web scraping and web automation. I was wondering that is it possible to convert a webapp into a desktop app or just a window which runs like browser and open a webapp into it. Thanks in advance.
0
votes
1 answer

Setting up and running Python scripts on my shared hosting plan

I have a shared hosting plan with a cheap hosting provider. Up until now I was able to survive with just PHP scripts and FTP access. I am interested in learning how to do things with Python however. My question is, how do I connect to the server and…
posfan12
  • 696
  • 2
  • 7
  • 14