Saturday, December 9, 2017

Django Building a blog | Designing blog data Schema

Below is for Ubuntu. source djangoTestEnv/bin/activate cd Desktop django-admin startproject blogSite cd blogSite python manage.py startapp myBlog Go to blogSite/blogSite/settings.py and add 'myBlog' in INSTALLED_APPS section. It should look similar to belowINSTALLED_APPS = [   ...

Friday, December 1, 2017

Django Learn Series | Fields

Field Types: Numeric Data IntegerField  DecimalField Textual Data CharField Requires max_length attribute TextField Doesn't require max_length attribute EmailField URLField File Data FileField Example: filename.docx ImageField Example: abc.jpg Miscellaneous Data BooleanField DateTimeField This link provides...

Django Learn Series| Settings

settings.py is global to all apps in a django project. Django documentation in this link provides good overview of the settings. This link provides more detailed info of these settings Settings those needed change...

Thursday, November 30, 2017

Django Learn Series | Creating a Django App

cd Desktop/DjangoPractice/firstdjango python manage.py startapp firstapp Files inside firstapp folder are below models.py -- DB interaction admin.py -- admin interface views.py -- App's logic and URL request / response tests.py -- Automated tests  migrations folder...

Django Learn Series | Creating a Django project

source djangoTestEnv/bin/activate Create a folder like DjangoPractice on Desktop cd Desktop/DjangoPractice django-admin startproject firstdjango Auto creates  a folder named firstdjango and required files in it Subfolder named firstdjango inside firstdjango will have  init.py settings.py Configures Django urls.py Routes requests...

Django Learn Series | Installation

On Ubuntu Machine, use below steps. sudo -H pip install virtualenv Using pip and installing virtualenv (recommended) instead of global installation virtualenv -p python djangoTestEnv djangoTestEnv is sample name of virtual environment source djangoTestEnv/bin/activate...

Monday, September 18, 2017

[How To] Convert Qt Designer file.py to Python Code

Assuming input.ui is the file created in Qt Designer, output.py is the python code file name, open Terminal and cd to input.ui folder. Type pyuic4 -x input.ui -o output.py and hit Enter output.py gets...

[How To] Install PyQt4 and Qt Designer for Python 2

For Ubuntu: Below is the command to install PyQt4 and Qt Designer for Python 2 sudo apt-get install pyqt4-dev-tools qt4-designer If you enjoyed this post, make sure you subscribe to my RSS feed! Comments...

Page 1 of 49123»