Knowning where python is trying to find files is important.
Let's say try to import a module and you get an Import Error.
Like this:
>>> import foo
---------------------------------------------------------------------------
jkazil@jlk:~ $ brew install postgis | |
==> Installing dependencies for postgis: liblwgeom, gdal | |
==> Installing postgis dependency: liblwgeom | |
==> Downloading http://download.osgeo.org/postgis/source/postgis-2.1.1.tar.gz | |
Already downloaded: /Library/Caches/Homebrew/liblwgeom-2.1.1.tar.gz | |
==> Downloading https://gist.github.com/dakcarto/7458788/raw/8df39204eef5a1e5671828ded7f377ad0f61d4e1/postgis-config_strip-pgsql.diff | |
Already downloaded: /Library/Caches/Homebrew/liblwgeom--patch-3d93c9ede79439f1c683a604f9d906f5c788c690.diff | |
==> Patching | |
patching file configure.ac | |
==> ./autogen.sh |
import requests | |
import sys | |
key = sys.argv[1] | |
base = 'http://api.data.gov/USDA/ERS/data/Arms/Surveys' | |
url = '%s?api_key=%s' % (base, key) | |
response = requests.get(url) | |
print response.json() |
In python, you have floats and decimals that can be rounded. If you care about the accuracy of rounding, use decimal type. If you use floats, you will have issues with accuracy.
All the examples use demical types, except for the original value, which is automatically casted as a float.
To set the context of what we are working with, let's start with an original value.
""" | |
An alternative Django ``TEST_RUNNER`` which uses unittest2 test discovery from | |
a base path specified in settings, rather than requiring all tests to be in | |
``tests`` module of an app. | |
If you just run ``./manage.py test``, it'll discover and run all tests | |
underneath the ``TEST_DISCOVERY_ROOT`` setting (a path). If you run | |
``./manage.py test full.dotted.path.to.test_module``, it'll run the tests in | |
that module (you can also pass multiple modules). |
#!/usr/bin/env python | |
import os | |
import re | |
import subprocess | |
import sys | |
modified = re.compile('^(?:M|A)(\s+)(?P<name>.*)') | |
CHECKS = [ |
''' | |
Demo of an implementation of the pymarc library found here: | |
http://pypi.python.org/pypi/pymarc/ | |
What does this script do? | |
Returns a list of country counts in a folder of Marc xml records & | |
coorsponding records that exist in the current database. This is used to help | |
understand how close the Marc xml records are to the existing ChronAm dataset. | |
To run this file: python extract_cntry_from_worldcatrecs.py $path_to_bib_folder |