Skip to main content

A package that contains a small collection of easy to use API to common services

Project description

Python APIs for Active Directory and SQL Integration

Python Versions Platform PypI Versions PyPI status Github Actions Test and Publish Status codecov License

Welcome to the Python APIs for Active Directory and SQL Integration project. This repository provides a set of Python modules and classes designed to interact with Active Directory (AD) and SQL databases seamlessly. It facilitates operations such as querying AD users, managing SQL database connections, and synchronizing data between AD and SQL.

Table of Contents

  • Overview
  • Features
  • Getting Started
  • Prerequisites
  • Installation
  • Usage
  • Configuration
  • Connecting to Active Directory
  • Connecting to SQL Database
  • Working with AD Users
  • Running Tests
  • Linting and Code Quality
  • Project Structure
  • Contributing
  • License

Overview

This project aims to simplify the integration between Python applications, Active Directory services, and SQL databases. It provides:

  • Classes for connecting to and interacting with Active Directory using LDAP.
  • Classes for managing SQL database connections and performing CRUD operations using SQLAlchemy.
  • Data models representing AD users and their attributes.
  • Utility functions and services for common tasks like updating user information, handling group memberships, and more.
  • Comprehensive unit tests to ensure code reliability and correctness.
  • Linting configurations to maintain code quality and adherence to PEP 8 standards.

Features

  • Active Directory Integration: Query and manipulate AD users and groups using LDAP.
  • SQL Database Connectivity: Manage database connections and perform operations using SQLAlchemy.
  • Data Models: Represent AD users with a Python class that maps to a SQL database schema.
  • Services Layer: Provides business logic and utility functions for higher-level operations.
  • Unit Testing: Includes tests with mocking to validate functionality without requiring actual connections.
  • Linting and Code Quality: Configured with Pylint for maintaining code standards and conventions.

Getting Started

Prerequisites

  • Python 3.8 or higher
  • Virtual Environment: Recommended to use a virtual environment to manage dependencies.
  • Active Directory Access: Necessary permissions to interact with your organization's AD.
  • SQL Server Access: Access to a SQL Server database if you plan to use the SQL functionalities.

Installation

Clone the Repository

git clone https://github.com/your-username/python-apis.git
cd python-apis

Create and Activate a Virtual Environment

python -m venv venv
source venv/bin/activate   # On Windows: venv\Scripts\activate

Upgrade pip

python -m pip install --upgrade pip

Install Dependencies

pip install -r requirements.txt

Note: The requirements.txt file includes all necessary dependencies, some of which are platform-specific.

Usage

Configuration

The project uses environment variables for configuration. Create a .env file in the project root or set the environment variables in your system.

Example .env file:

# Active Directory Configuration
LDAP_SERVER_LIST=ldap://server1 ldap://server2
SEARCH_BASE=dc=example,dc=com

# SQL Database Configuration
ADUSER_DB_SERVER=your_db_server
ADUSER_DB_NAME=your_db_name
ADUSER_SQL_DRIVER=ODBC Driver 17 for SQL Server

Connecting to Active Directory

from src.apis import ADConnection

# Initialize ADConnection
ad_connection = ADConnection(
    servers=['ldap://server1', 'ldap://server2'],
    base_dn='dc=example,dc=com'
)

# Search for users
users = ad_connection.search('(objectClass=user)')

Connecting to SQL Database

Copy code
from src.apis import SQLConnection

# Initialize SQLConnection
sql_connection = SQLConnection(
    server='your_db_server',
    database='your_db_name',
    driver='ODBC Driver 17 for SQL Server'
)

# Access the session
session = sql_connection.session

# Query the database
from src.models.ad_user import ADUser

ad_users = session.query(ADUser).all()

Working with AD Users

from src.services.ad_user_service import ADUserService

# Initialize the service
service = ADUserService()

# Get users from the SQL database
sql_users = service.get_users()

# Get users from Active Directory
ad_users = service.get_users_from_ad()

# Add a user to a group
user = sql_users[0]
group_dn = 'CN=GroupName,OU=Groups,DC=example,DC=com'
service.add_member(user, group_dn)

