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

ldap2jira

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ldap2jira

Set of utilities for finding jira accounts with LDAP check and optional file map

  • 1.2.4
  • PyPI
  • Socket score

Maintainers
1

python-ldap2jira

Set of utilities for finding jira accounts with LDAP check and optional file map.

Test Coverage Pypi Upload Pypi Version Documentation Status

Pypi Package

https://pypi.org/project/ldap2jira/

Docs

https://python-ldap2jira.readthedocs.io/

Usage

Install package from pypi

pip install ldap2jira

In python

from ldap2jira import LDAP2JiraUserMap

l2j = LDAP2JiraUserMap(
    jira_url='https://yourjiraserver',
    jira_user='yourjirauser',
    jira_password='yourpassword',
    ldap_url='ldap://yourldapserver,
    ldap_base='ou=users,dc=your,dc=base',
    ldap_query_fields_username=['uid'],
    ldap_fields_username=['uid'],
    ldap_fields_mail=['mail'],
    ldap_fields_name=['cn'],
    ldap_fields_jira_search=[
        'mail', 'uid', 'cn'],
    email_domain='yourdomain.org'
)

l2j.find_jira_accounts(['usertofind', 'user2tofind'])

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