This file contains 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
""" | |
# Find Keywords | |
Find keywords in a text file. | |
The keywords are specificated by another text file. | |
## Arguments | |
positional arguments: | |
file File to be searched for keywords. |
This file contains 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
""" | |
Json file access API. | |
""" | |
from os.path import abspath | |
from pathlib import PurePath | |
from json import loads, dumps | |
class JsonFile: |