Metadata-Version: 2.1
Name: linkvertise
Version: 1.1.5
Summary: Python wrapper for linkvertise monetizing api.
Home-page: https://github.com/Nohet/linkvertise.py
Author: Nohet
Author-email: igorczupryniak503@gmail.com
License: MIT
Keywords: linkvertise,linkvertise wrapper,linkvertise api,linkvertise monetizing
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown

# linkvertise 1.1.5
[![Downloads](https://pepy.tech/badge/linkvertise)](https://pepy.tech/project/linkvertise)

Python wrapper for linkvertise monetizing api.
## Installation

You can install package directly from pypi

`pip install linkvertise`<br>

## Example usage

```python
from linkvertise import LinkvertiseClient

# Defining the client
client = LinkvertiseClient()

# Creating a linkvertise url, and printing it
# 25565 is your linkvertise account id, and,
# google.com is link to monetize.
link = client.linkvertise(25565, "google.com")
print(link)

# Returns https://link-to.net/25565/832.3652483894998/dynamic?r=Z29vZ2xlLmNvbQ==
```


