Metadata-Version: 2.1
Name: HalApyJson
Version: 0.0.1
Summary: Python modules for parsing the response to a HAL API request
Home-page: https://github.com/TickyWill/ScopusApyJson
Author: BiblioAbnalysis team
Author-email: francois.bertin7@wanadoo.fr, amal.chabli@orange.fr
License: MIT
Keywords: Metadata parsing,Scopus parsing,API management
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Scientific/Engineering :: Information Analysis
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Science/Research
Description-Content-Type: text/markdown
License-File: LICENSE

# HalApyJson
## Description
A light interface to query [HAL](https://api.archives-ouvertes.fr/docs) through its API.

## Installation
Run the following to install:
```python
pip install HalApyJson
```

## Usage example
```python
import HalApyJson as ha
year = "2023"
institute = "Liten"
hal_df = ha.build_hal_df_from_api(year,institute)
hal_df.to_excel(<your_fullpath_file.xlsx>), index = False)
```
**for more exemples refer to** [HalApyJson-exemples](https://github.com/Bertin-fap/HalApyJson/blob/main/Demo_HalApyJson.ipynb).


# Release History
1.0.0 first release


# Meta
	- authors : BiblioAbnalysis team

Distributed under the [MIT license](https://mit-license.org/)

