├── .DS_Store ├── .gitignore ├── README.md ├── config.yaml ├── requirements.txt ├── results ├── DEX_arxiv_6_AUG_2021.json ├── arxiv_papers_6_Aug_2021.json ├── test.json ├── test2.json ├── test3.json └── test4.json └── src ├── convert_json_to_md.py ├── filter_json.py └── main.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irnb/DeFiPapers/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | venv 2 | .vscode -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irnb/DeFiPapers/HEAD/README.md -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irnb/DeFiPapers/HEAD/config.yaml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irnb/DeFiPapers/HEAD/requirements.txt -------------------------------------------------------------------------------- /results/DEX_arxiv_6_AUG_2021.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /results/arxiv_papers_6_Aug_2021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irnb/DeFiPapers/HEAD/results/arxiv_papers_6_Aug_2021.json -------------------------------------------------------------------------------- /results/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irnb/DeFiPapers/HEAD/results/test.json -------------------------------------------------------------------------------- /results/test2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irnb/DeFiPapers/HEAD/results/test2.json -------------------------------------------------------------------------------- /results/test3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irnb/DeFiPapers/HEAD/results/test3.json -------------------------------------------------------------------------------- /results/test4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irnb/DeFiPapers/HEAD/results/test4.json -------------------------------------------------------------------------------- /src/convert_json_to_md.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irnb/DeFiPapers/HEAD/src/convert_json_to_md.py -------------------------------------------------------------------------------- /src/filter_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irnb/DeFiPapers/HEAD/src/filter_json.py -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irnb/DeFiPapers/HEAD/src/main.py --------------------------------------------------------------------------------