Metadata-Version: 2.1
Name: Lancerkit
Version: 1.0.0
Summary: Python SDK for Lancerkit API
Home-page: https://lancerkit.com
Author: Alexis Clarembeau
Author-email: contact@lancerkit.com

# Lancerkit SDK

The Lancerkit SDK is a Python Library that provides an easy-to-use interface for integrating the Lancerkit web application into your own applications.

## Installation

You can install the Lancerkit SDK using npm:

```bash 
pip install lancerkit 
``` 

## Usage

First, you need to create an instance of the Lancerkit class with your Lancerkit API key (in order to get your key, please signup at [https://lancerkit.com](https://lancerkit.com) ):

```ruby
import lancerkit 
client = lancerkit.Lancerkit.new('YOUR_API_KEY') 
```

Then, you can call the different methods to interact with the application. 

For instance: 
```js 
data = client.list_documents(page=2, sort='-date').json()
```

## Contributing

If you would like to contribute to the Lancerkit SDK, please submit a pull request on Github.
