Using Python's built-in defaultdict we can easily define a tree data structure:
def tree(): return defaultdict(tree)That's it!
Using Python's built-in defaultdict we can easily define a tree data structure:
def tree(): return defaultdict(tree)That's it!
| #!/bin/bash | |
| # | |
| # Shell script to automatically configure a new Flask, nginx and uWSGI based blog | |
| # on an Amazon EC2 instance. | |
| # | |
| # See http://bit.ly/MeGwjD for more information! | |
| # | |
| # If you are forking this for your own custom configuration script, see the following other gists: | |
| # https://gist.github.com/3071737 | |
| # https://gist.github.com/3071739 |
| description "uWSGI" | |
| start on runlevel [2345] | |
| stop on runlevel [06] | |
| respawn | |
| env UWSGI=/usr/bin/uwsgi | |
| env LOGTO=/var/log/uwsgi/emperor.log | |
| exec $UWSGI --master --emperor /etc/uwsgi/apps-enabled --die-on-term --uid nginx --gid nginx --logto $LOGTO |
| [uwsgi] | |
| # Variables | |
| base = /var/www/blog | |
| app = simple | |
| # Generic Config | |
| plugins = http,python | |
| home = %(base)/venv | |
| pythonpath = %(base) | |
| socket = /var/www/run/%n.sock | |
| module = %(app) |
| server { | |
| listen 80; | |
| server_name blog; | |
| server_name blog.example.com; | |
| root /var/www/blog; | |
| location /static/ { | |
| alias /var/www/blog/static/; | |
| expires 30d; | |
| access_log off; |
| from fabric.api import local, run, env, put | |
| import os, time | |
| # remote ssh credentials | |
| env.hosts = ['10.1.1.25'] | |
| env.user = 'deploy' | |
| env.password = 'XXXXXXXX' #ssh password for user | |
| # or, specify path to server public key here: | |
| # env.key_filename = '' |
| #!/usr/bin/env python | |
| """A noddy fake smtp server.""" | |
| import smtpd | |
| import asyncore | |
| class FakeSMTPServer(smtpd.SMTPServer): | |
| """A Fake smtp server""" | |
| def __init__(*args, **kwargs): |
| ====================================== | |
| Setting up Nginx, uWSGI and Python3 | |
| ====================================== | |
| First off, I'm traditionally a PHP developer, but am looking at moving across to Python. I really struggled to find decent documentation on how to get a server up and running for deploying Python web applications from the point of view of someone coming from PHP. The main problems I came across with documentation were: | |
| 1) Only showed you how to run the server for a single web application. | |
| 2) Only showed you how to configure the app, not the server it was running on. | |
| My preferred workflow for development is by setting up a new VM in VMware Fusion and then forwarding through all requests to that VM via /etc/hosts. This might not be the optimal way to get things up and running, but it works for me. |
| require 'date' | |
| module Nordea | |
| module NDA | |
| class Record | |
| def self.parse(str) | |
| self.new(str).normalized | |
| end | |
| def initialize(str) |