Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@dopt/blocks-python-client

Package Overview
Dependencies
Maintainers
5
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@dopt/blocks-python-client

[![pypi](https://img.shields.io/pypi/v/dopt-blocks-python-client.svg)](https://pypi.python.org/pypi/dopt-blocks-python-client) [![fern shield](https://img.shields.io/badge/%F0%9F%8C%BF-SDK%20generated%20by%20Fern-brightgreen)](https://github.com/fern-api/

  • 1.0.28
  • latest
  • npm
  • Socket score

Version published
Maintainers
5
Created
Source

Dopt Blocks Python Library

pypi fern shield

Installation

Add this dependency to your project's build file:

pip install dopt-blocks-python-client
# or
poetry add dopt-blocks-python-client

Usage

from dopt.client import DoptApi

client = DoptApi(api_key="YOUR_API_KEY)

# Fetch a flow from dopt, including its blocks.  The first fetch of
# this (flow.sid, flow.version) tuple will initialize the flow for
# the `user_identifier`

flow = client.flows.get_flow(
    sid="example-flow",
    version=1,
    include="block",
    user_identifier="joe_mckenney",
    group_identifier=None,
)

print(flow)

# Fetch a block for some previously initialized flow
block = client.blocks.get_block(
    uid="9sKe7gx4HZj_VI7oxfVD3", version=1, user_identifier="joe_mckenney"
)

print(block)

Async Client

import asyncio
from dopt.client import AsyncDoptApi

async_client = AsyncDoptApi(api_key="YOUR_API_KEY)

async def get_flow() -> None:
    response = async_client.flows.get_flow(
      sid="example-flow",
      version=1,
      include="block",
      user_identifier="joe_mckenney",
      group_identifier=None,
    );
    print(response)

asyncio.run(get_flow())

Contributing

While we value open-source contributions to this SDK, this library is generated programmatically. Additions made directly to this library would have to be moved over to our generation code, otherwise they would be overwritten upon the next generated release. Feel free to open a PR as a proof of concept, but know that we will not be able to merge it as-is. We suggest opening an issue first to discuss with us!

On the other hand, contributions to the README are always very welcome!

FAQs

Package last updated on 08 May 2024

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc