Skip to main content

Posts

Showing posts with the label modules

Python module download stats

I would like to show you how to add a widget to your personal website or blog to show your python package download stats Firstly make sure you have a valid package on  Python Package Index . If you never know that you can upload your own package then head over to  upload your package to the Python Package Index  and upload one. Copy your package name which ends at  https://pypi.org/project/ googleDriveFileDownloader PACKAGE_NAME : googleDriveFileDownloader and replace it in the below URL https://img.shields.io/pypi/dm/ PACKAGE_NAME?color=green You can now go to the link and it would show you the download count on of the package(As shown below). Download stats — Python Package You even have the flexibility to change the color of the count by simply adding a  color  attribute to the link and embed it where ever you want to as an image. Example embed code : <a href=" https://pypi.org/project/ PACKAGE_NAME / " alt="PACKAGE_NAM...