Skip to content

Latest commit

 

History

History
56 lines (41 loc) · 1.94 KB

how_to_use_package.md

File metadata and controls

56 lines (41 loc) · 1.94 KB

🚀 Quick Start Guide for sneaky-package


🔧Installation:

pip install matplotlib_visual

Note: The matplotlib_visual package has been implemented by this-is-yaash and contains user-specific content. You are advised to follow the steps in the README.md to deploy your own Python package and upload it accordingly.

⏱️Execution:

  1. Create a Python file with .py extension and enter any of the code snippets below.
  2. Or, open a terminal and run Python interactively:
python

📊Features of this package:

  • 📍Displays source code in the console output.

models method displays source code of the file or python code snipped that has been copied from the file which was passed as an argument

    from package.models import display
    display("<filename-without-extension>")
  • 📍Stealth Copy to Clipboard for a more secure method.

graph method copies the source code to the system's clipboard.

    from package.graph import display
    display("<filename-without-extension>")
  • 📍Writes the source code into the program's root directory.

piechart method writes the file in the root directory of execution.

    from package.piechart import display
    display("<filename-without-extension>")
  • 📍Web Scraping from cl1p.net clipboard.

grab method retrieves the clipboard's text content from the specified URL and displays it in the system console. If no content is found, a message indicating "nothing found" is returned.

     from package.clp import grab
     grab('url-name')

Note: package refers to the name of your own Python package that you have deployed on PyPI. Replace package with the name of the package you uploaded to PyPI.