linkvertise-bypasser


Namelinkvertise-bypasser JSON
Version 0.1.1 PyPI version JSON
download
home_pageNone
SummaryBypass linkvertise links using the internal API
upload_time2024-08-28 16:03:43
maintainerNone
docs_urlNone
authorMRtecno98
requires_python<4.0,>=3.10
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Linkvertise Bypasser

Bypasses linkvertise links by accessing their internal GraphQL API,
without the need of a browser.

# Example Usage

## Basic single URL

```python
import linkvertise_bypasser as linkvertise

ad_url = "https://linkvertise.com/12345/example"
url = linkvertise.bypass(ad_url)
```

## From User ID and Post name

```python
import linkvertise_bypasser as linkvertise

post = linkvertise.Post(12345, "example")
url = linkvertise.get_url(post)
```

## Keeping session between requests

```python
import requests
import linkvertise_bypasser as linkvertise

session = requests.Session()
for ad_url in urls:
	url = linkvertise.bypass(ad_url, session=session)
```
            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "linkvertise-bypasser",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<4.0,>=3.10",
    "maintainer_email": null,
    "keywords": null,
    "author": "MRtecno98",
    "author_email": "mr.tecno98@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/85/82/bd6c732a6baf4def9cad353950f8067b41abfc0c1c0d5d797c0fb82833bf/linkvertise_bypasser-0.1.1.tar.gz",
    "platform": null,
    "description": "# Linkvertise Bypasser\n\nBypasses linkvertise links by accessing their internal GraphQL API,\nwithout the need of a browser.\n\n# Example Usage\n\n## Basic single URL\n\n```python\nimport linkvertise_bypasser as linkvertise\n\nad_url = \"https://linkvertise.com/12345/example\"\nurl = linkvertise.bypass(ad_url)\n```\n\n## From User ID and Post name\n\n```python\nimport linkvertise_bypasser as linkvertise\n\npost = linkvertise.Post(12345, \"example\")\nurl = linkvertise.get_url(post)\n```\n\n## Keeping session between requests\n\n```python\nimport requests\nimport linkvertise_bypasser as linkvertise\n\nsession = requests.Session()\nfor ad_url in urls:\n\turl = linkvertise.bypass(ad_url, session=session)\n```",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Bypass linkvertise links using the internal API",
    "version": "0.1.1",
    "project_urls": null,
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "caff514723910eb5c3300aba5f75bf5f242bbf57c6b6f8adf7e26de1a5af70f5",
                "md5": "2ff07da6ff334ccb1e6cf0d0c219d768",
                "sha256": "2bd29d04bb003dcddbe8fe1d0e901e79a8c7fe3c662651b70fe294a156bc5c12"
            },
            "downloads": -1,
            "filename": "linkvertise_bypasser-0.1.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "2ff07da6ff334ccb1e6cf0d0c219d768",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4.0,>=3.10",
            "size": 7538,
            "upload_time": "2024-08-28T16:03:42",
            "upload_time_iso_8601": "2024-08-28T16:03:42.279113Z",
            "url": "https://files.pythonhosted.org/packages/ca/ff/514723910eb5c3300aba5f75bf5f242bbf57c6b6f8adf7e26de1a5af70f5/linkvertise_bypasser-0.1.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8582bd6c732a6baf4def9cad353950f8067b41abfc0c1c0d5d797c0fb82833bf",
                "md5": "e500cd596f2c83d318cbdac35e30ceb5",
                "sha256": "e18cfb47c71516f3e31e880ec78a45b1d2f47d9c2195cc2b771d6384b7ef06ff"
            },
            "downloads": -1,
            "filename": "linkvertise_bypasser-0.1.1.tar.gz",
            "has_sig": false,
            "md5_digest": "e500cd596f2c83d318cbdac35e30ceb5",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4.0,>=3.10",
            "size": 4877,
            "upload_time": "2024-08-28T16:03:43",
            "upload_time_iso_8601": "2024-08-28T16:03:43.603727Z",
            "url": "https://files.pythonhosted.org/packages/85/82/bd6c732a6baf4def9cad353950f8067b41abfc0c1c0d5d797c0fb82833bf/linkvertise_bypasser-0.1.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-08-28 16:03:43",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "linkvertise-bypasser"
}
        
Elapsed time: 7.84759s