├── .gitignore ├── Examples ├── 1_GetWorksFromAuthor.py ├── 2_GetWorksViaSearch.py ├── 3_GetInstitutionsFromCountry.py ├── 4_GetNetworkFromQuery.py ├── 5_GetNetworkFromSavedData.py ├── 6_AggregateEntities.py ├── data │ └── works_search.jsonl └── query_files │ ├── query_file_example1.csv │ └── query_file_example2.csv ├── LICENSE ├── MANIFEST.in ├── OpenAlex_Demo.ipynb ├── README.md ├── openalexnet ├── __init__.py ├── __main__.py ├── api.py ├── network.py ├── standalone.py └── utilities.py ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipinascimento/openalexnet/HEAD/.gitignore -------------------------------------------------------------------------------- /Examples/1_GetWorksFromAuthor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipinascimento/openalexnet/HEAD/Examples/1_GetWorksFromAuthor.py -------------------------------------------------------------------------------- /Examples/2_GetWorksViaSearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipinascimento/openalexnet/HEAD/Examples/2_GetWorksViaSearch.py -------------------------------------------------------------------------------- /Examples/3_GetInstitutionsFromCountry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipinascimento/openalexnet/HEAD/Examples/3_GetInstitutionsFromCountry.py -------------------------------------------------------------------------------- /Examples/4_GetNetworkFromQuery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipinascimento/openalexnet/HEAD/Examples/4_GetNetworkFromQuery.py -------------------------------------------------------------------------------- /Examples/5_GetNetworkFromSavedData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipinascimento/openalexnet/HEAD/Examples/5_GetNetworkFromSavedData.py -------------------------------------------------------------------------------- /Examples/6_AggregateEntities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipinascimento/openalexnet/HEAD/Examples/6_AggregateEntities.py -------------------------------------------------------------------------------- /Examples/data/works_search.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipinascimento/openalexnet/HEAD/Examples/data/works_search.jsonl -------------------------------------------------------------------------------- /Examples/query_files/query_file_example1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipinascimento/openalexnet/HEAD/Examples/query_files/query_file_example1.csv -------------------------------------------------------------------------------- /Examples/query_files/query_file_example2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipinascimento/openalexnet/HEAD/Examples/query_files/query_file_example2.csv -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipinascimento/openalexnet/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipinascimento/openalexnet/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /OpenAlex_Demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipinascimento/openalexnet/HEAD/OpenAlex_Demo.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipinascimento/openalexnet/HEAD/README.md -------------------------------------------------------------------------------- /openalexnet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipinascimento/openalexnet/HEAD/openalexnet/__init__.py -------------------------------------------------------------------------------- /openalexnet/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipinascimento/openalexnet/HEAD/openalexnet/__main__.py -------------------------------------------------------------------------------- /openalexnet/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipinascimento/openalexnet/HEAD/openalexnet/api.py -------------------------------------------------------------------------------- /openalexnet/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipinascimento/openalexnet/HEAD/openalexnet/network.py -------------------------------------------------------------------------------- /openalexnet/standalone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipinascimento/openalexnet/HEAD/openalexnet/standalone.py -------------------------------------------------------------------------------- /openalexnet/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipinascimento/openalexnet/HEAD/openalexnet/utilities.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | python-igraph 2 | tqdm 3 | requests 4 | pandas 5 | xnetwork 6 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipinascimento/openalexnet/HEAD/setup.py --------------------------------------------------------------------------------