Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
ldif3 - generate and parse LDIF data (see RFC 2849
_).
This is a fork of the ldif
module from python-ldap
_ with python3/unicode
support. See the first entry in CHANGES.rst for a more complete list of
differences.
Parse LDIF from a file (or BytesIO
)::
from ldif3 import LDIFParser
from pprint import pprint
parser = LDIFParser(open('data.ldif', 'rb'))
for dn, entry in parser.parse():
print('got entry record: %s' % dn)
pprint(record)
Write LDIF to a file (or BytesIO
)::
from ldif3 import LDIFWriter
writer = LDIFWriter(open('data.ldif', 'wb'))
writer.unparse('mail=alice@example.com', {
'cn': ['Alice Alison'],
'mail': ['alice@example.com'],
'objectclass': ['top', 'person'],
})
The stream object that is passed to parser or writer must be an ascii byte stream.
The spec allows to include arbitrary data in base64 encoding or via URL. There is no way of knowing the encoding of this data. To handle this, there are two modes:
By default, the LDIFParser
will try to interpret all values as UTF-8 and
leave only the ones that fail to decode as bytes. But you can also pass an
encoding
of None
to the constructor, in which case the parser will not
try to do any conversion and return bytes directly.
.. _RFC 2849: https://tools.ietf.org/html/rfc2849 .. _python-ldap: http://www.python-ldap.org/
FAQs
generate and parse LDIF data (see RFC 2849).
We found that ldif3 demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.