generated from CodeYourFuture/Module-Template
-
-
Notifications
You must be signed in to change notification settings - Fork 76
Glasgow | 25-SDC-NOV | Katarzyna Kazimierczuk | Sprint 4 | Python shell tools #331
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
katarzynakaz
wants to merge
6
commits into
CodeYourFuture:main
Choose a base branch
from
katarzynakaz:python-shell-tools
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
9f69078
number systems done
katarzynakaz abb6c89
cat, ls and wc tasks compelted
katarzynakaz 15f4549
Remove tracked .DS_Store files
katarzynakaz cb9b93b
task completed
katarzynakaz 2ee678b
cat, la and wc changes done, removed other sprint work
katarzynakaz d32f791
readme restored
katarzynakaz File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1,4 @@ | ||
| node_modules | ||
| .DS_Store | ||
| .DS_Store | ||
| **/.DS_Store |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,47 @@ | ||
| import sys | ||
| from pathlib import Path | ||
|
|
||
| def cleanInput(listOfFiles): | ||
| cleanLinesArr = [] | ||
|
|
||
| for file in listOfFiles: | ||
| grabbedText = Path(file).read_text(encoding="utf-8") | ||
| splitLines = grabbedText.splitlines() | ||
| cleanLinesArr.extend(splitLines) | ||
|
|
||
| return cleanLinesArr | ||
|
|
||
| def takeSpecifiedAction(cleanLinesArr, flag): | ||
| countingOnlyFullLines = 1 | ||
|
|
||
| if flag not in (None, "-n", "-b"): | ||
| print("incorrect flag") | ||
| return | ||
|
|
||
| for line in cleanLinesArr: | ||
| if not flag: | ||
| print(line) | ||
| elif flag == "-n": | ||
| print(f"{countingOnlyFullLines} {line}") | ||
| countingOnlyFullLines += 1 | ||
| elif flag == "-b": | ||
| if line == "": | ||
| print("") | ||
| else: | ||
| print(f"{countingOnlyFullLines} {line}") | ||
| countingOnlyFullLines += 1 | ||
|
|
||
|
|
||
| args = sys.argv[1:] | ||
| flag = None | ||
| restIsFiles = [] | ||
|
|
||
| if len(args) > 0 and args[0] and args[0][0] == "-": | ||
| flag = args[0] | ||
| restIsFiles = args[1:] | ||
| else: | ||
| flag = None | ||
| restIsFiles = args | ||
|
|
||
| lines = cleanInput(restIsFiles) | ||
| takeSpecifiedAction(lines, flag) | ||
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,39 @@ | ||
| import sys | ||
| import os | ||
|
|
||
| # `ls -1` | ||
| def showAllFilesInDir(directory): | ||
| listOfFiles = os.listdir(directory) | ||
|
|
||
| for eachFile in listOfFiles: | ||
| if eachFile[0] != ".": | ||
| print(eachFile) | ||
|
|
||
| # `ls -1 sample-files` | ||
| def showVisibleInSampleFiles(directory): | ||
| listOfFiles = os.listdir(directory) | ||
|
|
||
| for eachFile in listOfFiles: | ||
| if eachFile[0] != ".": | ||
| print(eachFile) | ||
|
|
||
| # `ls -1 -a sample-files` | ||
| def showAllInSampleFiles(directory): | ||
| listOfFiles = os.listdir(directory) | ||
|
|
||
| for eachFile in listOfFiles: | ||
| print(eachFile) | ||
|
|
||
| argv = sys.argv[1:] | ||
|
|
||
| show_all = "-a" in argv | ||
|
|
||
| directories = [arg for arg in argv if arg != "-a"] | ||
| if not directories: | ||
| directories = ["."] | ||
|
|
||
| for directory in directories: | ||
| if show_all: | ||
| showAllInSampleFiles(directory) | ||
| else: | ||
| showVisibleInSampleFiles(directory) |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
| import sys | ||
| from pathlib import Path | ||
|
|
||
| def countAll(listOfFiles, flag=None): | ||
| for file in listOfFiles: | ||
| content = Path(file).read_text(encoding="utf-8") | ||
| if flag == "-l": | ||
| print(f"{len(content.splitlines())} {file}") | ||
| elif flag == "-w": | ||
| print(f"{len(content.split())} {file}") | ||
| elif flag == "-c": | ||
| print(f"{len(content)} {file}") | ||
| else: | ||
| print(f"{len(content.splitlines())} {len(content.split())} {len(content)} {file}") | ||
|
|
||
| argv = sys.argv[1:] | ||
| files = [arg for arg in argv if not arg.startswith("-")] | ||
|
|
||
| if "-l" in argv: | ||
| countAll(files, "-l") | ||
| elif "-w" in argv: | ||
| countAll(files, "-w") | ||
| elif "-c" in argv: | ||
| countAll(files, "-c") | ||
| else: | ||
| countAll(files) |
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.
Uh oh!
There was an error while loading. Please reload this page.