Metadata-Version: 2.4
Name: myapiclient-vishal
Version: 0.2.0
Summary: Reusable API client
Author-email: Vishal Tiwari <vishaltiwari.up2022@gmail.com>
Project-URL: Homepage, https://github.com/yourusername/myapiclient
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: build>=1.1.1
Requires-Dist: requests
Requires-Dist: twine>=4.0.2
Dynamic: license-file

# My API Client

Simple reusable Python API client.

## Installation
pip install myapiclient-vishal

## Usage
```python
from myapiclient import APIClient

client = APIClient("https://jsonplaceholder.typicode.com")
print(client.get("posts"))
