Skip to content

Clone of twitter website using flask, html,css and bootstrap 4

Notifications You must be signed in to change notification settings

VBV-121/Twitter-Clone

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

67 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Twitter clone

flask

Flask is a lightweight WSGI web application framework. It is designed to make getting started quick and easy, with the ability to scale up to complex applications. It began as a simple wrapper around Werkzeug and Jinja and has become one of the most popular Python web application frameworks.

This is a project intended to polish our skills.

For running the project

Virtualenv & Dependencies

create a virtualenv and run requirements.txt

what is virtual environment ?
A virtual environment is a tool that helps to keep dependencies required by different projects separate by creating isolated python virtual environments for them. This is one of the most important tools that most of the Python developers use.
read more...

  • installing virtualenv
$ pip install virtualenv
  • creating virtualenv
$ virtualenv env

env is name of environment

  • activating virtual environment
$ source env/bin/activate 
  • run requirements.txt
$ pip install -r requirements.txt
  • run Flask App
$ python run.py

About

Clone of twitter website using flask, html,css and bootstrap 4

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published