Skip to content

Instantly share code, notes, and snippets.

@iamliuzy
iamliuzy / find_keywords.py
Last active January 22, 2024 13:52
Find keywords in a text file. The keywords are specificated by another text file.
"""
# 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.
@iamliuzy
iamliuzy / jsonparse.py
Last active February 17, 2023 10:39
Json file access module for Python 3
"""
Json file access API.
"""
from os.path import abspath
from pathlib import PurePath
from json import loads, dumps
class JsonFile: