Skip to content

Commit

Permalink
Create __init__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
vanvianen committed Jul 6, 2024
1 parent 093008f commit eb03df3
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions src/django-ifc/utils/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# -*- coding: utf-8 -*-


# =============================================================================
# Docstring
# =============================================================================

"""
Django IFC Utils Module
=======================
This module provides utility functions and classes that facilitate the
handling of Industry Foundation Classes (IFC) data within a Django
application. It includes functions for validating IFC data types and
potentially other common operations that are useful across various parts
of the application when dealing with IFC standards.
Available Functions:
- validate_ifc_guid: Validates that a string conforms to the 22-character
Base64 requirement of IfcGloballyUniqueId, ensuring it is suitable for use
as an IFC GUID.
"""


# =============================================================================
# Imports
# =============================================================================

# Import | Local Modules
from .validate_ifc_guid import validate_ifc_guid


# =============================================================================
# Module Level Variables
# =============================================================================

__all__ = ['validate_ifc_guid', ]

0 comments on commit eb03df3

Please sign in to comment.