mfqp
1.0.0
問題用紙検索サイト
$ jq ' . | length ' data/data.json
$ jq ' .[].Link ' data/data.json | awk -F ' " ' ' { if (match($2, /pdf$/) == 0 && match($2, /drive.google.com/) == 0) { print $2 } } ' | wc
# Find the original number of papers
$ jq ' .[].Link ' data/data.json | wc
# Find the number of unique records
$ jq ' .[].Link ' data/data.json | sort | uniq | wc
# Subtract the result of the second command
# from the first to get the number of duplicates
# oneliner to find the number of duplicates
$ echo $(( `jq '.[].Link' data / data.json | sort | uniq - D | wc - l` - `jq '.[].Link' data / data.json | sort | uniq - d | wc - l` ))
data
フォルダーから以下を実行します。
python3 ../scripts/pdfFinder.py data.json
そのためにはBS4をインストールする必要があります。インストールするには、次を実行します。
pip3 install bs4 --user
これにより、 data.json
ファイルがライブラリ サイトにある PDF リンクで更新されます。次に、リポジトリのルート ディレクトリから次のコマンドを実行します。
python3 remove_dups.py
これにより、重複するエントリがすべて削除されます。
次のコマンドを実行し、新しい data.json ファイルをコミットして、このリポジトリにプッシュします。
sed -ie " s/http://10.17.32.9/https://static.metakgp.org/g " data/data.json
または、図書館サイトに戻る必要がある場合:
sed -ie " s/https://static.metakgp.org/http://10.17.32.9/g " data/data.json
GNU General Public License v3.0 (GPLv3) に基づいてライセンスされています。
詳細については、CONTRIBUTING.md ガイドをお読みください。