Metadata-Version: 2.2
Name: libentry
Version: 1.33.5
Summary: Entries for experimental utilities.
Home-page: https://github.com/XoriieInpottn/libentry
Author: xi
Author-email: gylv@mail.ustc.edu.cn
License: Apache-2.0 license 
Platform: any
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pydantic
Requires-Dist: PyYAML
Requires-Dist: numpy
Requires-Dist: urllib3
Requires-Dist: httpx
Requires-Dist: Flask
Requires-Dist: flask-cors
Requires-Dist: gunicorn
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: platform
Dynamic: requires-dist
Dynamic: summary

# libentry
[![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/XoriieInpottn/libentry)

## Define a Service Class
1. Define a normal python class.
2. Use @api.post() or @api.get() to tag a method as API method. 
3. Ensure every API method has type hint for both arguments and return value.

## Access a Service
1. Create an APIClient instance.
2. Use its post() or get() method to send the request.


