Jump to content

Python Web Framework

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
6 replies to this topic

#1
isuru

isuru

    Programming Professional

  • Members
  • PipPipPipPipPip
  • 233 posts
Who use python web frameworks?
Lost!

#2
Vladimir

Vladimir

    Learning Programmer

  • Members
  • PipPipPip
  • 79 posts
Python Web programmers :) What do you mean?

#3
isuru

isuru

    Programming Professional

  • Members
  • PipPipPipPipPip
  • 233 posts

Vladimir said:

Python Web programmers :) What do you mean?

I meant, there are some web frameworks which use python as scripting language. Anyone use one?
Lost!

#4
Vladimir

Vladimir

    Learning Programmer

  • Members
  • PipPipPip
  • 79 posts
I mainly use Django, Flask and Tipfy.

#5
isuru

isuru

    Programming Professional

  • Members
  • PipPipPipPipPip
  • 233 posts

Vladimir said:

I mainly use Django, Flask and Tipfy.

Is it possible to create youtube like site with Django. What kind of a server you use to host Django site? Do I need python intepreter in that server?
Lost!

#6
Vladimir

Vladimir

    Learning Programmer

  • Members
  • PipPipPip
  • 79 posts

Quote

Do I need python intepreter in that server?
Yes, but in most cases you will not be bothered of installing Server/DB/Python yourself.

Quote

Is it possible to create youtube like site with Django.
Why not? Django is a general purpose framework. For streaming videos you will probably chose Red5, but other tasks can be done with Python/Django.

Quote

What kind of a server you use to host Django site?
Whatever server hosting can deliver; that's responsibility of hosting/system administrator. For development there is a built-in development server, which can be started in one command:
manage.py runserver


#7
isuru

isuru

    Programming Professional

  • Members
  • PipPipPipPipPip
  • 233 posts
Well! I started learning DJango. And successfully installed it. Hope to dig into details lot more!
Thanks for reply! rep+
Lost!