hikerapi


Namehikerapi JSON
Version 0.0.2 PyPI version JSON
download
home_pagehttps://hikerapi.com
SummaryHikerApi client, for Python 3.
upload_time2024-04-28 11:59:23
maintainerNone
docs_urlNone
authorHikerAPI
requires_python>=3.8
licenseMIT
keywords instagram private api instagram-private-api instagram api instagram-api instagram instagram-scraper instagram-client instagram-stories instagram-feed instagram-reels instagram-insights downloader uploader videos photos albums igtv reels stories pictures instagram-user-photos instagram-photos instagram-metadata instagram-downloader instagram-uploader
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Hikerapi client, for Python 3

## Installation

```
pip install hikerapi
```

## Usage

Create a token https://hikerapi.com/tokens and copy "Access key"

```python
from hikerapi import Client

cl = Client(token="<ACCESS_KEY>")
user = cl.user_by_username_v2("instagram")
print(user)
```

```python
from hikerapi import AsyncClient

cl = AsyncClient(token="<ACCESS_KEY>")
user = await cl.user_by_username_v2("instagram")
print(user)
```

## Run tests

```
HIKERAPI_TOKEN=<token> pytest -v tests.py

HIKERAPI_TOKEN=<token> pytest -v tests.py::test_search_music
```

            

Raw data

            {
    "_id": null,
    "home_page": "https://hikerapi.com",
    "name": "hikerapi",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "instagram private api, instagram-private-api, instagram api, instagram-api, instagram, instagram-scraper, instagram-client, instagram-stories, instagram-feed, instagram-reels, instagram-insights, downloader, uploader, videos, photos, albums, igtv, reels, stories, pictures, instagram-user-photos, instagram-photos, instagram-metadata, instagram-downloader, instagram-uploader",
    "author": "HikerAPI",
    "author_email": "support@hikerapi.com",
    "download_url": "https://files.pythonhosted.org/packages/c1/48/061f40b63569f0688f809e0f57ea660ee1b9216cc72d6c006631d5b334c0/hikerapi-0.0.2.tar.gz",
    "platform": null,
    "description": "# Hikerapi client, for Python 3\n\n## Installation\n\n```\npip install hikerapi\n```\n\n## Usage\n\nCreate a token https://hikerapi.com/tokens and copy \"Access key\"\n\n```python\nfrom hikerapi import Client\n\ncl = Client(token=\"<ACCESS_KEY>\")\nuser = cl.user_by_username_v2(\"instagram\")\nprint(user)\n```\n\n```python\nfrom hikerapi import AsyncClient\n\ncl = AsyncClient(token=\"<ACCESS_KEY>\")\nuser = await cl.user_by_username_v2(\"instagram\")\nprint(user)\n```\n\n## Run tests\n\n```\nHIKERAPI_TOKEN=<token> pytest -v tests.py\n\nHIKERAPI_TOKEN=<token> pytest -v tests.py::test_search_music\n```\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "HikerApi client, for Python 3.",
    "version": "0.0.2",
    "project_urls": {
        "Homepage": "https://hikerapi.com"
    },
    "split_keywords": [
        "instagram private api",
        " instagram-private-api",
        " instagram api",
        " instagram-api",
        " instagram",
        " instagram-scraper",
        " instagram-client",
        " instagram-stories",
        " instagram-feed",
        " instagram-reels",
        " instagram-insights",
        " downloader",
        " uploader",
        " videos",
        " photos",
        " albums",
        " igtv",
        " reels",
        " stories",
        " pictures",
        " instagram-user-photos",
        " instagram-photos",
        " instagram-metadata",
        " instagram-downloader",
        " instagram-uploader"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c148061f40b63569f0688f809e0f57ea660ee1b9216cc72d6c006631d5b334c0",
                "md5": "579f8e64ad704c9f98c9f67e8eb15369",
                "sha256": "d23b0d3e749e1ceaacc21be2bfcc1530d20536400d17d21bbb2d74f5478298fd"
            },
            "downloads": -1,
            "filename": "hikerapi-0.0.2.tar.gz",
            "has_sig": false,
            "md5_digest": "579f8e64ad704c9f98c9f67e8eb15369",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 11579,
            "upload_time": "2024-04-28T11:59:23",
            "upload_time_iso_8601": "2024-04-28T11:59:23.882564Z",
            "url": "https://files.pythonhosted.org/packages/c1/48/061f40b63569f0688f809e0f57ea660ee1b9216cc72d6c006631d5b334c0/hikerapi-0.0.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-28 11:59:23",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "hikerapi"
}
        
Elapsed time: 0.35534s