Metadata-Version: 2.1
Name: python-win-ad
Version: 0.6.0
Summary: An Object-Oriented Active Directory management framework built on ADSI
Home-page: https://github.com/jcarswell/pyad/
Author: Zakir Durumeric
Author-email: zakird@gmail.com
Maintainer: Josh Carswell
Maintainer-email: Josh.Carswell@thecarswells.ca
License: Apache License, Version 2.0
Project-URL: Documentation, https://jcarswell.github.io/pyad/
Project-URL: Issues, https://github.com/jcarswell/pyad/issues/
Keywords: python microsoft windows active directory AD adsi
Platform: UNKNOWN
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Intended Audience :: System Administrators
Classifier: Natural Language :: English
Classifier: Operating System :: Microsoft :: Windows
Classifier: Topic :: System :: Systems Administration :: Authentication/Directory :: LDAP
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Obsoletes: pyad
Requires-Python: >=3.6
Requires-Dist: setuptools
Requires-Dist: pywin32

Introduction
------------

pyad is a Python library designed to provide a simple, Pythonic interface to Active Directory
through ADSI on the Windows platform. Complete documentation can be found at
http://jcarswell.github.io/pyad/. Code is maintained at https://github.com/jcarswell/pyad. The 
library can be downloaded from PyPI at https://github.com/jcarswell/pyad.

Breaking Changes from upstream
------------------------------

ADObject:

- _get_password_last_set - Act's like AD and returns 1970-01-01 if the date can't be parsed
- get_last_login - Act's like AD and returns 1970-01-01 if the date can't be parsed

Importing pyad directly exposes set_defaults, ADQuery, ADComputer, ADContainer, ADDomain,
ADGroup, ADUser, from_cn, from_dn, from_guid. Importing pyad.pyad no longer imports
the sub modules

Most ADObject update methods now take flush as an optional argument that defaults to True
to maintain compatibility with upstream code. For large updates it's recommended to set 
this to False until you are ready to write out the change, otherwise you may run into a 
back-off period in AD where all further changes will fail.

Requirements
------------

pyad requires pywin32, available at https://github.com/mhammond/pywin32.


Testing
-------

To run unittest you will need to set the configuration to be specific to your environment. 
To do this you will need to edit config.py located in the tests folder.


License
-------

pyad is licensed under the Apache License, Version 2.0 (the "License"). You may obtain a copy 
of the License at http://www.apache.org/licenses/LICENSE-2.0.

Unless required by applicable law or agreed to in writing, software distributed under the 
License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, 
either express or implied. See the License for the specific language governing permissions 
and limitations under the License.


