aspose-gis-net 24.12.0__py3-none-manylinux1_x86_64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of aspose-gis-net might be problematic. Click here for more details.
- .__pyi_patched +0 -0
- aspose/__init__.py +82 -0
- aspose/__pyinstaller/__init__.pyi +1 -0
- aspose/__pyinstaller/hook-aspose.py +10 -0
- aspose/assemblies/gis/Aspose.GIS.dll +0 -0
- aspose/assemblies/gis/Microsoft.Win32.SystemEvents.dll +0 -0
- aspose/assemblies/gis/Newtonsoft.Json.dll +0 -0
- aspose/assemblies/gis/System.Drawing.Common.dll +0 -0
- aspose/assemblies/gis/WrpInterop.Aspose.Gis.dll +0 -0
- aspose/assemblies/pycore/WrpInterop.Aspose.PyCore.dll +0 -0
- aspose/assemblies/pydrawing/Microsoft.Win32.SystemEvents.dll +0 -0
- aspose/assemblies/pydrawing/System.Drawing.Common.dll +0 -0
- aspose/assemblies/pydrawing/WrpInterop.Aspose.PyDrawing.dll +0 -0
- aspose/assemblies/pygc/Aspose.PyGC.dll +0 -0
- aspose/assemblies/pyio/WrpInterop.Aspose.PyIO.dll +0 -0
- aspose/assemblies/pyreflection/WrpInterop.Aspose.PyReflection.dll +0 -0
- aspose/gis/__init__.pyi +2535 -0
- aspose/gis/__nuitka/__init__.pyi +1 -0
- aspose/gis/__nuitka/aspose-gis.nuitka-package.config.yml +20 -0
- aspose/gis/__pyinstaller/__init__.pyi +1 -0
- aspose/gis/__pyinstaller/hook-aspose.gis.py +9 -0
- aspose/gis/common/__init__.pyi +1028 -0
- aspose/gis/common/formats/__init__.pyi +98 -0
- aspose/gis/common/formats/dbase/__init__.pyi +250 -0
- aspose/gis/common/formats/gdbtable/__init__.pyi +1022 -0
- aspose/gis/common/formats/mapinfo/__init__.pyi +346 -0
- aspose/gis/common/formats/mapinfo/graphicalobjects/__init__.pyi +662 -0
- aspose/gis/common/formats/mapinfo/interchangeformat/__init__.pyi +217 -0
- aspose/gis/common/formats/mapinfo/styling/__init__.pyi +163 -0
- aspose/gis/common/formats/mapinfo/tabformat/__init__.pyi +139 -0
- aspose/gis/common/formats/mapinfo/tabformat/map/__init__.pyi +430 -0
- aspose/gis/common/formats/wkb/__init__.pyi +120 -0
- aspose/gis/common/formats/wkt/__init__.pyi +420 -0
- aspose/gis/common/formats/xml/__init__.pyi +173 -0
- aspose/gis/common/io/__init__.pyi +290 -0
- aspose/gis/epsg/__init__.pyi +357 -0
- aspose/gis/formats/__init__.pyi +91 -0
- aspose/gis/formats/bmpw/__init__.pyi +134 -0
- aspose/gis/formats/csv/__init__.pyi +608 -0
- aspose/gis/formats/database/__init__.pyi +173 -0
- aspose/gis/formats/database/dataediting/__init__.pyi +105 -0
- aspose/gis/formats/database/fromdefinition/__init__.pyi +141 -0
- aspose/gis/formats/esriascii/__init__.pyi +292 -0
- aspose/gis/formats/esrijson/__init__.pyi +512 -0
- aspose/gis/formats/filegdb/__init__.pyi +722 -0
- aspose/gis/formats/gdal/__init__.pyi +478 -0
- aspose/gis/formats/geojson/__init__.pyi +620 -0
- aspose/gis/formats/geojsonseq/__init__.pyi +572 -0
- aspose/gis/formats/geotiff/__init__.pyi +292 -0
- aspose/gis/formats/gml/__init__.pyi +545 -0
- aspose/gis/formats/gpx/__init__.pyi +543 -0
- aspose/gis/formats/infile/__init__.pyi +582 -0
- aspose/gis/formats/inmemory/__init__.pyi +337 -0
- aspose/gis/formats/jpegw/__init__.pyi +134 -0
- aspose/gis/formats/kml/__init__.pyi +556 -0
- aspose/gis/formats/kml/styles/__init__.pyi +636 -0
- aspose/gis/formats/mapinfointerchange/__init__.pyi +501 -0
- aspose/gis/formats/mapinfotab/__init__.pyi +530 -0
- aspose/gis/formats/osmxml/__init__.pyi +543 -0
- aspose/gis/formats/pngw/__init__.pyi +134 -0
- aspose/gis/formats/postgis/__init__.pyi +262 -0
- aspose/gis/formats/shapefile/__init__.pyi +511 -0
- aspose/gis/formats/sqlserver/__init__.pyi +248 -0
- aspose/gis/formats/tiffw/__init__.pyi +134 -0
- aspose/gis/formats/topojson/__init__.pyi +596 -0
- aspose/gis/formats/worldfile/__init__.pyi +134 -0
- aspose/gis/formats/xyztile/__init__.pyi +132 -0
- aspose/gis/geometries/__init__.pyi +15970 -0
- aspose/gis/geotools/__init__.pyi +519 -0
- aspose/gis/geotools/extensions/__init__.pyi +107 -0
- aspose/gis/geotools/layersmap/__init__.pyi +311 -0
- aspose/gis/geotools/mapbuilder/__init__.pyi +141 -0
- aspose/gis/geotools/wayanalyzer/__init__.pyi +187 -0
- aspose/gis/imagemetadata/__init__.pyi +297 -0
- aspose/gis/indexing/__init__.pyi +103 -0
- aspose/gis/indexing/bplustree/__init__.pyi +118 -0
- aspose/gis/indexing/qixtree/__init__.pyi +121 -0
- aspose/gis/indexing/rtree/__init__.pyi +153 -0
- aspose/gis/labeling/__init__.pyi +235 -0
- aspose/gis/labeling/line/__init__.pyi +279 -0
- aspose/gis/painting/__init__.pyi +790 -0
- aspose/gis/projections/__init__.pyi +272 -0
- aspose/gis/py.typed +0 -0
- aspose/gis/raster/__init__.pyi +586 -0
- aspose/gis/raster/web/__init__.pyi +127 -0
- aspose/gis/relationship/__init__.pyi +91 -0
- aspose/gis/relationship/joins/__init__.pyi +161 -0
- aspose/gis/rendering/__init__.pyi +572 -0
- aspose/gis/rendering/colorizers/__init__.pyi +202 -0
- aspose/gis/rendering/formats/__init__.pyi +91 -0
- aspose/gis/rendering/formats/bmp/__init__.pyi +111 -0
- aspose/gis/rendering/formats/jpeg/__init__.pyi +111 -0
- aspose/gis/rendering/formats/png/__init__.pyi +111 -0
- aspose/gis/rendering/formats/svg/__init__.pyi +111 -0
- aspose/gis/rendering/labelings/__init__.pyi +416 -0
- aspose/gis/rendering/sld/__init__.pyi +109 -0
- aspose/gis/rendering/symbolizers/__init__.pyi +882 -0
- aspose/gis/spatialreferencing/__init__.pyi +3005 -0
- aspose/gis/topology/__init__.pyi +342 -0
- aspose/gis/topology/algorithms/__init__.pyi +98 -0
- aspose/gis/topology/buffer/__init__.pyi +214 -0
- aspose/gis/topology/graph/__init__.pyi +338 -0
- aspose/gis.cpython-310-x86_64-linux-gnu.so +0 -0
- aspose/gis.cpython-311-x86_64-linux-gnu.so +0 -0
- aspose/gis.cpython-312-x86_64-linux-gnu.so +0 -0
- aspose/gis.cpython-313-x86_64-linux-gnu.so +0 -0
- aspose/gis.cpython-35m-x86_64-linux-gnu.so +0 -0
- aspose/gis.cpython-36m-x86_64-linux-gnu.so +0 -0
- aspose/gis.cpython-37m-x86_64-linux-gnu.so +0 -0
- aspose/gis.cpython-38-x86_64-linux-gnu.so +0 -0
- aspose/gis.cpython-39-x86_64-linux-gnu.so +0 -0
- aspose/netcore/netcore3.1/Microsoft.CSharp.dll +0 -0
- aspose/netcore/netcore3.1/Microsoft.VisualBasic.Core.dll +0 -0
- aspose/netcore/netcore3.1/Microsoft.VisualBasic.dll +0 -0
- aspose/netcore/netcore3.1/Microsoft.Win32.Primitives.dll +0 -0
- aspose/netcore/netcore3.1/Microsoft.Win32.Registry.dll +0 -0
- aspose/netcore/netcore3.1/SOS_README.md +5 -0
- aspose/netcore/netcore3.1/System.AppContext.dll +0 -0
- aspose/netcore/netcore3.1/System.Buffers.dll +0 -0
- aspose/netcore/netcore3.1/System.Collections.Concurrent.dll +0 -0
- aspose/netcore/netcore3.1/System.Collections.Immutable.dll +0 -0
- aspose/netcore/netcore3.1/System.Collections.NonGeneric.dll +0 -0
- aspose/netcore/netcore3.1/System.Collections.Specialized.dll +0 -0
- aspose/netcore/netcore3.1/System.Collections.dll +0 -0
- aspose/netcore/netcore3.1/System.ComponentModel.Annotations.dll +0 -0
- aspose/netcore/netcore3.1/System.ComponentModel.DataAnnotations.dll +0 -0
- aspose/netcore/netcore3.1/System.ComponentModel.EventBasedAsync.dll +0 -0
- aspose/netcore/netcore3.1/System.ComponentModel.Primitives.dll +0 -0
- aspose/netcore/netcore3.1/System.ComponentModel.TypeConverter.dll +0 -0
- aspose/netcore/netcore3.1/System.ComponentModel.dll +0 -0
- aspose/netcore/netcore3.1/System.Configuration.dll +0 -0
- aspose/netcore/netcore3.1/System.Console.dll +0 -0
- aspose/netcore/netcore3.1/System.Core.dll +0 -0
- aspose/netcore/netcore3.1/System.Data.Common.dll +0 -0
- aspose/netcore/netcore3.1/System.Data.DataSetExtensions.dll +0 -0
- aspose/netcore/netcore3.1/System.Data.dll +0 -0
- aspose/netcore/netcore3.1/System.Diagnostics.Contracts.dll +0 -0
- aspose/netcore/netcore3.1/System.Diagnostics.Debug.dll +0 -0
- aspose/netcore/netcore3.1/System.Diagnostics.DiagnosticSource.dll +0 -0
- aspose/netcore/netcore3.1/System.Diagnostics.FileVersionInfo.dll +0 -0
- aspose/netcore/netcore3.1/System.Diagnostics.Process.dll +0 -0
- aspose/netcore/netcore3.1/System.Diagnostics.StackTrace.dll +0 -0
- aspose/netcore/netcore3.1/System.Diagnostics.TextWriterTraceListener.dll +0 -0
- aspose/netcore/netcore3.1/System.Diagnostics.Tools.dll +0 -0
- aspose/netcore/netcore3.1/System.Diagnostics.TraceSource.dll +0 -0
- aspose/netcore/netcore3.1/System.Diagnostics.Tracing.dll +0 -0
- aspose/netcore/netcore3.1/System.Drawing.Primitives.dll +0 -0
- aspose/netcore/netcore3.1/System.Drawing.dll +0 -0
- aspose/netcore/netcore3.1/System.Dynamic.Runtime.dll +0 -0
- aspose/netcore/netcore3.1/System.Globalization.Calendars.dll +0 -0
- aspose/netcore/netcore3.1/System.Globalization.Extensions.dll +0 -0
- aspose/netcore/netcore3.1/System.Globalization.Native.so +0 -0
- aspose/netcore/netcore3.1/System.Globalization.dll +0 -0
- aspose/netcore/netcore3.1/System.IO.Compression.Brotli.dll +0 -0
- aspose/netcore/netcore3.1/System.IO.Compression.FileSystem.dll +0 -0
- aspose/netcore/netcore3.1/System.IO.Compression.Native.a +0 -0
- aspose/netcore/netcore3.1/System.IO.Compression.Native.so +0 -0
- aspose/netcore/netcore3.1/System.IO.Compression.ZipFile.dll +0 -0
- aspose/netcore/netcore3.1/System.IO.Compression.dll +0 -0
- aspose/netcore/netcore3.1/System.IO.FileSystem.AccessControl.dll +0 -0
- aspose/netcore/netcore3.1/System.IO.FileSystem.DriveInfo.dll +0 -0
- aspose/netcore/netcore3.1/System.IO.FileSystem.Primitives.dll +0 -0
- aspose/netcore/netcore3.1/System.IO.FileSystem.Watcher.dll +0 -0
- aspose/netcore/netcore3.1/System.IO.FileSystem.dll +0 -0
- aspose/netcore/netcore3.1/System.IO.IsolatedStorage.dll +0 -0
- aspose/netcore/netcore3.1/System.IO.MemoryMappedFiles.dll +0 -0
- aspose/netcore/netcore3.1/System.IO.Pipes.AccessControl.dll +0 -0
- aspose/netcore/netcore3.1/System.IO.Pipes.dll +0 -0
- aspose/netcore/netcore3.1/System.IO.UnmanagedMemoryStream.dll +0 -0
- aspose/netcore/netcore3.1/System.IO.dll +0 -0
- aspose/netcore/netcore3.1/System.Linq.Expressions.dll +0 -0
- aspose/netcore/netcore3.1/System.Linq.Parallel.dll +0 -0
- aspose/netcore/netcore3.1/System.Linq.Queryable.dll +0 -0
- aspose/netcore/netcore3.1/System.Linq.dll +0 -0
- aspose/netcore/netcore3.1/System.Memory.dll +0 -0
- aspose/netcore/netcore3.1/System.Native.a +0 -0
- aspose/netcore/netcore3.1/System.Native.so +0 -0
- aspose/netcore/netcore3.1/System.Net.Http.Native.a +0 -0
- aspose/netcore/netcore3.1/System.Net.Http.Native.so +0 -0
- aspose/netcore/netcore3.1/System.Net.Http.dll +0 -0
- aspose/netcore/netcore3.1/System.Net.HttpListener.dll +0 -0
- aspose/netcore/netcore3.1/System.Net.Mail.dll +0 -0
- aspose/netcore/netcore3.1/System.Net.NameResolution.dll +0 -0
- aspose/netcore/netcore3.1/System.Net.NetworkInformation.dll +0 -0
- aspose/netcore/netcore3.1/System.Net.Ping.dll +0 -0
- aspose/netcore/netcore3.1/System.Net.Primitives.dll +0 -0
- aspose/netcore/netcore3.1/System.Net.Requests.dll +0 -0
- aspose/netcore/netcore3.1/System.Net.Security.Native.a +0 -0
- aspose/netcore/netcore3.1/System.Net.Security.Native.so +0 -0
- aspose/netcore/netcore3.1/System.Net.Security.dll +0 -0
- aspose/netcore/netcore3.1/System.Net.ServicePoint.dll +0 -0
- aspose/netcore/netcore3.1/System.Net.Sockets.dll +0 -0
- aspose/netcore/netcore3.1/System.Net.WebClient.dll +0 -0
- aspose/netcore/netcore3.1/System.Net.WebHeaderCollection.dll +0 -0
- aspose/netcore/netcore3.1/System.Net.WebProxy.dll +0 -0
- aspose/netcore/netcore3.1/System.Net.WebSockets.Client.dll +0 -0
- aspose/netcore/netcore3.1/System.Net.WebSockets.dll +0 -0
- aspose/netcore/netcore3.1/System.Net.dll +0 -0
- aspose/netcore/netcore3.1/System.Numerics.Vectors.dll +0 -0
- aspose/netcore/netcore3.1/System.Numerics.dll +0 -0
- aspose/netcore/netcore3.1/System.ObjectModel.dll +0 -0
- aspose/netcore/netcore3.1/System.Private.CoreLib.dll +0 -0
- aspose/netcore/netcore3.1/System.Private.DataContractSerialization.dll +0 -0
- aspose/netcore/netcore3.1/System.Private.Uri.dll +0 -0
- aspose/netcore/netcore3.1/System.Private.Xml.Linq.dll +0 -0
- aspose/netcore/netcore3.1/System.Private.Xml.dll +0 -0
- aspose/netcore/netcore3.1/System.Reflection.DispatchProxy.dll +0 -0
- aspose/netcore/netcore3.1/System.Reflection.Emit.ILGeneration.dll +0 -0
- aspose/netcore/netcore3.1/System.Reflection.Emit.Lightweight.dll +0 -0
- aspose/netcore/netcore3.1/System.Reflection.Emit.dll +0 -0
- aspose/netcore/netcore3.1/System.Reflection.Extensions.dll +0 -0
- aspose/netcore/netcore3.1/System.Reflection.Metadata.dll +0 -0
- aspose/netcore/netcore3.1/System.Reflection.Primitives.dll +0 -0
- aspose/netcore/netcore3.1/System.Reflection.TypeExtensions.dll +0 -0
- aspose/netcore/netcore3.1/System.Reflection.dll +0 -0
- aspose/netcore/netcore3.1/System.Resources.Reader.dll +0 -0
- aspose/netcore/netcore3.1/System.Resources.ResourceManager.dll +0 -0
- aspose/netcore/netcore3.1/System.Resources.Writer.dll +0 -0
- aspose/netcore/netcore3.1/System.Runtime.CompilerServices.Unsafe.dll +0 -0
- aspose/netcore/netcore3.1/System.Runtime.CompilerServices.VisualC.dll +0 -0
- aspose/netcore/netcore3.1/System.Runtime.Extensions.dll +0 -0
- aspose/netcore/netcore3.1/System.Runtime.Handles.dll +0 -0
- aspose/netcore/netcore3.1/System.Runtime.InteropServices.RuntimeInformation.dll +0 -0
- aspose/netcore/netcore3.1/System.Runtime.InteropServices.WindowsRuntime.dll +0 -0
- aspose/netcore/netcore3.1/System.Runtime.InteropServices.dll +0 -0
- aspose/netcore/netcore3.1/System.Runtime.Intrinsics.dll +0 -0
- aspose/netcore/netcore3.1/System.Runtime.Loader.dll +0 -0
- aspose/netcore/netcore3.1/System.Runtime.Numerics.dll +0 -0
- aspose/netcore/netcore3.1/System.Runtime.Serialization.Formatters.dll +0 -0
- aspose/netcore/netcore3.1/System.Runtime.Serialization.Json.dll +0 -0
- aspose/netcore/netcore3.1/System.Runtime.Serialization.Primitives.dll +0 -0
- aspose/netcore/netcore3.1/System.Runtime.Serialization.Xml.dll +0 -0
- aspose/netcore/netcore3.1/System.Runtime.Serialization.dll +0 -0
- aspose/netcore/netcore3.1/System.Runtime.WindowsRuntime.UI.Xaml.dll +0 -0
- aspose/netcore/netcore3.1/System.Runtime.WindowsRuntime.dll +0 -0
- aspose/netcore/netcore3.1/System.Runtime.dll +0 -0
- aspose/netcore/netcore3.1/System.Security.AccessControl.dll +0 -0
- aspose/netcore/netcore3.1/System.Security.Claims.dll +0 -0
- aspose/netcore/netcore3.1/System.Security.Cryptography.Algorithms.dll +0 -0
- aspose/netcore/netcore3.1/System.Security.Cryptography.Cng.dll +0 -0
- aspose/netcore/netcore3.1/System.Security.Cryptography.Csp.dll +0 -0
- aspose/netcore/netcore3.1/System.Security.Cryptography.Encoding.dll +0 -0
- aspose/netcore/netcore3.1/System.Security.Cryptography.Native.OpenSsl.a +0 -0
- aspose/netcore/netcore3.1/System.Security.Cryptography.Native.OpenSsl.so +0 -0
- aspose/netcore/netcore3.1/System.Security.Cryptography.OpenSsl.dll +0 -0
- aspose/netcore/netcore3.1/System.Security.Cryptography.Primitives.dll +0 -0
- aspose/netcore/netcore3.1/System.Security.Cryptography.X509Certificates.dll +0 -0
- aspose/netcore/netcore3.1/System.Security.Principal.Windows.dll +0 -0
- aspose/netcore/netcore3.1/System.Security.Principal.dll +0 -0
- aspose/netcore/netcore3.1/System.Security.SecureString.dll +0 -0
- aspose/netcore/netcore3.1/System.Security.dll +0 -0
- aspose/netcore/netcore3.1/System.ServiceModel.Web.dll +0 -0
- aspose/netcore/netcore3.1/System.ServiceProcess.dll +0 -0
- aspose/netcore/netcore3.1/System.Text.Encoding.CodePages.dll +0 -0
- aspose/netcore/netcore3.1/System.Text.Encoding.Extensions.dll +0 -0
- aspose/netcore/netcore3.1/System.Text.Encoding.dll +0 -0
- aspose/netcore/netcore3.1/System.Text.Encodings.Web.dll +0 -0
- aspose/netcore/netcore3.1/System.Text.Json.dll +0 -0
- aspose/netcore/netcore3.1/System.Text.RegularExpressions.dll +0 -0
- aspose/netcore/netcore3.1/System.Threading.Channels.dll +0 -0
- aspose/netcore/netcore3.1/System.Threading.Overlapped.dll +0 -0
- aspose/netcore/netcore3.1/System.Threading.Tasks.Dataflow.dll +0 -0
- aspose/netcore/netcore3.1/System.Threading.Tasks.Extensions.dll +0 -0
- aspose/netcore/netcore3.1/System.Threading.Tasks.Parallel.dll +0 -0
- aspose/netcore/netcore3.1/System.Threading.Tasks.dll +0 -0
- aspose/netcore/netcore3.1/System.Threading.Thread.dll +0 -0
- aspose/netcore/netcore3.1/System.Threading.ThreadPool.dll +0 -0
- aspose/netcore/netcore3.1/System.Threading.Timer.dll +0 -0
- aspose/netcore/netcore3.1/System.Threading.dll +0 -0
- aspose/netcore/netcore3.1/System.Transactions.Local.dll +0 -0
- aspose/netcore/netcore3.1/System.Transactions.dll +0 -0
- aspose/netcore/netcore3.1/System.ValueTuple.dll +0 -0
- aspose/netcore/netcore3.1/System.Web.HttpUtility.dll +0 -0
- aspose/netcore/netcore3.1/System.Web.dll +0 -0
- aspose/netcore/netcore3.1/System.Windows.dll +0 -0
- aspose/netcore/netcore3.1/System.Xml.Linq.dll +0 -0
- aspose/netcore/netcore3.1/System.Xml.ReaderWriter.dll +0 -0
- aspose/netcore/netcore3.1/System.Xml.Serialization.dll +0 -0
- aspose/netcore/netcore3.1/System.Xml.XDocument.dll +0 -0
- aspose/netcore/netcore3.1/System.Xml.XPath.XDocument.dll +0 -0
- aspose/netcore/netcore3.1/System.Xml.XPath.dll +0 -0
- aspose/netcore/netcore3.1/System.Xml.XmlDocument.dll +0 -0
- aspose/netcore/netcore3.1/System.Xml.XmlSerializer.dll +0 -0
- aspose/netcore/netcore3.1/System.Xml.dll +0 -0
- aspose/netcore/netcore3.1/System.dll +0 -0
- aspose/netcore/netcore3.1/WindowsBase.dll +0 -0
- aspose/netcore/netcore3.1/createdump +0 -0
- aspose/netcore/netcore3.1/libaspose.embed.coreclrwrap.so +0 -0
- aspose/netcore/netcore3.1/libclrjit.so +0 -0
- aspose/netcore/netcore3.1/libcoreclr.so +0 -0
- aspose/netcore/netcore3.1/libcoreclrtraceptprovider.so +0 -0
- aspose/netcore/netcore3.1/libdbgshim.so +0 -0
- aspose/netcore/netcore3.1/libhostfxr.so +0 -0
- aspose/netcore/netcore3.1/libhostpolicy.so +0 -0
- aspose/netcore/netcore3.1/libmscordaccore.so +0 -0
- aspose/netcore/netcore3.1/libmscordbi.so +0 -0
- aspose/netcore/netcore3.1/mscorlib.dll +0 -0
- aspose/netcore/netcore3.1/netstandard.dll +0 -0
- aspose/pycore/__init__.pyi +57 -0
- aspose/pycore/__pyinstaller/__init__.pyi +1 -0
- aspose/pycore/__pyinstaller/hook-aspose.pycore.py +11 -0
- aspose/pycore/py.typed +0 -0
- aspose/pycore.cpython-310-x86_64-linux-gnu.so +0 -0
- aspose/pycore.cpython-311-x86_64-linux-gnu.so +0 -0
- aspose/pycore.cpython-312-x86_64-linux-gnu.so +0 -0
- aspose/pycore.cpython-313-x86_64-linux-gnu.so +0 -0
- aspose/pycore.cpython-35m-x86_64-linux-gnu.so +0 -0
- aspose/pycore.cpython-36m-x86_64-linux-gnu.so +0 -0
- aspose/pycore.cpython-37m-x86_64-linux-gnu.so +0 -0
- aspose/pycore.cpython-38-x86_64-linux-gnu.so +0 -0
- aspose/pycore.cpython-39-x86_64-linux-gnu.so +0 -0
- aspose/pydrawing/__init__.pyi +4090 -0
- aspose/pydrawing/__pyinstaller/__init__.pyi +1 -0
- aspose/pydrawing/__pyinstaller/hook-aspose.pydrawing.py +9 -0
- aspose/pydrawing/design.pyi +24 -0
- aspose/pydrawing/drawing2d.pyi +1324 -0
- aspose/pydrawing/imaging.pyi +1988 -0
- aspose/pydrawing/printing.pyi +995 -0
- aspose/pydrawing/py.typed +0 -0
- aspose/pydrawing/text.pyi +75 -0
- aspose/pydrawing.cpython-310-x86_64-linux-gnu.so +0 -0
- aspose/pydrawing.cpython-311-x86_64-linux-gnu.so +0 -0
- aspose/pydrawing.cpython-312-x86_64-linux-gnu.so +0 -0
- aspose/pydrawing.cpython-313-x86_64-linux-gnu.so +0 -0
- aspose/pydrawing.cpython-35m-x86_64-linux-gnu.so +0 -0
- aspose/pydrawing.cpython-36m-x86_64-linux-gnu.so +0 -0
- aspose/pydrawing.cpython-37m-x86_64-linux-gnu.so +0 -0
- aspose/pydrawing.cpython-38-x86_64-linux-gnu.so +0 -0
- aspose/pydrawing.cpython-39-x86_64-linux-gnu.so +0 -0
- aspose/pygc/__init__.pyi +8 -0
- aspose/pygc/__pyinstaller/__init__.pyi +1 -0
- aspose/pygc/__pyinstaller/hook-aspose.pygc.py +9 -0
- aspose/pygc.cpython-310-x86_64-linux-gnu.so +0 -0
- aspose/pygc.cpython-311-x86_64-linux-gnu.so +0 -0
- aspose/pygc.cpython-312-x86_64-linux-gnu.so +0 -0
- aspose/pygc.cpython-313-x86_64-linux-gnu.so +0 -0
- aspose/pygc.cpython-35m-x86_64-linux-gnu.so +0 -0
- aspose/pygc.cpython-36m-x86_64-linux-gnu.so +0 -0
- aspose/pygc.cpython-37m-x86_64-linux-gnu.so +0 -0
- aspose/pygc.cpython-38-x86_64-linux-gnu.so +0 -0
- aspose/pygc.cpython-39-x86_64-linux-gnu.so +0 -0
- aspose/pyio/__init__.pyi +8 -0
- aspose/pyio/__pyinstaller/__init__.pyi +1 -0
- aspose/pyio/__pyinstaller/hook-aspose.pyio.py +9 -0
- aspose/pyio.cpython-310-x86_64-linux-gnu.so +0 -0
- aspose/pyio.cpython-311-x86_64-linux-gnu.so +0 -0
- aspose/pyio.cpython-312-x86_64-linux-gnu.so +0 -0
- aspose/pyio.cpython-313-x86_64-linux-gnu.so +0 -0
- aspose/pyio.cpython-35m-x86_64-linux-gnu.so +0 -0
- aspose/pyio.cpython-36m-x86_64-linux-gnu.so +0 -0
- aspose/pyio.cpython-37m-x86_64-linux-gnu.so +0 -0
- aspose/pyio.cpython-38-x86_64-linux-gnu.so +0 -0
- aspose/pyio.cpython-39-x86_64-linux-gnu.so +0 -0
- aspose/pyreflection/__init__.pyi +12 -0
- aspose/pyreflection/__pyinstaller/__init__.pyi +1 -0
- aspose/pyreflection/__pyinstaller/hook-aspose.pyreflection.py +9 -0
- aspose/pyreflection/py.typed +0 -0
- aspose/pyreflection.cpython-310-x86_64-linux-gnu.so +0 -0
- aspose/pyreflection.cpython-311-x86_64-linux-gnu.so +0 -0
- aspose/pyreflection.cpython-312-x86_64-linux-gnu.so +0 -0
- aspose/pyreflection.cpython-313-x86_64-linux-gnu.so +0 -0
- aspose/pyreflection.cpython-35m-x86_64-linux-gnu.so +0 -0
- aspose/pyreflection.cpython-36m-x86_64-linux-gnu.so +0 -0
- aspose/pyreflection.cpython-37m-x86_64-linux-gnu.so +0 -0
- aspose/pyreflection.cpython-38-x86_64-linux-gnu.so +0 -0
- aspose/pyreflection.cpython-39-x86_64-linux-gnu.so +0 -0
- aspose_gis_net-24.12.0.dist-info/METADATA +285 -0
- aspose_gis_net-24.12.0.dist-info/RECORD +374 -0
- aspose_gis_net-24.12.0.dist-info/WHEEL +5 -0
- aspose_gis_net-24.12.0.dist-info/entry_points.txt +3 -0
- aspose_gis_net-24.12.0.dist-info/top_level.txt +1 -0
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
|
|
2
|
+
"""This module contains the functions for wrapper-type-casting,
|
|
3
|
+
wrapper-type conversions and wrapper-type-testing"""
|
|
4
|
+
|
|
5
|
+
from typing import TypeVar, Any
|
|
6
|
+
|
|
7
|
+
T = TypeVar('T', type)
|
|
8
|
+
|
|
9
|
+
def cast(dst_type: T, obj: object) -> T:
|
|
10
|
+
"""Casts or converts a wrapper-object to a type
|
|
11
|
+
|
|
12
|
+
The function returns a new wrapper-object of 'dst_type' created for the
|
|
13
|
+
underlying .Net object of the Python object 'obj'. If 'obj' cannot be cast
|
|
14
|
+
to 'dst_type', an error occurs. Unlike the ':func:`as_of`' function, this
|
|
15
|
+
function converts 'obj' to 'dst_type' with respect to internal methods
|
|
16
|
+
possibly defined in 'dst_type' for explicit conversions between 'dst_type'
|
|
17
|
+
and the original'obj' type
|
|
18
|
+
|
|
19
|
+
:param type dst_type: the target object type.
|
|
20
|
+
:param obj: any wrapper-object.
|
|
21
|
+
:returns: object translated to dst_type."""
|
|
22
|
+
raise NotImplementedError()
|
|
23
|
+
|
|
24
|
+
def as_of(obj: object, dst_type: T) -> T:
|
|
25
|
+
"""Reinterprets 'obj' as an object of 'dst_type'
|
|
26
|
+
|
|
27
|
+
The function returns a new wrapper-object of 'dst_type' created for the
|
|
28
|
+
underlying .Net object of the Python object 'obj'. If 'obj' cannot be cast
|
|
29
|
+
to 'dst_type', an error occurs. Unlike the ':func:`cast`' function, this
|
|
30
|
+
function converts 'obj' to 'dst_type' without regard to internal methods
|
|
31
|
+
possibly defined in 'dst_type' for explicit conversions between 'dst_type'
|
|
32
|
+
and the original type of 'obj'
|
|
33
|
+
|
|
34
|
+
:param obj: any wrapper-object.
|
|
35
|
+
:param type dst_type: the target object type.
|
|
36
|
+
:returns: object translated to dst_type."""
|
|
37
|
+
raise NotImplementedError()
|
|
38
|
+
|
|
39
|
+
def is_assignable(obj: object, dst_type: type) -> bool:
|
|
40
|
+
"""Returns True if 'obj' can be cast to 'dst_type' with the ':func:`as_of`'
|
|
41
|
+
function, otherwise False"""
|
|
42
|
+
raise NotImplementedError()
|
|
43
|
+
|
|
44
|
+
def is_typeof_eq(obj: object, origin_type: type) -> bool:
|
|
45
|
+
"""Returns True if the original wrapper-type of the underlying .Net object
|
|
46
|
+
of the Python object 'obj' is 'origin_type' otherwise False"""
|
|
47
|
+
raise NotImplementedError()
|
|
48
|
+
|
|
49
|
+
def type_of(ptype: type) -> object:
|
|
50
|
+
"""Returns a wrapper-object representing the underlying .Net type for
|
|
51
|
+
a ptype"""
|
|
52
|
+
raise NotImplementedError()
|
|
53
|
+
|
|
54
|
+
def get_pyinstaller_hook_dirs() -> Any:
|
|
55
|
+
"""Function required by PyInstaller. Returns paths to module
|
|
56
|
+
PyInstaller hooks. Not intended to be called explicitly."""
|
|
57
|
+
raise NotImplementedError()
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""Pyinstaller hook folder"""
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
from PyInstaller.utils.hooks import get_package_paths
|
|
2
|
+
import os.path
|
|
3
|
+
|
|
4
|
+
(_, root) = get_package_paths('aspose')
|
|
5
|
+
|
|
6
|
+
datas = [(os.path.join(root, 'assemblies', 'pycore'), os.path.join('aspose', 'assemblies', 'pycore'))]
|
|
7
|
+
|
|
8
|
+
datas += [(os.path.join(root, 'pycore'), os.path.join('aspose', 'pycore'))]
|
|
9
|
+
|
|
10
|
+
hiddenimports = [ 'aspose', 'aspose.pygc' ]
|
|
11
|
+
|
aspose/pycore/py.typed
ADDED
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|