IOT Unit 5 - EEE
IOT Unit 5 - EEE
• The EC2 region, AWS access key and AWS secret REGION="us-east-1"
key are passed to this function. After connecting AMI_ID = "ami-d0f89fb9"
EC2_KEY_HANDLE = "<enter key handle>"
to EC2 , a new instance is launched using the INSTANCE_TYPE="t1.micro"
conn.run_instances function. SECGROUP_HANDLE="default"
conn =
• The AMI-ID, instance type, EC2 key handle and boto.ec2.connect_to_region(REGION,
security group are passed to this function. aws_access_key_id=ACCESS_KEY,
aws_
secre
t_ac
cess
_key
=SEC
RET_
Book website: http://www.internet-of-things-book.com KEY) Bahga & Madisetti, © 2015
Amazon AutoScaling – Python Example
#Python program for creating an AutoScaling group (code excerpt)
• AutoScaling Service import boto.ec2.autoscale
:
• A connection to the AutoScaling service is first established print "Connecting to Autoscaling Service"
by calling the boto.ec2.autoscale.connect_to_region conn = boto.ec2.autoscale.connect_to_region(REGION,
function. aws_access_key_id=ACCESS_KEY,
aws_secret_access_key=SECRET_KEY)
adjustment_type='ChangeInCapacity',
as_name='My-Group',
scaling_adjustment=-1,
cooldown=180)
conn.create_scaling_policy(scale_up_policy)
conn.create_scaling_policy(scale_down_policy)
conn = boto.connect_s3(aws_access_key_id='<enter>',
aws_secret_access_key='<enter>')
• JSON
• JavaScript Object Notation (JSON) is an easy to read and write data-interchange format. JSON is used as an alternative to XML
and is easy for machines to parse and generate. JSON is built on two structures: a collection of name–value pairs (e.g., a Python
dictionary) and ordered lists of values (e.g., a Python list).
• XML
• XML (Extensible Markup Language) is a data format for structured document interchange. The Python minidom library provides
a minimal implementation of the Document Object Model interface and has an API similar to that in other languages.
• HTTPLib & URLLib
• HTTPLib2 and URLLib2 are Python libraries used in network/internet programming.
• SMTPLib
• Simple Mail Transfer Protocol (SMTP) is a protocol which handles sending email and routing email between mail servers. The
Python SMTPLib module provides an SMTP client session object that can be used to send email.
• NumPy
• NumPy is a package for scientific computing in Python. NumPy provides support for large multi-dimensional arrays and
matrices.
• Scikit-learn
• Scikit-learn is an open source machine learning library for Python that provides implementations of various machine learning
algorithms for classification, clustering, regression and dimension reduction problems.
• Django is an open source web application framework for developing web applications in Python.
• A web application framework in general is a collection of solutions, packages and best practices
that allows development of web applications and dynamic websites.
• Django is based on the Model–Template–View architecture and provides separation of the data
model from the business rules and the user interface.
• Django provides a unified API to a database backend.
• Thus, web applications built with Django can work with different databases without requiring
any
code changes.
• With this flexibility in web application design combined with the powerful capabilities of the Python
language and the Python ecosystem, Django is best suited for cloud applications.
• Django consists of an object-relational mapper, a web templating system and a regular-expression-
based URL dispatcher.
• Model
• The model acts as a definition of some stored data and handles the interactions with the database. In a web application,
the data can be stored in a relational database, non-relational database, an XML file, etc. A Django model is a Python
class that outlines the variables and methods for a particular type of data.
• Template
• In a typical Django web application, the template is simply an HTML page with a few extra placeholders. Django’s
template language can be used to create various forms of text files (XML, email, CSS, Javascript, CSV, etc.).
• View
• The view ties the model to the template. The view is where you write the code that actually generates the web pages.
View determines what data is to be displayed, retrieves the data from the database and passes the data to the
template.
init
.py
settings.py
settings.p
y
• Defines settings used by a Django application
• Referenced by wsgi.py to bootstrap the project loading
• Techniques for managing dev vs prod settings:
• Create settings-dev.py and settings-prod.py and use symlink to link settings.py
to the correct settings
• Factor out common settings into base-settings.py and import. Use
conditionals to load correct settings based on DEBUG or other setting
Sample
Settings…
DEBUG = True
TEMPLATE_DEBUG = True
ALLOWED_HOSTS = []
# Application definition
INSTALLED_APPS = (
'django.contrib.admi
n',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
)
Django
Apps
• Reusable modules
• django-admin.py startapp <app_name>
• Creates stub layout:
<APP_ROOT>
admin.py
models.py
templates
(directory
)
tests.py
views.py
urls.py
Django
Models
• Defined in models.py
•Typically inherit from django.db.models.Model
Example Model:
from django.db import models
class TestModel(models.Model):
name = models.CharField(max_length = 20)
age = models.IntegerField()
Models
(cont’d)
• Default is to set NOT NULL on all fields. Override by adding null
= True to field definition:
name = models.CharField(max_length=20, null = True)
• Relationships defined through special field types:
models.OneToOneField(model)
models.ForeignKey(model)
models.ManyToManyField(model)
Models
(cont’)
• Need Nulls in a Boolean Field? Use models.NullBooleanField()
• Set Default value with “default”:
count = models.IntegerField(default = 0)
• Use a inner Meta class to define additional options, especially useful
for abstract classes:
class TestModel(models.Model):
class Meta:
abstract = True
Model
Methods
• model.save(self, *args, **kwargs)
• model.delete(self, *args, **kwargs)
• model.get_absolute_url(self)
• model. str (self) [Python 3] model.
unicode (self) [Python 2]
• Override with super(MODEL, self).save(*args,
**kwargs)
Activating a
Model
• Add the app to INSTALLED_APPS in settings.py
• Run manage.py validate
• Run manage.py syncdb
• Migrations
• Write custom script or manually handle migrations
• Use South
Selecting
Objects
• Models include a default manager called objects
• Manager methods allow selecting all or some instances
Question.objects.all()
Question.objects.get(pk = 1)
Use try block, throws DoesNotExist exception if no match
Question.objects.filter(created_date lt = ‘2014-01-01’)
• Returns QuerySet
Introspecting Legacy
Models
• manage.py inspectdb
• Cut and paste generated code into models.py – Easy!!
Full
Sample
from django.db import models from datetime import
datetime
class TimestampedModel(models.Model): created_datetime =
models.DateTimeField() updated_datetime = models.DateTimeField()
def save(self, *args, **kwargs): if self.id is None:
self.created_datetime = datetime.now() updated_datetime = datetime.now()
super(TimestampedModel,self).save(*args, **kwargs)
class Meta: abstract = True
Full Sample
(cont’d)
class Question(TimestampedModel):
question_text = models.CharField(max_length = 200)
def str (self):
return self.question_text
Function vs. Class
Views
• Django allows two styles of views – functions or class based views
• Functions – take a request object as the first parameter and must
return a response object
• Class based views – allow CRUD operations with minimal code.
Can inherit from multiple generic view classes (i.e. Mixins)
Sample – Viewing a List of
Questions
• Function based:
from .models import Question
from django.shortcuts import render_to_response
class QuestionList(ListView):
model = Question
context_object_name =
‘questions’
Django
Templates
• Very simple syntax:
variables = {{variable_name}}
template tags = {%tag%}
• Flexible – can be used to render
html, text, csv, email, you name
it!
• Dot notation – template engine attempts to resolve by looking for
matching attributes, hashes and methods
Question List
Template
<!doctype html>
<html lang=en>
<head>
<meta charset=utf-8>
<title>List of Questions</title>
</head>
<body>
{%if questions%}
<ul>
{%for q in questions%}
<li>{{q.question_text}}</li>
{%endfor%}
</ul>
{%else%}
<p>No questions have been defined</p>
{%endif%}
</body>
</html>
urls.p
y
• Defines routes to send urls to various views
• Can use regular expressions
• Extract parameters from a url and pass to the view as a named
parameter:
r(‘^question/(?P<question_id>\d+)/$’,’views.question_detail’)
• Extensible – urls.py can include additional url files from apps:
r(‘^question/’,include(question.urls))
Hooking up the Question
List
from django.conf.urls import patterns, url, include urlpatterns = patterns(‘’,
(r’^questions/$’,’views.QuestionList’))
OR:
from django.conf.urls import patterns from views import
QuestionListView
urlpatterns = patterns(‘’,(r’^questions/$’,’views.QuestionList.as_view()))
Forms in
Django
• django.forms provides a class to build HTML forms and validation.
• Example:
from django import forms
class EditQuestionForm(forms.Form):
question_text = forms.CharField(max_length = 200)
@method_decorator(login_required)
def dispatch(self, *args, **kwargs):
super(MyView,self).dispatch(*args,
**kwargs)
Custom Auth Backend for the
Bubble
Sending
Email
• django.core.mail includes functions and classes for handling email
• Set EMAIL_HOST in settings.py to outgoing mailserver
• Import send_mail for simple mail:
send_mail(subject, message, from, to_emails)
• Use django.template.render_to_string to format a message using a
template
• Use EmailMultiAlternatives to create a text message and attach a
html version as well.
Resources
• Python – http://www.python.org
• Django – http://www.djangoproject.com
• Python Packages – https://pypi.python.org
• Django Packages – https://www.djangopackages.com