Skip to main content

Python bindings for Instagram Private API

Project description

igapi-rs

PyPI Python License

Instagram 私有 API 的 Python 绑定,基于 Rust + PyO3 构建,高性能、异步优先。

支持 Android / iOS / Web 三平台模拟。

安装

pip install igapi-rs

环境要求

  • Python 3.10+

快速开始

import asyncio
import igapi
from igapi.android import Client

async def main():
    # 创建客户端
    client = Client()

    # 登录
    await client.login("username", "password")

    # 获取用户信息
    user_api = igapi.UserApi(client)
    user = await user_api.info(12345678)
    print(f"用户: @{user.username}")
    print(f"粉丝数: {user.follower_count}")

    # 搜索用户
    results = await user_api.search("instagram")
    for user in results:
        print(f"@{user.username}")

    # 获取用户动态
    feed_api = igapi.FeedApi(client)
    items, next_cursor = await feed_api.user(12345678)
    for media in items:
        print(f"媒体: {media.id}, 点赞: {media.like_count}")

asyncio.run(main())

API 参考

Android Client

from igapi.android import AccountInfo, Client

Client(
    proxy: str | None = None,
    danger_accept_invalid_certs: bool = False,
    http1_only: bool = False,
    account: AccountInfo | None = None,
)

创建 Android 平台客户端。

参数:

  • proxy (可选): 代理 URL(例如 "http://localhost:8080")
  • danger_accept_invalid_certs (可选): 是否接受无效 TLS 证书
  • http1_only (可选): 是否强制 HTTP/1.1
  • account (可选): igapi.android.AccountInfo

方法:

await login(username: str, password: str) -> None

登录 Instagram。

异常:

  • ValueError: 密码错误、用户无效
  • PermissionError: 需要重新登录 / 账号锁定 / 需要同意条款
  • igapi.TwoFactorRequired / igapi.ChallengeRequired: 需要 2FA / 安全验证
  • RuntimeError: 网络或 API 错误

await is_logged_in() -> bool

检查当前是否已登录。

会话与登出(全平台)

  • await logout() -> None:调用登出端点并清除内存登录态(登出后仍可重新 login()
  • await save_session(path: str) -> None:用 FileSessionStorage 将当前会话写入本地 JSON 文件
  • await restore_session(path: str) -> None:从 save_session() 写入的 JSON 文件恢复会话
  • export_account() -> AccountInfo:导出完整账号状态(Android/Web,同步,不需 await;iOS 暂不支持)
  • export_account_string() -> str:导出平台账号字符串(Android/Web,同步;iOS 暂不支持)

save_session/restore_session 的 JSON 格式与 export_account_string() 的账号字符串格式不同,两者不可混用读写。

资源 API 一览

所有资源 API 均以 igapi.XxxApi(client) 构造,方法为 async。完整签名见 Python LLM 速查LLM 索引

资源 API 主要方法 可用平台
igapi.UserApi info / search / id_from_username / info_by_username / web_id_from_username 全平台;web_id_from_username 仅 Web
igapi.MediaApi info / info_by_shortcode 全平台
igapi.FeedApi user / user_all 全平台
igapi.UploadApi photo / configure / photo_web / configure_web(web) 全平台
igapi.PostApi user_posts / create_photo igapi.web.Client
igapi.DirectApi create_group_thread(web) / create_group_thread_graphql(web) / send_text(web) / send_text_to_thread(web) / send_text_broadcast(android+web) Android / Web

平台命名空间

平台必须通过显式命名空间选择,不再从 igapi 顶层导入全局客户端或全局 AccountInfo

from igapi.android import AccountInfo as AndroidAccountInfo
from igapi.android import Client as AndroidClient
from igapi.ios import Client as IosClient
from igapi.web import AccountInfo as WebAccountInfo
from igapi.web import Client as WebClient

android = AndroidClient()
ios = IosClient()
web = WebClient()

Android 从结构化账号信息恢复 session:

from igapi.android import AccountIdentity, AccountInfo, Client, DeviceInfo, SessionInfo

account = AccountInfo(
    identity=AccountIdentity("username", "password"),
    device=DeviceInfo("android_id", "phone_id", "uuid", "device_id"),
    session=SessionInfo(sessionid="...", ds_user_id=123456789),
)
client = Client(account=account)

Android 和 Web 均支持账号字符串入口恢复 session:

from igapi.android import AccountInfo as AndroidAccountInfo
from igapi.web import AccountInfo, Client

android_account = AndroidAccountInfo.parse(
    "username:password||android_id;phone_id;uuid;device_id|sessionid=...; ds_user_id=...||"
)
account = AccountInfo.parse("username:password||csrf_token|sessionid=...; ds_user_id=...||")
client = Client(account=account)

account_str = client.export_account_string()

类型定义

User

class User:
    pk: int                 # 用户 ID
    username: str           # 用户名
    full_name: str          # 全名
    is_private: bool        # 是否私密账户
    profile_pic_url: str    # 头像 URL
    follower_count: int     # 粉丝数
    following_count: int    # 关注数

Media

class Media:
    id: str                 # 媒体 ID
    media_type: int         # 类型(1=图片, 2=视频, 8=轮播)
    caption_text: str       # 描述文字
    like_count: int         # 点赞数
    comment_count: int      # 评论数

Feed API 不返回独立的 Feed 类型,而是直接返回二元组:

items, next_cursor = await igapi.FeedApi(client).user(12345678)

错误处理

import asyncio
import igapi
from igapi.android import Client

async def main():
    client = Client()

    try:
        await client.login("user", "pass")
    except igapi.TwoFactorRequired as e:
        print(f"需要双因素认证: {e}")
    except igapi.ChallengeRequired as e:
        print(f"需要安全验证: {e}")
    except PermissionError as e:
        print(f"登录错误: {e}")
    except ValueError as e:
        print(f"无效输入: {e}")
    except RuntimeError as e:
        print(f"错误: {e}")

asyncio.run(main())

使用代理

# HTTP 代理
from igapi.android import Client

client = Client(proxy="http://localhost:8080")

# HTTPS 代理
client = Client(proxy="https://proxy.example.com:8080")

# SOCKS 代理
client = Client(proxy="socks5://localhost:1080")

示例

更多完整示例请参见仓库根目录的 docs/getting-started/快速上手.mddocs/api/

开发

构建

# 调试构建
maturin develop --manifest-path src/py/Cargo.toml

# 发布构建
maturin develop --release --manifest-path src/py/Cargo.toml

# 构建 wheel 包
maturin build --release --manifest-path src/py/Cargo.toml

测试

# 运行测试
python -m pytest tests/

# 类型检查
mypy --strict examples/

性能

Python 绑定使用 PyO3,保持接近原生 Rust 的性能:

  • API 调用通过 Tokio 异步处理
  • 最小化序列化开销
  • 尽可能使用零拷贝数据访问

许可证

MIT OR Apache-2.0

链接

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

igapi_rs-0.1.6.tar.gz (154.8 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

igapi_rs-0.1.6-cp312-cp312-manylinux_2_28_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

igapi_rs-0.1.6-cp312-cp312-manylinux_2_28_aarch64.whl (6.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

igapi_rs-0.1.6-cp312-cp312-macosx_10_13_x86_64.macosx_11_0_arm64.macosx_10_13_universal2.whl (12.4 MB view details)

Uploaded CPython 3.12macOS 10.13+ universal2 (ARM64, x86-64)macOS 10.13+ x86-64macOS 11.0+ ARM64

File details

Details for the file igapi_rs-0.1.6.tar.gz.

File metadata

  • Download URL: igapi_rs-0.1.6.tar.gz
  • Upload date:
  • Size: 154.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for igapi_rs-0.1.6.tar.gz
Algorithm Hash digest
SHA256 81b5173b8197efc24f82a486b7007dcca927a94f2be0d4df20ca3b0095dce3dd
MD5 9323e8281cbcdb6ae75efc3c55ed5258
BLAKE2b-256 b90f8a404695533dd42499638a44932010344a20248060c53004451a956dbe9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for igapi_rs-0.1.6.tar.gz:

Publisher: build-and-release.yml on open-luban/igapi-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file igapi_rs-0.1.6-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for igapi_rs-0.1.6-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2b925f1d463dae55f7bc1392436c922a4a3351a0db1c4fa3bf09942bd7d65286
MD5 7d15308f9b7f9dce062cde76384125bf
BLAKE2b-256 773c2790659a64409f55aa1a4c1c8024c96b68a29b349eb3cd243c0cabd75e98

See more details on using hashes here.

Provenance

The following attestation bundles were made for igapi_rs-0.1.6-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: build-and-release.yml on open-luban/igapi-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file igapi_rs-0.1.6-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for igapi_rs-0.1.6-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 14ec7fe77a6cdf45b369abf64e74d2bedc4f7d686ef021747112924665ee3750
MD5 7de02a610f554b06f16457333f46c3df
BLAKE2b-256 595c4d920257b9037e23204152c4dd337c8041e2b651d68af714643ede22cc47

See more details on using hashes here.

Provenance

The following attestation bundles were made for igapi_rs-0.1.6-cp312-cp312-manylinux_2_28_aarch64.whl:

Publisher: build-and-release.yml on open-luban/igapi-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file igapi_rs-0.1.6-cp312-cp312-macosx_10_13_x86_64.macosx_11_0_arm64.macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for igapi_rs-0.1.6-cp312-cp312-macosx_10_13_x86_64.macosx_11_0_arm64.macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 bc76fb88a8ecbbeb8ec6faa7bf6a7ba85615e50443bbb4ae1cb0437baf089b42
MD5 76aa4f6f29ca45955f6ec5cd9189e612
BLAKE2b-256 4a9d22843e4e1a7f9dae6a80875f523c81bf88177e592e5020333f2b5c6ba4d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for igapi_rs-0.1.6-cp312-cp312-macosx_10_13_x86_64.macosx_11_0_arm64.macosx_10_13_universal2.whl:

Publisher: build-and-release.yml on open-luban/igapi-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page