Source code for pycic.category

# -*- coding: utf-8 -*-

"""
Category class definition.

This module contains the Category class definition

"""

from .base import BaseMethod


[docs]class Category(BaseMethod): """Retrieve all categories available in the account.""" def __init__(self, base_url="http://api.cic.mx", version=0, account="nl", proxies=None): BaseMethod.__init__(self, base_url, version, account, proxies) self.method = "categories"
Read the Docs v: latest
Versions
latest
Downloads
PDF
HTML
Epub
On Read the Docs
Project Home
Builds

Free document hosting provided by Read the Docs.