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

pydaisi

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pydaisi

A Python Client Interface for the Daisi Platform

  • 0.3.3.0
  • Source
  • PyPI
  • Socket score

Maintainers
1

About PyDaisi

Full documentation on the features of the PyDaisi client, as well as the platform itself, are available at the Daisi Documentation. Below is a quick overview of the basic PyDaisi usage:

Installing PyDaisi

PyDaisi can be installed with PIP:

  • pip install --upgrade pydaisi

Using PyDaisi

You can execute a Daisi simply by:

  1. Connecting to the Daisi
  2. Calling a top-level function fo that Daisi, providing arguments as needed

In this example, we connect to the Titanic Statistic Daisi, and call two different top-level functions (median and percentile):

from pydaisi import Daisi

# instantiate a Daisi object
daisi = Daisi("Titanic Statistics")

# call a Daisi function. You can also use positional parameters: daisi.median("Age")
med = daisi.median(field="Age")

print(f"Median Age of Titanic Passengers was: {med.value}")
print(f"10th Percentile of Titanic Passengers' Ages was: {daisi.percentile('Age', .1).value}")

Keywords

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

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