Metadata-Version: 2.1
Name: lindle
Version: 1.0.0
Summary: Lindle Python API saving tool to keep all your links all in one place
Home-page: https://lindle.me
Author: M2K Developments
Author-email: m2kdevelopments@gmail.com
License: MIT
Keywords: lindle links bookmarks
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# Lindle Py
Lindle is your ultimate solution for managing and organizing your web links with ease. This versatile Chrome extension empowers you to save, categorize, and access your online resources like never before.

<a href="https://www.buymeacoffee.com/m2kdevelopments" target="_blank">
<img src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png" alt="Buy Me A Coffee" style="height: 60px !important;width: 217px !important;" />
</a>

<a href="https://play.google.com/store/apps/details?id=com.m2kdevelopments.lindle" target="_blank">
    <img src="./googleplay.png" alt="Google Play" style="height: 85px !important" />
</a>
<a href="https://chrome.google.com/webstore/detail/igkkojjaikfmiibedalhgmfnjohlhmaj" target="_blank">
    <img src="./chromestore.png" alt="Chrome Store" style="height: 85px !important" />
</a>


## API Documentation
The <a href="https://lindle.me/api-docs">API Documentation</a> for Lindle.


## Installation
```
pip install lindle
```
or 
```
pip3 install lindle
```

## Getting Started
Get your Lindle API key from <a href="https://chrome.google.com/webstore/detail/igkkojjaikfmiibedalhgmfnjohlhmaj">Chrome Extension</a>.
<br/>
<img src="./api.png" alt="Chrome Extension" style="height: 400px !important" />

```
import lindle
apiKey = "YOUR_API";
lindle = Lindle(apiKey)
```

## Get Links
```
links = lindle.get_links()
print(links)
```


## Get Folders
```
folders = lindle.get_folders()
print(folders)
```

## Get Synced Bookmarks
```
data = lindle.get_synced_bookmarks()
print(data.folders)
print(data.links)
```


Change Log
===============================================

1.0.0 (15/02/2023) 
-----------------------------
- Initial version
