Posts tagged Python
Functions in Python presentation
4Here is my presentation part of the in company Python course.
The last slide – “Problem to solve” is something like a simple homework. Sample solutions will be uploaded later this week.
Simple Site Checker and the User-Agent header
0Preface: Nine months ago(I can’t believe it was that long) I created a script called Simple Site Checker to ease the check of sitemaps for broken links. The script code if publicly available at Github. Yesterday(now when I finally found time to finish this post it must be “A few weeks ago”) I decided to run it again on this website and nothing happened – no errors, no warning, nothing. Setting the output level to DEBUG showed the following message “Loading sitemap …” and exited.
Here the fault was mine, I have missed a corner case in the error catching mechanism i.e. when the sitemap URL returns something different from “200 OK” or “500 internal server error”. Just a few second and the mistake was fix.
Problem and Solution: I ran the script again and what a surprise the sitemap URL was returning “403 Forbidden”. At the same time the sitemap was perfectly accessible via my browser. After some thinking I remembered about that some security plugins block the access to the website if there is not User-Agent header supplied. The reason for this is to block the access of simple script. In my case even an empty User-Agent did the trick to delude the plugin.
urllib2.urlopen(urllib2.Request(url,
headers={'User-Agent': USER_AGENT}))
Final words: As a result of the issue mention above one bug in simple site checker was found fixed. At the same time another issue about missing status and progress was raised, more details can be found at Github but in a few words an info message was added to each processed URL to indicate the progress.
If you have any ideas for improvement or anything else feel free to comment, create issues and/or fork the script.
Automation, Fabric and Django – presentation
1As a follow up post of Automated deployment with Ubuntu, Fabric and Django here are the slides from my presentation on topic “Automation, Fabric and Django”. Unfortunately there is no audio podcast but if there is interest I can add some comments about each slide as part of this post.
If there is anything that need explanation feel free to ask.
Django project file structure
10As I promised in Automated deployment with Ubuntu, Fabric and Django I will use this post to explain the file structure that I use for my Django projects and what I benefit from it. So here is my project directory tree.
The structure
~/workspace/<project_name>/ |-- bin |-- include |-- lib |-- local |-- src |-- .git |-- .gitignore |-- required_packages.txt |-- media |-- static |-- <project_name> | |-- <project_name> | | |-- __init__.py | | |-- settings | | | |-- __init__.py | | | |-- <environment_type>.py | | | |-- local.py | | |-- templates | | |-- urls.py | | |-- views.py | |-- manage.py | |-- wsgi.py |-- <project_name>.development.nginx.local.conf |-- <project_name>.< environment_type>.nginx.uwsgi.conf |-- <project_name>.< environment_type>.uwsgi.conf
Explanation
At the top I have a directory named as the project and virtual environment inside of it. The benefit from it is complete isolation of the project from the surrounding projects and python packages installed at OS level and ability to install packages without administrator permissions. It also provides an easy way to transfer the project from one system to another using a requirements file.
The src folder is where I keep everything that is going to enter the version control project source, requirements files, web server configuration etc.
My default .gitignore is made to skip the pyc-files, the PyDev files and everything in the static and media directories.
The media directory is where the MEDIA_ROOT settings point to, respectively static is for the STATIC_ROOT.
All required packages with their version are placed in required_packages.txt so we can install/update them with a single command in the virtual environment.
In a directory with the name of the project is where the python code resides. Inside it the project structure partly follows the new project layout introduced in Django 1.4.
The big difference here is the settings part. It is moved as a separate module where all common/general settings are place in
I having one local Nginx configuration file because I use the webserver to serve the static files when working locally this is the <project_name>.development.nginx.local.conf.
For each environment there is also a couple of configuration files – one for the web server(<project_name>.< environment_type>.nginx.uwsgi.conf) and one for the uwsgi(<project_name>.< environment_type>.uwsgi.conf). I make symbolic links pointing to these files so any changes made are automatically pushed/pulled via version control, I only have to reload the configuration. There is no option to change something in the configuration at one station and to forget to transfer it to the rest.
Benefits
- Complete isolation from other projects using virtual environment
- Easy to transfer and update packages on other machines thanks to the pip requirements file
- Media/static files outside the source directory for higher security
- Web server/uWSGI configuration as part of the repository for easier and error proof synchronization
Probably it have some downside(I can not think any of these now but you never know) so if you think that this can be improved feel free to share your thoughts. Also if there is anything not clear enough, just ask me, I will be happy to clear it.
Automated deployment with Ubuntu, Fabric and Django
6A few months ago I started to play with Fabric and the result was a simple script that automates the creation of a new Django project. In the last months I continued my experiments and extended the script to a full stack for creation and deployment of Django projects.
As the details behind the script like the project structure that I use and the server setup are a bit long I will keep this post only on the script usage and I will write a follow up one describing the project structure and server.
So in a brief the setup that I use consist of Ubuntu as OS, Nginx as web server and uWSGI as application server. The last one is controlled by Upstart. The script is available for download at GitHub.
In a wait for more detailed documentation here is a short description of the main tasks and what they do:
startproject:<project_name>
- Creates a new virtual environment
- Installs the predefined packages(uWSGI, Django and South))
- Creates a new Django project from the predefined template
- Creates different configuration files for development and production environment
- Initializes new git repository
- Prompts the user to choose a database type. Then installs database required packages, creates a new database and user with the name of the project and generates the local settings file
- Runs syncdb(if database is selected) and collectstatic
setup_server
- installs the required packages such as Nginx, PIP, GCC etc
- prompts for a database type and install it
- reboots the server as some of the packages may require it
Once you have a ready server and a project just use this the following task to deploy it to the server. Please have in mind that it should be used only for initial deployment.
deploy_project:<project_name>,<env_type>,<project_repository>
- Creates a new virtual environment
- Clones the project from the repository
- Installs the required packages
- Creates symbolic links to the nginx/uwsgi configuration files
- Asks for database engine, creates new DB/User with the project name and updates the settings file
- Calls the update_project task
update_project:<project_name>,<env_type>
- Updates the source code
- Installs the required packages(if there are new)
- Runs syncdb, migrate and collect static
- Restart the Upstart job that runs the uWSGI and the Nginx server
The script is still in development so use it on your own risk. Also it reflects my own idea of server/application(I am planning to describe it deeper in a follow up post) setup but I would really like if you try it and give a feedback. Feel free to fork, comment and advice.
The road to hell is paved with regular expressions …
13… or what is the cost of using regular expressions for simple tasks
Regular expressions are one of the most powerful tools in computing I have ever seen. My previous post about Django compressor and image preloading is a good example how useful they might be. The only limit of their use is your imagination. But “with great power, comes great responsibility” or in this case a great cost. Even the simplest expressions can be quite heavy compared with other methods.
The reason to write about this is a question recently asked in a python group. It was about how to get the elements of a list that match specific string. My proposal was to use comprehension list and simple string comparison while other member proposed using a regular expression. I was pretty sure that the regular expression is slower but not sure exactly how much slower so I made a simple test to find out.
import re
import timeit
my_list = ['abc-123', 'def-456', 'ghi-789', 'abc456', 'abc', 'abd']
def re_check():
return [i for i in my_list if re.match('^abc$', i)]
t = timeit.Timer(re_check)
print 're_check result >>', re_check()
print "%.2f usec/pass" % (1000000 * t.timeit(number=100000)/100000)
def simple_check():
return [i for i in my_list if i=='abc']
t = timeit.Timer(simple_check)
print 'simple_check result >>', simple_check()
print "%.2f usec/pass" % (1000000 * t.timeit(number=100000)/100000)
The results was 23.99 vs 1.41 usec/pass respectively for regular expression vs direct comparison i.e. the regexp was 17 times slower. The difference from the example above may be OK in some cases but it rises with the size of the list. This is a simple example how something really quick on local version may take significant time on production and even to broke your application.
So, should you learn and use regular expressions?
Yes! Absolutely!
They are powerful and useful. They will open your mind and allow you to do things you haven’t done before. But remember that they are a double-edge razor and should be used cautiously. If you can avoid it with other comparison(one or more) just run a quick test to see whether it will be faster. Of course if you can not avoid it you can also think about caching the results.
Python is not a Panacea …
2… neither is any other language or framework
This post was inspired by the serial discussion on the topic “Python vs other language”(in the specific case the other one was PHP, and the question was asked in a Python group so you may guess whether there are any answers in favor of PHP). It is very simple, I believe that every Python developer will tell you that Python is the greatest language ever build, how easy is to learn it, how readable and flexible it is, how much fun it is to work with it and so on. They will tell you that you can do everything with it: web and desktop development, testing, automation, scientific simulations etc. But what most of them will forgot to tell you is that it is not a Panacea.
In the matter of fact you can also build “ugly” and unstable applications in Python too. Most problems come not from the language or framework used, but from bad coding practices and bad understanding of the environment. Python will force you to write readable code but it wont solve all your problems. It is hard to make a complete list of what exactly you must know before starting to build application, big part of the knowledge comes with the experience but here is a small list of some essential things.
- Write clean with meaningful variable/class names.
- Exceptions are raised, learn how to handle them.
- Learn OOP(Object Oriented Programming)
- Use functions to granulate functionality and make code reusable
- DRY(Don’t Repeat Youtself)
- If you are going do develop web application learn about the Client-Server relation
- Use “layers” to seprate the different parts of your application – database methods, business logic, output etc. MVC is a nice example of such separation
- Never store passwords in plain text. Even hashed password are not completely safe, check what Rainbow Tables are.
- Comment/Document your code
- Write unit test and learn TDD.
- Learn how to use version control.
- There is a client waiting on the other side – don’t make him wait too long.
- Learn functional programming.
I hope the above does not sounds as an anti Python talk. This is not its idea. Firstly because there are things that are more important than the language itself(the list above) and secondly because… Python is awesome )))
There are languages that will help you learn the things above faster, Python is one of them – built in documentation features, easy to learn and try and extremely useful. My advice is not to start with PHP as your first programming language it will make you think that mixing variables with different types is OK. It may be fast for some things but most of the times it is not safe so you should better start with more type strict language where you can learn casting, escaping user output etc.
Probably I have missed a few(or more) pointa but I hope I’ve covered the basics. If you think that anything important is missing, just add it in the comments and I will update the post.
Fabric & Django
8Or how automate the creation of new projects with simple script
Preface: Do you remember all this tiny little steps that you have to perform every time when you start new project – create virtual environment, install packages, start and setup Django project? Kind of annoying repetition, isn’t it? How about to automate it a bit.
Solution: Recently I started learning Fabric and thought “What better way to test it in practice than automating a simple, repetitive task?”. So, lets mark the tasks that I want the script to perform:
- Create virtual environment with the project name
- Activate the virtual environment
- Download list of packages and install them
- Make ‘src’ directory where the project source will reside
- Create new Django project in source directory
- Update the settings
Thanks to the local command the first one was easy. The problem was with the second one. Obviously each local command is run autonomously so I had to find some way have activated virtual environment for each task after this. Fortunately the prefix context manager works like a charm. I had some issues making it read and write in the paths I wants and voilà it was working exactly as I want.
The script is too long to place it here but is publicly available at https://gist.github.com/2818562
It is quite simple to use, you only need python, fabric and virtual environment. Then just use the following code.
fab start_project:my_mew_project
To Do: Here are few things that can be improved:
- Read the packages from a file
- Update urls.py to enable admin
- Generate Nginx server block file
So this is my first try with Fabric, I hope that you will like it and find it useful. As always any comments, questions and/or improvement ideas are welcome.
Simple Site Checker
3… a command line tool to monitor your sitemap links
I was thinking to make such tool for a while and fortunately I found some time so here it is.
Simple Site Checker is a command line tool that allows you to run a check over the links in you XML sitemap.
How it works: The script requires a single attribute – a URL or relative/absolute path to xml-sitemap. It loads the XML, reads all loc-tags in it and start checking the links in them one by one.
By default you will see no output unless there is an error – the script is unable to load the sitemap or any link check fails.
Using the verbosity argument you can control the output, if you need more detailed information like elapsed time, checked links etc.
You can run this script through a cron-like tool and get an e-mail in case of error.
I will appreciate any user input and ideas so feel free to comment.
Faking attributes in Python classes…
3… or how to imitate dynamic properties in a class object
Preface: When you have connections between your application and other systems frequently the data is not in the most useful form for your needs. If you have an API it is awesome but sometimes it just does not act the way you want and your code quickly becomes a series of repeating API calls like api.get_product_property(product_id, property).
Of course it will be easier if you can use objects to represent the data in you code so you can create something like a proxy class to this API:
class Product(object):
def __init__(self, product_id):
self.id = product_id
@property
def name(self):
return api_obj.get_product_property(self.id, 'name')
@property
def price(self):
return api_obj.get_product_property(self.id, 'price')
#usage
product = Product(product_id)
print product.name
In my opinion it is cleaner, more pretty and more useful than the direct API calls. But still there is something not quite right.
Problem: Your model have not two but twenty properties. Defining 20 method makes the code look not that good. Not to mention that amending the code every time when you need a new property is quite boring. So is there a better way?
As I mention at the end of Connecting Django Models with outer applications if you have a class that plays the role of a proxy to another API or other data it may be easier to overwrite the __getattr__ method.
Solution:
class Product(object):
def __init__(self, product_id):
self.id = product_id
def __getattr__(self, key):
return api_obj.get_product_property(self.id, key)
#usage
product = Product(product_id)
print product.name
Now you can directly use the product properties as attribute names of the Product class. Depending from the way that the API works it would be good to raise AttributeError if there is no such property for the product.
