Skip to main content

A Python wrapper around the UN's ISIC definitions

Project description

This is just a Python-friendly way to reference revision 4 of the International Standard Industrial Classification (ISIC). It’s the result of pulling down this URL and formatting it into a native Python object. For more information, or to see this data in other original source formats, visit the UN here.

How Do I Use It?

It’s really not very advanced. Just import it and reference it however you like:

from isic import ISIC


print(ISIC["02"])  # "Forestry and logging"
print(ISIC["B"])  # "Mining and quarrying"

It’s also handy if you want to use it in a Django model:

from django.db import models
from isic import ISIC


class MyModel(models.Model):
    industry = models.CharField(max_length=5, choices=ISIC.items())

Installation

It’s on PyPi, so just install it with pip.

$ pip install isic

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

isic-1.0.0.tar.gz (14.2 kB view hashes)

Uploaded Source

Built Distribution

isic-1.0.0-py2.py3-none-any.whl (14.2 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page