├── .gitignore ├── LICENSE ├── README.md ├── __init__.py └── htmlcdparser.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetinkaya/pastefromhtml/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetinkaya/pastefromhtml/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetinkaya/pastefromhtml/HEAD/__init__.py -------------------------------------------------------------------------------- /htmlcdparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetinkaya/pastefromhtml/HEAD/htmlcdparser.py --------------------------------------------------------------------------------