Metadata-Version: 2.1
Name: plastron-client
Version: 4.3.2
Summary: HTTP client for interacting with Fedora 4 repositories
Author-email: University of Maryland Libraries <lib-ssdr@umd.edu>, Josh Westgard <westgard@umd.edu>, Peter Eichman <peichman@umd.edu>, Mohamed Abdul Rasheed <mohideen@umd.edu>, Ben Wallberg <wallberg@umd.edu>, David Steelman <dsteelma@umd.edu>, Marc Andreu Grillo Aguilar <aguilarm@umd.edu>
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: rdflib
Requires-Dist: requests
Requires-Dist: requests-jwtauth
Requires-Dist: urlobject
Provides-Extra: test
Requires-Dist: freezegun ; extra == 'test'
Requires-Dist: http-server-mock ; extra == 'test'
Requires-Dist: pytest ; extra == 'test'
Requires-Dist: pytest-cov ; extra == 'test'

# plastron-client

HTTP client for connecting to an LDP server

## Quick Start

```python
from plastron.client import Client, Endpoint

endpoint = Endpoint('http://localhost:8080/fcrepo/rest')
client = Client(endpoint)

response = client.get('http://localhost:8080/fcrepo/rest/foobar123')

graph = client.get_graph('http://localhost:8080/fcrepo/rest/foobar123')
```