# Modify a user's attributes
changes = [('displayName', 'New Display Name')]
service.modify(user, changes)

Running Tests

The project includes unit tests located in the src/tests directory.

Install Test Dependencies

pip install .[test]

Run Tests

python -m unittest discover -s src/tests -p 'test_*.py'

Note: Ensure that your PYTHONPATH includes the project root so that tests can locate the modules correctly.

Linting and Code Quality

We use pylint to maintain code quality and adherence to PEP 8 standards.

Install Pylint

pip install pylint

Run Linting

pylint src/apis/ src/models/ src/services/

This command lints only the specified directories. You can adjust linting rules by modifying the .pylintrc file in the project root.

Project Structure

python-apis/
├── src/
│   ├── apis/
│   │   ├── __init__.py
│   │   ├── ad_api.py
│   │   └── sql_api.py
│   ├── models/
│   │   ├── __init__.py
│   │   ├── base.py
│   │   └── ad_user.py
│   ├── services/
│   │   ├── __init__.py
│   │   └── ad_user_service.py
│   └── tests/
│       ├── __init__.py
│       ├── test_apis/
│       │   └── test_ad_api.py
│       ├── test_models/
│       │   └── test_ad_user.py
│       └── test_services/
│           └── test_ad_user_service.py
├── .env.example
├── .gitignore
├── README.md
├── requirements.txt
├── requirements-dev.txt
├── setup.py
├── pyproject.toml
└── .pylintrc

src/apis/: Contains classes for connecting to external APIs like AD and SQL. src/models/: Data models representing database schemas. src/services/: Business logic and utility functions. src/tests/: Unit tests for the codebase. requirements.txt: Production dependencies. requirements-dev.txt: Development and testing dependencies. setup.py / pyproject.toml: Package configuration files.

Contributing

We welcome contributions! Please follow these guidelines:

Fork the Repository: Create a personal fork of the project.

Create a Feature Branch: Work on your changes in a new branch.

git checkout -b feature/your-feature-name

Write Tests: Ensure that your code is covered by unit tests.

Run Linting: Verify that your code passes linting checks.

Commit Changes: Write clear and concise commit messages.

Push and Open a Pull Request: Push your branch to your fork and open a PR against the main repository.

License

This project is licensed under the MIT License. See the LICENSE file for details.

Note: Replace placeholder text like your-username, your_db_server, and your_db_name with actual values relevant to your environment.

If you have any questions or need assistance, feel free to open an issue or contact the project maintainers.

This README provides an overview of the project, instructions on how to set it up, and guidance on how to use its features. It is intended to help users and contributors understand the purpose of the project and how to work with it.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

python_apis-0.1.2.tar.gz (20.8 kB view details)

Uploaded Source

Built Distribution

python_apis-0.1.2-py3-none-any.whl (21.0 kB view details)

Uploaded Python 3

File details

Details for the file python_apis-0.1.2.tar.gz.

File metadata

  • Download URL: python_apis-0.1.2.tar.gz
  • Upload date:
  • Size: 20.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for python_apis-0.1.2.tar.gz
Algorithm Hash digest
SHA256 c87f61cdaf4ec275680c602e1a7b7367f013dac02a1a2ce9e29fc5fa5a2ba2ee
MD5 b61128e44969f0a481604d167dae6325
BLAKE2b-256 cff7490e606774805a741a1c5724ce33aac676e7059cec574ba385029e22e625

See more details on using hashes here.

File details

Details for the file python_apis-0.1.2-py3-none-any.whl.

File metadata

  • Download URL: python_apis-0.1.2-py3-none-any.whl
  • Upload date:
  • Size: 21.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for python_apis-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 7589368fd5553bbc56a8b5310c68d9757e95f9253d2a95db056bacc75f0da36b
MD5 44e10dffc09230329dbb81c8902bd95c
BLAKE2b-256 ff3bb4842ef92f85818a7456632dc22f0184ffd21402a23541a2b9e91afb6124

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page