{
"info": {
"author": "Sumudu Tennakoon",
"author_email": "",
"bugtrack_url": null,
"classifiers": [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
"Topic :: Software Development"
],
"description": "# TextAnalyticsLab (Text Analytics Toolkit for Python)\n## Current release: TextLab [v0.1.2]\n\n\n\n## TextAnalyticsLab - a collection of Text Analytics tools for Python.\n\n
\n\n## Introduction\n'TextAnalyticsLab' is a Python package providing a set of text analytics tools \nfor data mining and machine learning projects and end-to-end text analytics \napplication development. It is compatible with and interoperate with data \nanalysis and manipulation library Pandas, natural language processing library \nnltk, Machine Lerning TookKit (pymltoolkit|mltk), and many other AI and machine \nlearning platforms. \n\n## Installation\n```\npip install TextAnalyticsLab\n```\nIf the installation failed with dependancy issues, execute the above command with --no-dependencies\n\n```\npip install TextAnalyticsLab --no-dependencies\n```\n\n## Functions\n- Text Similarity\n- Text Mining and Information Extraction (in v0.2.0)\n- Cleaning Text content (in v0.1.5)\n- Web Scraping (in v0.1.5)\n- Classification of Text Conent (in v0.2.0)\n\n\n## Usage\n```python\nimport textlab\n```\n\n### Warning: Python Variable, Function or Class names \nThe Python interpreter has a number of built-in functions. It is possible to overwrite thier definitions when coding without any rasing a warning from the Python interpriter. (https://docs.python.org/3/library/functions.html)\nTherfore, AVOID THESE NAMES as your variable, function or class names.\n
| abs | all | any | ascii | bin | bool | bytearray | bytes |
| callable | chr | classmethod | compile | complex | delattr | dict | dir |
| divmod | enumerate | eval | exec | filter | float | format | frozenset |
| getattr | globals | hasattr | hash | help | hex | id | input |
| int | isinstance | issubclass | iter | len | list | locals | map |
| max | memoryview | min | next | object | oct | open | ord |
| pow | property | range | repr | reversed | round | set | |
| setattr | slice | sorted | staticmethod | str | sum | super | tuple |
| type | vars | zip | __import__ |