New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

google-internal-apis

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

google-internal-apis

A wrapper around various internal (and undocumented) Google APIs that use grpc and json protobufs.

0.6.1
PyPI
Maintainers
1

Google Internal APIs

Google has a lot of cool public APIs! But a lot of functionality is locked behind private, undocumented APIs. This is a project to try to make them easier to consume, as many of them use a weird version of Protobuf JSON and GRPC Protocol.

import asyncio
from google_internal_apis import get_client, LibraryService


async def main():
    client = await get_client(LibraryService)  # Google Play Books Library

    await client.get_tags()


if __name__ == '__main__':
    asyncio.run(main())

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts