This repository was archived by the owner on Feb 6, 2022. It is now read-only.
Create ppm.py: PPM stands for Pansy Package Manager#42
Open
adithraghavs wants to merge 1 commit intoandrefpoliveira:masterfrom
Open
Create ppm.py: PPM stands for Pansy Package Manager#42adithraghavs wants to merge 1 commit intoandrefpoliveira:masterfrom
adithraghavs wants to merge 1 commit intoandrefpoliveira:masterfrom
Conversation
This is the package manager I told you I'd PR to you over on discord. PPM stands for Pansy Package Manager. All the modules in PIP or NPM are located in a website and pip/npm downloads them from that website.I am using my website in this PR, but you can use any website you want. In that website, you need to upload a text file (.txt extension) and NOT a pansy file. The file will get converted to a pansy file later. This is because a browser doesn't know how to render the pansy file on the screen. So it will download it in the downloads folder or anywhere on the computer where the user specifies it to download. We do not want that to happen, so we download the txt file from the website, then rename its extension to .pansy. It gets downloaded in a folder called pansy_modules, in which all the modules we download are stored. This is usually how npm modules do it. once you download it, my script will print a success message, and you can access the modules via the imports() inbuilt function. This is my first contribution to open source, so be sure to give me some feedback on how I can improve! Hope you like it!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This is the package manager I told you I'd PR to you over on discord. PPM stands for Pansy Package Manager. All the modules in PIP or NPM are located in a website and pip/npm downloads them from that website.I am using my website in this PR, but you can use any website you want. In that website, you need to upload a text file (.txt extension) and NOT a pansy file. The file will get converted to a pansy file later. This is because a browser doesn't know how to render the pansy file on the screen. So it will download it in the downloads folder or anywhere on the computer where the user specifies it to download. We do not want that to happen, so we download the txt file from the website, then rename its extension to .pansy. It gets downloaded in a folder called pansy_modules, in which all the modules we download are stored. This is usually how npm modules do it. once you download it, my script will print a success message, and you can access the modules via the imports() inbuilt function. This is my first contribution to open source, so be sure to give me some feedback on how I can improve! Hope you like it!