-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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', ] |