Metadata-Version: 2.1
Name: tdcc
Version: 0.0.1
Summary: A crawler for structured product information from TDCC (Taiwan).
Home-page: https://github.com/jn8029/tdcc
Author: jn8029
Author-email: warren.y.cheng@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: bs4
Requires-Dist: requests

# Taiwan Structured Product Information Crawler
![PyPI version](https://img.shields.io/pypi/pyversions/tdcc.svg)
![PyPI license](https://img.shields.io/pypi/l/tdcc.svg)
![Package Version](https://img.shields.io/pypi/v/tdcc.svg)
![Github Last Commit](https://img.shields.io/github/last-commit/jn8029/tdcc.svg)


This is a repository that offers a StructuredProductCrawler class to crawl [Taiwan TDCC](structurednotes.tdcc.com.tw/) website for the product information.

```

from tdcc import StructuredProductCrawler
crawler = StructuredProductCrawler()
all_products = crawler.crawl()

```

## Installation
To install [this verson from PyPI](https://pypi.org/project/tdcc/), type:
```

pip install tdcc

```

To get the newest one from this repo (note that we are in the alpha stage, so there may be frequent updates), type:

```

pip install git+git://github.com/jn8029/tdcc.git

```

## To-do

* TBC


