Development of an internal social media platform with personalised dashboards for students
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

METADATA 4.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. Metadata-Version: 2.1
  2. Name: ldap3
  3. Version: 2.5
  4. Summary: A strictly RFC 4510 conforming LDAP V3 pure Python client library
  5. Home-page: https://github.com/cannatag/ldap3
  6. Author: Giovanni Cannata
  7. Author-email: cannatag@gmail.com
  8. License: LGPL v3
  9. Keywords: python3 python2 ldap
  10. Platform: UNKNOWN
  11. Classifier: Development Status :: 5 - Production/Stable
  12. Classifier: Intended Audience :: Developers
  13. Classifier: Intended Audience :: System Administrators
  14. Classifier: Operating System :: MacOS :: MacOS X
  15. Classifier: Operating System :: Microsoft :: Windows
  16. Classifier: Operating System :: POSIX :: Linux
  17. Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
  18. Classifier: Programming Language :: Python
  19. Classifier: Programming Language :: Python :: 2
  20. Classifier: Programming Language :: Python :: 3
  21. Classifier: Topic :: Software Development :: Libraries :: Python Modules
  22. Classifier: Topic :: System :: Systems Administration :: Authentication/Directory :: LDAP
  23. Requires-Dist: pyasn1 (>=0.1.8)
  24. LDAP3
  25. =====
  26. .. image:: https://img.shields.io/pypi/v/ldap3.svg
  27. :target: https://pypi.python.org/pypi/ldap3/
  28. :alt: Latest Version
  29. .. image:: https://img.shields.io/pypi/l/ldap3.svg
  30. :target: https://pypi.python.org/pypi/ldap3/
  31. :alt: License
  32. .. image:: https://img.shields.io/travis/cannatag/ldap3/master.svg
  33. :target: https://travis-ci.org/cannatag/ldap3
  34. :alt: TRAVIS-CI build status for master branch
  35. ldap3 is a strictly RFC 4510 conforming **LDAP V3 pure Python client** library. The same codebase runs in Python 2, Python 3, PyPy and PyPy3.
  36. Version 2 warning
  37. -----------------
  38. In version 2 of ldap3 some default values have been changed and the ldap3 namespace has been decluttered, removing redundant
  39. constants (look at the changelog for details). Also, the result code constants were moved to ldap3.core.results and the ldap3 custom exceptions
  40. were stored in ldap3.core.exceptions. If you experience errors in your existing code you should rearrange the import statements or explicitly
  41. set the defaults to their former values.
  42. A more pythonic LDAP
  43. --------------------
  44. LDAP operations look clumsy and hard-to-use because they reflect the old-age idea that time-consuming operations should be performed client-side
  45. to not hog the server with heavy elaborations. To alleviate this ldap3 includes a fully functional **Abstraction Layer** that lets you
  46. interact with the LDAP server in a modern and *pythonic* way. With the Abstraction Layer you don't need to directly issue any LDAP operation at all.
  47. Home Page
  48. ---------
  49. Project home page is https://github.com/cannatag/ldap3
  50. Documentation
  51. -------------
  52. Documentation is available at http://ldap3.readthedocs.io
  53. License
  54. -------
  55. The ldap3 project is open source software released under the **LGPL v3 license**.
  56. Copyright 2013 - 2018 Giovanni Cannata
  57. PEP8 Compliance
  58. ---------------
  59. ldap3 is PEP8 compliant, except for line length.
  60. Download
  61. --------
  62. Package download is available at https://pypi.python.org/pypi/ldap3.
  63. Install
  64. -------
  65. Install with **pip install ldap3**
  66. Git repository
  67. --------------
  68. You can download the latest source at https://github.com/cannatag/ldap3
  69. Continuous integration
  70. ----------------------
  71. Continuous integration for testing is at https://travis-ci.org/cannatag/ldap3
  72. Support
  73. -------
  74. You can submit support tickets on https://github.com/cannatag/ldap3/issues/new
  75. You can submit pull request on the **dev** branch at https://github.com/cannatag/ldap3/tree/dev
  76. Thanks to
  77. ---------
  78. * **Ilya Etingof**, the author of the *pyasn1* package for his excellent work and support.
  79. * **Mark Lutz** for his *Learning Python* and *Programming Python* excellent books series and **John Goerzen** and **Brandon Rhodes** for their book *Foundations of Python Network Programming*. These books are wonderful tools for learning Python and this project owes a lot to them.
  80. * **JetBrains** for donating to this project the Open Source license of *PyCharm Professional*.
  81. * **GitHub** for providing the *free source repository space and the tools* I use to develop this project.
  82. * The **FreeIPA** team for letting me use their demo LDAP server in the ldap3 tutorial.
  83. Contact me
  84. ----------
  85. For information and suggestions you can contact me at cannatag@gmail.com. You can also open a support ticket on https://github.com/cannatag/ldap3/issues/new
  86. Donate
  87. ------
  88. If you want to keep this project up and running you can send me an Amazon gift card. I will use it to improve my skills in the Information and Communication technology.
  89. Changelog
  90. ---------
  91. Updated changelog at https://ldap3.readthedocs.io/changelog.html