Category Archives: Computing

Improve Your Python Code With pylint

The myriad recommendations and requirements of the Python Style Guide can be bewildering and difficult to remember for the uninitiated.  Pylint is a Python application that analyses your code and suggests where you could make it more readable and more inline with the Python style guide. Pylint takes much of the hard work out of… Read More »

How to Package Python Code

With Python distributions such as Enthought and Anaconda, its never been easier to create and install python packages. In this post I show you how to build your own python packages and publish them on the PyPI python package index. Step 1. Create PyPI Account Before we can upload our package to the Python Package… Read More »

JOBID generator script

How you organise your computational projects is important. If you’re not  careful you can find yourself with hundreds of computer-hours worth of data,  without being exactly sure which parameters or scripts you used to generate it. One way to keep track of your scripts and your data is with a JOBID number, which you attach… Read More »