Socket
Socket
Sign inDemoInstall

trendy

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

trendy

A library for interacting with Trend Deep Security API


Maintainers
1

Introduction

A python library for interacting with the Trend Deep Security Management API.

Usage

The Connection class is the main entry point. It is designed to be used as a context manager to ensure that the connection is closed cleanly and consistently.

Example:

with Connection(wsdl, user, pass) as trend:
    for profile in  trend.security_profiles.all():
        profile.rules = trend.firewall_rules.by_ids(profile.firewallRules.item)

See the Trend API documention for more details on the objects and methods available.

Contributing

Make a fork, fix and send a Pull Request.

Hacking

Create a new virtual environment and install the required packages

virtualenv venv
source ./venv/bin/activate
python setup.py install

Run the unit tests

python -m unittest discover

or

python setup.py test

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