{ "info": { "author": "Rachit Bhargava", "author_email": "rachitbhargava99@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "Operating System :: OS Independent", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7" ], "description": "# Google Encoding Helper Package\n\nThis package is intended to be used to quickly translate the normal text into polyline encoded format.\n\nThis package must not be used for other purposes, and if it is, it may throw in exception and may also cause your program to crash.\n\nTo use this package, simply import gencoder after install it using the pip installer.\nThen, call the encoding function through the path:\n`gencoder.polycoder.super_encoder`\n\nThis function requires the coordinates to be provided as the input in `str` format.\nThe latitude and longitude must be separated with a comma.\n\nAlso, this package provides the facility to use the encoder on multiple coordinates.\nThis is facilitated by the use of lists, which means that you would need to separate the coordinates with the usage of lists.\n\nHere is an example input:\n\n`super_encoder(['38.5, -120.2', '40.7, -120.95', '43.252, -126.453'])`\n\nThe ideal output to this query shall be:\n\n`_p~iF~ps|U_ulLnnqC_mqNvxq@`\n\nOutput Type: `str`\n\n