Skip to main content

Posts

Showing posts with the label part3

Making a web app with bottle and python tutorial series - part 3 - Creating a basic bottle application

Previous Part: Making a Bottle app with Python Tutorial Part 2 - Introduction to python Requests module In this part you will be introduced to basic concepts in bottle framework and then we will extend these concepts in the further tutorials(parts).  Pre-requisite  Before we start using bottle framework we will have to either install the bottle framework  or simply download the file to the working directory(The folder in which you are going to create the web app).  If you are new to using command prompt then see the following video(13:25) : Installing on your computer If you want to install the bottle , then open your command prompt, now you should see something like this: Microsoft Windows [ Version 10 . 0 . 10586 ] ( c ) 2015 Microsoft Corporation. All rights reserved. C : \ Users \ anivarth > Next type the following after the ' > ': C: \Users\anivarth > pip install bottle That's it you are done, you have installed bottle on your...