You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 7-8.RSVP
Socket
Socket
Sign inDemoInstall

hug_authentication_ldap

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hug_authentication_ldap

LDAP based authentication support for hug


Maintainers
1

Readme

hug_authentication_ldap

|PyPI version| |Build Status| |Coverage Status| |License| |Join the chat at https://gitter.im/timothycrosley/hug|

Easy to use LDAP based authentication support for hug:

.. code:: py

import hug
import hug_authentication_ldap


authentication = hug_authentication_ldap.basic('myldap.server.net', 'uid={user_name},ou=people')


@hug.get(requires=authentication)
def say_hello(hug_user):
    return 'Hello {}!'.format(hug_user.name)

Or, for general reusable LDAP password verification within hug:

.. code:: py

import hug
import hug_authentication_ldap


ldap_check = hug_authentication_ldap.verify('myldap.server.net', 'uid={user_name},ou=people')


@hug.get()
def check(user_name, password):
    if ldap_check(user_name, password):
        return True

    return False

Installing hug_authentication_ldap

Installing hug_authentication_ldap is as simple as:

.. code:: bash

pip3 install hug_authentication_ldap --upgrade

Ideally, within a virtual environment.

What is hug_authentication_ldap?

An extension for hug that provides LDAP based authentication support


Thanks and I hope you find hug_authentication_ldap helpful!

~Timothy Crosley

.. |PyPI version| image:: https://badge.fury.io/py/hug_authentication_ldap.svg :target: http://badge.fury.io/py/hug_authentication_ldap .. |Build Status| image:: https://travis-ci.org/timothycrosley/hug_authentication_ldap.svg?branch=master :target: https://travis-ci.org/timothycrosley/hug_authentication_ldap .. |Coverage Status| image:: https://coveralls.io/repos/timothycrosley/hug_authentication_ldap/badge.svg?branch=master&service=github :target: https://coveralls.io/github/timothycrosley/hug_authentication_ldap?branch=master .. |License| image:: https://img.shields.io/github/license/mashape/apistatus.svg :target: https://pypi.python.org/pypi/hug_authentication_ldap/ .. |Join the chat at https://gitter.im/timothycrosley/hug| image:: https://badges.gitter.im/Join%20Chat.svg :target: https://gitter.im/timothycrosley/hug?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc