├── README.md └── topicrankpy ├── LICENSE ├── MANIFEST.in ├── README.md ├── build └── lib │ └── topicrankpy │ ├── __init__.py │ ├── base.py │ ├── data_structures.py │ ├── extractinformation.py │ ├── readers.py │ ├── topicrank.py │ └── utils.py ├── dist ├── topicrankpy-1.0.5-py3-none-any.whl └── topicrankpy-1.0.5.tar.gz ├── requirements.txt ├── setup.py ├── topicrankpy.egg-info ├── PKG-INFO ├── SOURCES.txt ├── dependency_links.txt ├── requires.txt └── top_level.txt └── topicrankpy ├── __init__.py ├── __pycache__ ├── __init__.cpython-37.pyc ├── extractinformation.cpython-37.pyc └── topicrank.cpython-37.pyc ├── base.py ├── data_structures.py ├── extractinformation.py ├── readers.py ├── topicrank.py └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aayushpatel007/topicrankpy/HEAD/README.md -------------------------------------------------------------------------------- /topicrankpy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aayushpatel007/topicrankpy/HEAD/topicrankpy/LICENSE -------------------------------------------------------------------------------- /topicrankpy/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.md LICENSE 2 | 3 | -------------------------------------------------------------------------------- /topicrankpy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aayushpatel007/topicrankpy/HEAD/topicrankpy/README.md -------------------------------------------------------------------------------- /topicrankpy/build/lib/topicrankpy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aayushpatel007/topicrankpy/HEAD/topicrankpy/build/lib/topicrankpy/__init__.py -------------------------------------------------------------------------------- /topicrankpy/build/lib/topicrankpy/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aayushpatel007/topicrankpy/HEAD/topicrankpy/build/lib/topicrankpy/base.py -------------------------------------------------------------------------------- /topicrankpy/build/lib/topicrankpy/data_structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aayushpatel007/topicrankpy/HEAD/topicrankpy/build/lib/topicrankpy/data_structures.py -------------------------------------------------------------------------------- /topicrankpy/build/lib/topicrankpy/extractinformation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aayushpatel007/topicrankpy/HEAD/topicrankpy/build/lib/topicrankpy/extractinformation.py -------------------------------------------------------------------------------- /topicrankpy/build/lib/topicrankpy/readers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aayushpatel007/topicrankpy/HEAD/topicrankpy/build/lib/topicrankpy/readers.py -------------------------------------------------------------------------------- /topicrankpy/build/lib/topicrankpy/topicrank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aayushpatel007/topicrankpy/HEAD/topicrankpy/build/lib/topicrankpy/topicrank.py -------------------------------------------------------------------------------- /topicrankpy/build/lib/topicrankpy/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aayushpatel007/topicrankpy/HEAD/topicrankpy/build/lib/topicrankpy/utils.py -------------------------------------------------------------------------------- /topicrankpy/dist/topicrankpy-1.0.5-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aayushpatel007/topicrankpy/HEAD/topicrankpy/dist/topicrankpy-1.0.5-py3-none-any.whl -------------------------------------------------------------------------------- /topicrankpy/dist/topicrankpy-1.0.5.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aayushpatel007/topicrankpy/HEAD/topicrankpy/dist/topicrankpy-1.0.5.tar.gz -------------------------------------------------------------------------------- /topicrankpy/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aayushpatel007/topicrankpy/HEAD/topicrankpy/requirements.txt -------------------------------------------------------------------------------- /topicrankpy/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aayushpatel007/topicrankpy/HEAD/topicrankpy/setup.py -------------------------------------------------------------------------------- /topicrankpy/topicrankpy.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aayushpatel007/topicrankpy/HEAD/topicrankpy/topicrankpy.egg-info/PKG-INFO -------------------------------------------------------------------------------- /topicrankpy/topicrankpy.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aayushpatel007/topicrankpy/HEAD/topicrankpy/topicrankpy.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /topicrankpy/topicrankpy.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /topicrankpy/topicrankpy.egg-info/requires.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aayushpatel007/topicrankpy/HEAD/topicrankpy/topicrankpy.egg-info/requires.txt -------------------------------------------------------------------------------- /topicrankpy/topicrankpy.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | topicrankpy 2 | -------------------------------------------------------------------------------- /topicrankpy/topicrankpy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aayushpatel007/topicrankpy/HEAD/topicrankpy/topicrankpy/__init__.py -------------------------------------------------------------------------------- /topicrankpy/topicrankpy/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aayushpatel007/topicrankpy/HEAD/topicrankpy/topicrankpy/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /topicrankpy/topicrankpy/__pycache__/extractinformation.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aayushpatel007/topicrankpy/HEAD/topicrankpy/topicrankpy/__pycache__/extractinformation.cpython-37.pyc -------------------------------------------------------------------------------- /topicrankpy/topicrankpy/__pycache__/topicrank.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aayushpatel007/topicrankpy/HEAD/topicrankpy/topicrankpy/__pycache__/topicrank.cpython-37.pyc -------------------------------------------------------------------------------- /topicrankpy/topicrankpy/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aayushpatel007/topicrankpy/HEAD/topicrankpy/topicrankpy/base.py -------------------------------------------------------------------------------- /topicrankpy/topicrankpy/data_structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aayushpatel007/topicrankpy/HEAD/topicrankpy/topicrankpy/data_structures.py -------------------------------------------------------------------------------- /topicrankpy/topicrankpy/extractinformation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aayushpatel007/topicrankpy/HEAD/topicrankpy/topicrankpy/extractinformation.py -------------------------------------------------------------------------------- /topicrankpy/topicrankpy/readers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aayushpatel007/topicrankpy/HEAD/topicrankpy/topicrankpy/readers.py -------------------------------------------------------------------------------- /topicrankpy/topicrankpy/topicrank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aayushpatel007/topicrankpy/HEAD/topicrankpy/topicrankpy/topicrank.py -------------------------------------------------------------------------------- /topicrankpy/topicrankpy/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aayushpatel007/topicrankpy/HEAD/topicrankpy/topicrankpy/utils.py --------------------------------------------------------------------------------