2026-04-15 21:15:27 +01:00
|
|
|
# IFC URL — resolve and render ifc:// URLs
|
|
|
|
|
# Copyright (C) 2026 Bruno Postle <bruno@postle.net>
|
|
|
|
|
#
|
|
|
|
|
# This file is part of IFC URL.
|
|
|
|
|
#
|
|
|
|
|
# IFC URL is free software: you can redistribute it and/or modify
|
|
|
|
|
# it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
# (at your option) any later version.
|
|
|
|
|
#
|
|
|
|
|
# IFC URL is distributed in the hope that it will be useful,
|
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
# GNU Lesser General Public License for more details.
|
|
|
|
|
#
|
|
|
|
|
# You should have received a copy of the GNU Lesser General Public License
|
|
|
|
|
# along with IFC URL. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
2026-04-15 21:46:04 +01:00
|
|
|
from ifcurl.git import fetch_ifc, fetch_ifc_bytes
|
2026-04-15 21:15:27 +01:00
|
|
|
from ifcurl.url import IfcUrl
|
|
|
|
|
|
|
|
|
|
__version__ = "0.0.0"
|
2026-04-15 21:46:04 +01:00
|
|
|
__all__ = ["IfcUrl", "fetch_ifc", "fetch_ifc_bytes"]
|