Metadata-Version: 2.4
Name: pyjstage-py312
Version: 0.1.0
Summary: J-STAGE API wrapper for Python - Python 3.12 Compatible
Home-page: https://github.com/lanshi17/pyjstage
Author: lanshi17
Author-email: lanshi17@users.noreply.github.com
License: MIT
Project-URL: Source, https://github.com/lanshi17/pyjstage
Project-URL: Original, https://github.com/matsurih/pyjstage
Keywords: jstage api wrapper japan science technology academic papers
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Scientific/Engineering :: Information Analysis
Requires-Python: >=3.12
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: certifi>=2023.0.0
Requires-Dist: chardet>=5.0.0
Requires-Dist: idna>=3.0
Requires-Dist: lxml>=5.0.0
Requires-Dist: requests>=2.31.0
Requires-Dist: urllib3>=2.0.0
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: license-file
Dynamic: project-url
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# pyjstage
![GitHub Workflow Status](https://img.shields.io/github/workflow/status/matsurih/pyjstage/Python%20package)
![PyPI version](https://img.shields.io/pypi/v/pyjstage)

## Overview
[J-STAGE WebAPI](https://www.jstage.jst.go.jp/static/pages/OtherJstageServices/TAB2/-char/ja) Wrapper for Python3.
- J-STAGE is an electronic journal platform for science and technology information in Japan, developed and managed by the Japan Science and Technology Agency (JST). 

## Prerequisites
- Python >= 3.6

## Setup
```shell script
$ pip install pyjstage
```

## Usage
You can try this library like this:

```python
from pyjstage.pyjstage import Pyjstage


jstage = Pyjstage()

ret_search = jstage.search(issn='2186-6619', count=1)
ret_list = jstage.list(issn='2186-6619')

# ret_(search/list) is a (Search/List)Result Object.
```

If you need more information, see function-definitions in jstage/jstage.py (Sorry for no documentation... I'll write later.)

## License
- MIT License, see [LICENSE](https://github.com/matsurih/pyjstage/blob/master/LICENSE) file.
