Metadata-Version: 2.1
Name: py-kraken
Version: 1.6
Summary: An easy to use module designed to download files from Kraken
Home-page: https://github.com/tha23rd/py-kraken
Author: Zach Bluhm
Author-email: zach@bluhm.io
License: MIT
Platform: UNKNOWN
Description-Content-Type: text/markdown
Requires-Dist: beautifulsoup4
Requires-Dist: certifi
Requires-Dist: chardet
Requires-Dist: idna
Requires-Dist: lxml
Requires-Dist: requests
Requires-Dist: soupsieve
Requires-Dist: urllib3

# py-kraken
A python module to download files from KrakenFiles

## Install
`pip install py-kraken`

## Command Line Use
`kraken-download https://krakenfiles.com/view/dbe8ee9c34/file.html`

## Module Use
```python
from pykraken import Kraken

kraken_link = "https://krakenfiles.com/view/dbe8ee9c34/file.html"

# Download the file to local directory
k = Kraken()
k.download_file(kraken_link)

# Convert the kraken link to a download link
download_link = k.get_download_link(kraken_link)

print(download_link)

# 'https://krakenfiles.com/force-download/YXNkejUzNERTZmRzU0RGY3YzMmRiZThlZTljMzR8MTYxNTA3MDkyNA?fileHash=dbe8ee9c34'


