├── .gitignore ├── LICENSE ├── PythonPackages4Delphi.groupproj ├── PythonPackages4Delphi.prjmgc ├── README.md ├── boss-lock.json ├── boss.json ├── images ├── bmp │ ├── 16 │ │ ├── Boto3.bmp │ │ ├── MoviePy.bmp │ │ ├── Pillow.bmp │ │ ├── PyQT5.bmp │ │ ├── RemBG.bmp │ │ ├── h5py.bmp │ │ └── psutil.bmp │ ├── 24 │ │ ├── Boto3.bmp │ │ ├── MoviePy.bmp │ │ ├── Pillow.bmp │ │ ├── PyQT5.bmp │ │ ├── RemBG.bmp │ │ ├── h5py.bmp │ │ └── psutil.bmp │ ├── 32 │ │ ├── Boto3.bmp │ │ ├── MoviePy.bmp │ │ ├── Pillow.bmp │ │ ├── PyQT5.bmp │ │ ├── RemBG.bmp │ │ ├── h5py.bmp │ │ └── psutil.bmp │ └── 128 │ │ ├── Boto3.bmp │ │ ├── MoviePy.bmp │ │ ├── Pillow.bmp │ │ ├── PyQT5.bmp │ │ ├── RemBG.bmp │ │ ├── h5py.bmp │ │ └── psutil.bmp └── png │ ├── 128x128 │ ├── Boto3.png │ ├── MoviePy.png │ ├── Pillow.png │ ├── PyQT5.png │ ├── RemBG.png │ ├── h5py.png │ └── psutil.png │ ├── 16x16 │ ├── Boto3.png │ ├── MoviePy.png │ ├── Pillow.png │ ├── PyQT5.png │ ├── RemBG.png │ ├── h5py.png │ └── psutil.png │ ├── 24x24 │ ├── Boto3.png │ ├── MoviePy.png │ ├── Pillow.png │ ├── PyQT5.png │ ├── RemBG.png │ ├── h5py.png │ └── psutil.png │ └── 32x32 │ ├── Boto3.png │ ├── MoviePy.png │ ├── Pillow.png │ ├── PyQT5.png │ ├── RemBG.png │ ├── h5py.png │ └── psutil.png └── src ├── Boto3 ├── Boto3.pas ├── Boto3Reg.pas ├── P4DBoto3.dpk ├── P4DBoto3.dproj ├── P4DBoto3.res ├── README.md ├── dclP4DBoto3.dpk ├── dclP4DBoto3.dproj └── dclP4DBoto3.res ├── H5Py ├── H5Py.pas ├── H5PyReg.pas ├── P4DH5Py.dpk ├── P4DH5Py.dproj ├── P4DH5Py.res ├── dclP4DH5Py.dpk ├── dclP4DH5Py.dproj └── dclP4DH5Py.res ├── MoviePy ├── MoviePy.pas ├── MoviePyReg.pas ├── P4DMoviePy.dpk ├── P4DMoviePy.dproj ├── P4DMoviePy.res ├── README.md ├── dclP4DMoviePy.dpk ├── dclP4DMoviePy.dproj └── dclP4DMoviePy.res ├── PSUtil ├── P4DPSUtil.dpk ├── P4DPSUtil.dproj ├── P4DPSUtil.res ├── PSUtil.pas ├── PSUtilReg.pas ├── dclP4DPSUtil.dpk ├── dclP4DPSUtil.dproj └── dclP4DPSUtil.res ├── Pillow ├── P4DPillow.dpk ├── P4DPillow.dproj ├── P4DPillow.res ├── Pillow.pas ├── PillowReg.pas ├── dclP4DPillow.dpk ├── dclP4DPillow.dproj └── dclP4DPillow.res ├── PyQT5 ├── P4DPyQT5.dpk ├── P4DPyQT5.dproj ├── P4DPyQT5.res ├── PyQT5.pas ├── PyQT5Reg.pas ├── README.md ├── dclP4DPyQT5.dpk ├── dclP4DPyQT5.dproj └── dclP4DPyQT5.res └── RemBG ├── P4DRemBG.dpk ├── P4DRemBG.dproj ├── P4DRemBG.res ├── README.md ├── RemBG.pas ├── RemBGReg.pas ├── dclP4DRemBG.dpk ├── dclP4DRemBG.dproj └── dclP4DRemBG.res /.gitignore: -------------------------------------------------------------------------------- 1 | # Uncomment these types if you want even more clean repository. But be careful. 2 | # It can make harm to an existing project source. Read explanations below. 3 | # 4 | # Resource files are binaries containing manifest, project icon and version info. 5 | # They can not be viewed as text or compared by diff-tools. Consider replacing them with .rc files. 6 | #*.res 7 | # 8 | # Type library file (binary). In old Delphi versions it should be stored. 9 | # Since Delphi 2009 it is produced from .ridl file and can safely be ignored. 10 | #*.tlb 11 | # 12 | # Diagram Portfolio file. Used by the diagram editor up to Delphi 7. 13 | # Uncomment this if you are not using diagrams or use newer Delphi version. 14 | #*.ddp 15 | # 16 | # Visual LiveBindings file. Added in Delphi XE2. 17 | # Uncomment this if you are not using LiveBindings Designer. 18 | #*.vlb 19 | # 20 | # Deployment Manager configuration file for your project. Added in Delphi XE2. 21 | # Uncomment this if it is not mobile development and you do not use remote debug feature. 22 | #*.deployproj 23 | # 24 | # C++ object files produced when C/C++ Output file generation is configured. 25 | # Uncomment this if you are not using external objects (zlib library for example). 26 | #*.obj 27 | # 28 | 29 | # Delphi compiler-generated binaries (safe to delete) 30 | *.exe 31 | *.dll 32 | *.bpl 33 | *.bpi 34 | *.dcp 35 | *.so 36 | *.apk 37 | *.drc 38 | *.map 39 | *.dres 40 | *.rsm 41 | *.tds 42 | *.dcu 43 | *.lib 44 | *.a 45 | *.o 46 | *.ocx 47 | 48 | # Delphi autogenerated files (duplicated info) 49 | *.cfg 50 | *.hpp 51 | *Resource.rc 52 | 53 | # Delphi local files (user-specific info) 54 | *.local 55 | *.identcache 56 | *.projdata 57 | *.tvsconfig 58 | *.dsk 59 | 60 | # Delphi history and backups 61 | __history/ 62 | __recovery/ 63 | *.~* 64 | 65 | # Castalia statistics file (since XE7 Castalia is distributed with Delphi) 66 | *.stat 67 | 68 | # Boss dependency manager vendor folder https://github.com/HashLoad/boss 69 | modules/ 70 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 Embarcadero Technologies 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /PythonPackages4Delphi.groupproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | {8BED2FB2-EC9D-45DD-B081-C843A9B25B0B} 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | Default.Personality.12 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | -------------------------------------------------------------------------------- /PythonPackages4Delphi.prjmgc: -------------------------------------------------------------------------------- 1 | [Settings] 2 | AutoLibSuffix=0 3 | ClearChildAppSettings=0 4 | ClearChildPackageSettings=0 5 | ClearChildVersionInfo=0 6 | NormalizeDproj=1 7 | SplitDproj=0 8 | EnableMissingPlatforms=1 9 | RemoveUnusedPlatforms=1 10 | RefreshFormType=0 11 | RemoveExcludedPackages=1 12 | RemoveDeployment=1 13 | RemoveUWP=1 14 | 15 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Python Packages for Delphi 2 | General collection of Python Packages wrapped for use in Delphi and C++Builder. Makes use of [Python4Delphi](https://github.com/Embarcadero/python4delphi) and the [Lightweight Python Wrappers for Delphi](https://github.com/Embarcadero/Lightweight-Python-Wrappers). 3 | 4 | Lightweight Python Wrappers for DelphiPython for Delphi 5 | 6 | * [Boto 3](https://github.com/boto/boto3) - Amazon Web Services (AWS) Software Development Kit (SDK) 7 | * [MoviePy](https://zulko.github.io/moviepy/) - Module for video editing, which can be used for basic operations (like cuts, concatenations, title insertions), video compositing (a.k.a. non-linear editing), video processing, or to create advanced effects. It can read and write the most common video formats, including GIF. 8 | * [Pillow](https://python-pillow.org/) - Python Imaging Library 9 | * [PyQT5](https://www.riverbankcomputing.com/software/pyqt/) - Python bindings for QT visual framework. 10 | * [RemBG](https://github.com/danielgatis/rembg) - Tool to remove images background. 11 | * [H5Py](https://www.h5py.org/) - Provides both a high- and low-level interface to the HDF5 (Hierarchical Data Format) library. It lets you store huge amounts of numerical data, and easily manipulate that data from NumPy. 12 | * [PSUtil](https://github.com/giampaolo/psutil) - (process and system utilities) is a cross-platform library for retrieving information on running processes and system utilization (CPU, memory, disks, network, sensors)  13 | 14 | For Data Sciene related packages, check out [P4D-Data-Sciences](https://github.com/Embarcadero/P4D-Data-Sciences) 15 | -------------------------------------------------------------------------------- /boss-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "hash": "d41d8cd98f00b204e9800998ecf8427e", 3 | "updated": "2022-06-08T17:04:13.2794469-07:00", 4 | "installedModules": { 5 | "https://github.com/embarcadero/lightweight-python-wrappers": { 6 | "name": "lightweight-python-wrappers", 7 | "version": "v0.0.2-alpha", 8 | "hash": "477188a94baaf9f1eb9c29e1af0949df", 9 | "artifacts": { 10 | "dcp": [ 11 | "P4DPyPackage.dcp", 12 | "dclP4DPyPackage.dcp" 13 | ], 14 | "dcu": [ 15 | "PyCommon.dcu", 16 | "PyCore.dcu", 17 | "PyExceptions.dcu", 18 | "PyModule.dcu", 19 | "PyPackage.Editors.dcu", 20 | "PyPackage.Manager.Cmd.Conda.Install.dcu", 21 | "PyPackage.Manager.Cmd.Conda.List.dcu", 22 | "PyPackage.Manager.Cmd.Conda.Uninstall.dcu", 23 | "PyPackage.Manager.Cmd.Conda.dcu", 24 | "PyPackage.Manager.Cmd.Intf.dcu", 25 | "PyPackage.Manager.Cmd.Pip.Install.dcu", 26 | "PyPackage.Manager.Cmd.Pip.List.dcu", 27 | "PyPackage.Manager.Cmd.Pip.Uninstall.dcu", 28 | "PyPackage.Manager.Cmd.Pip.dcu", 29 | "PyPackage.Manager.Cmd.dcu", 30 | "PyPackage.Manager.Conda.dcu", 31 | "PyPackage.Manager.Defs.Conda.dcu", 32 | "PyPackage.Manager.Defs.Opts.Conda.Create.dcu", 33 | "PyPackage.Manager.Defs.Opts.Conda.Install.dcu", 34 | "PyPackage.Manager.Defs.Opts.Conda.List.dcu", 35 | "PyPackage.Manager.Defs.Opts.Conda.Uninstall.dcu", 36 | "PyPackage.Manager.Defs.Opts.Pip.Install.dcu", 37 | "PyPackage.Manager.Defs.Opts.Pip.List.dcu", 38 | "PyPackage.Manager.Defs.Opts.Pip.Uninstall.dcu", 39 | "PyPackage.Manager.Defs.Opts.dcu", 40 | "PyPackage.Manager.Defs.Pip.dcu", 41 | "PyPackage.Manager.Defs.dcu", 42 | "PyPackage.Manager.Intf.dcu", 43 | "PyPackage.Manager.ManagerKind.dcu", 44 | "PyPackage.Manager.Managers.dcu", 45 | "PyPackage.Manager.Pip.dcu", 46 | "PyPackage.Manager.dcu", 47 | "PyPackage.Model.dcu", 48 | "PyPackage.dcu", 49 | "PyUtils.dcu" 50 | ], 51 | "bpl": [ 52 | "P4DPyPackage280.bpl", 53 | "dclP4DPyPackage280.bpl" 54 | ] 55 | }, 56 | "failed": false, 57 | "changed": false 58 | }, 59 | "https://github.com/embarcadero/python4delphi": { 60 | "name": "python4delphi", 61 | "version": "v1.1.1", 62 | "hash": "f1c9b702959bfdfb016b5f6068b774eb", 63 | "artifacts": { 64 | "dcp": [ 65 | "Python.bpi", 66 | "Python.dcp", 67 | "Python.lib", 68 | "PythonFmx.bpi", 69 | "PythonFmx.dcp", 70 | "PythonFmx.lib", 71 | "PythonVcl.bpi", 72 | "PythonVcl.dcp", 73 | "PythonVcl.lib", 74 | "dclPython.bpi", 75 | "dclPython.dcp", 76 | "dclPython.lib", 77 | "dclPythonFmx.bpi", 78 | "dclPythonFmx.dcp", 79 | "dclPythonFmx.lib", 80 | "dclPythonVcl.bpi", 81 | "dclPythonVcl.dcp", 82 | "dclPythonVcl.lib" 83 | ], 84 | "dcu": [ 85 | "FMX.PythonGUIInputOutput.dcu", 86 | "FMX.PythonReg.dcu", 87 | "MethodCallBack.dcu", 88 | "PythonEngine.dcu", 89 | "PythonReg.dcu", 90 | "PythonVersions.dcu", 91 | "VarPyth.dcu", 92 | "Vcl.PythonGUIInputOutput.dcu", 93 | "Vcl.PythonReg.dcu", 94 | "WrapActions.dcu", 95 | "WrapDelphi.dcu", 96 | "WrapDelphiClasses.dcu", 97 | "WrapDelphiDataBind.dcu", 98 | "WrapDelphiFmx.dcu", 99 | "WrapDelphiTypes.dcu", 100 | "WrapDelphiVCL.dcu", 101 | "WrapDelphiWindows.dcu", 102 | "WrapFireDAC.dcu", 103 | "WrapFmxActnList.dcu", 104 | "WrapFmxColors.dcu", 105 | "WrapFmxComCtrls.dcu", 106 | "WrapFmxControls.dcu", 107 | "WrapFmxDataBind.dcu", 108 | "WrapFmxDialogs.dcu", 109 | "WrapFmxEdit.dcu", 110 | "WrapFmxForms.dcu", 111 | "WrapFmxGrids.dcu", 112 | "WrapFmxLayouts.dcu", 113 | "WrapFmxListBox.dcu", 114 | "WrapFmxListView.dcu", 115 | "WrapFmxMedia.dcu", 116 | "WrapFmxMemo.dcu", 117 | "WrapFmxMenus.dcu", 118 | "WrapFmxScrollBox.dcu", 119 | "WrapFmxShapes.dcu", 120 | "WrapFmxStdActns.dcu", 121 | "WrapFmxStdCtrls.dcu", 122 | "WrapFmxStyles.dcu", 123 | "WrapFmxTypes.dcu", 124 | "WrapVclActnList.dcu", 125 | "WrapVclButtons.dcu", 126 | "WrapVclComCtrls.dcu", 127 | "WrapVclControls.dcu", 128 | "WrapVclDialogs.dcu", 129 | "WrapVclExtCtrls.dcu", 130 | "WrapVclForms.dcu", 131 | "WrapVclGraphics.dcu", 132 | "WrapVclGrids.dcu", 133 | "WrapVclMedia.dcu", 134 | "WrapVclMenus.dcu", 135 | "WrapVclSamplesSpin.dcu", 136 | "WrapVclStdCtrls.dcu", 137 | "WrapVclThemes.dcu", 138 | "WrapVclWinXCtrls.dcu" 139 | ], 140 | "bpl": [ 141 | "Python.drc", 142 | "Python280.bpl", 143 | "Python280.map", 144 | "PythonFmx280.bpl", 145 | "PythonVcl.drc", 146 | "PythonVcl280.bpl", 147 | "PythonVcl280.map", 148 | "dclPython.drc", 149 | "dclPython280.bpl", 150 | "dclPython280.map", 151 | "dclPythonFmx280.bpl", 152 | "dclPythonVcl.drc", 153 | "dclPythonVcl280.bpl", 154 | "dclPythonVcl280.map" 155 | ] 156 | }, 157 | "failed": false, 158 | "changed": false 159 | }, 160 | "https://github.com/embarcadero/pythonenviroments": { 161 | "name": "pythonenviroments", 162 | "version": "v0.1.2-alpha", 163 | "hash": "5b69855d37b719878c0320e465d841a2", 164 | "artifacts": { 165 | "dcp": [ 166 | "P4DEnvironment.bpi", 167 | "P4DEnvironment.dcp", 168 | "P4DEnvironment.lib", 169 | "P4DEnvironmentProject.bpi", 170 | "P4DEnvironmentProject.dcp", 171 | "P4DEnvironmentProject.lib", 172 | "P4DTools.bpi", 173 | "P4DTools.dcp", 174 | "P4DTools.lib", 175 | "dclP4DEnvironment.bpi", 176 | "dclP4DEnvironment.dcp", 177 | "dclP4DEnvironment.lib", 178 | "dclP4DEnvironmentProject.bpi", 179 | "dclP4DEnvironmentProject.dcp", 180 | "dclP4DEnvironmentProject.lib" 181 | ], 182 | "dcu": [ 183 | "PyEnvionment.Editors.dcu", 184 | "PyEnvironment.AddOn.EnsurePip.dcu", 185 | "PyEnvironment.AddOn.GetPip.dcu", 186 | "PyEnvironment.AddOn.dcu", 187 | "PyEnvironment.Distribution.dcu", 188 | "PyEnvironment.Embeddable.Res.Python310.dcu", 189 | "PyEnvironment.Embeddable.Res.Python37.dcu", 190 | "PyEnvironment.Embeddable.Res.Python38.dcu", 191 | "PyEnvironment.Embeddable.Res.Python39.dcu", 192 | "PyEnvironment.Embeddable.Res.dcu", 193 | "PyEnvironment.Embeddable.dcu", 194 | "PyEnvironment.Local.dcu", 195 | "PyEnvironment.Notification.dcu", 196 | "PyEnvironment.Path.dcu", 197 | "PyEnvironment.Project.IDE.Deploy.dcu", 198 | "PyEnvironment.Project.IDE.Helper.dcu", 199 | "PyEnvironment.Project.IDE.ManagerMenu.dcu", 200 | "PyEnvironment.Project.IDE.Menu.dcu", 201 | "PyEnvironment.Project.IDE.Registration.dcu", 202 | "PyEnvironment.Project.IDE.Types.dcu", 203 | "PyEnvironment.Project.dcu", 204 | "PyEnvironment.Registration.dcu", 205 | "PyEnvironment.dcu", 206 | "PyTools.ExecCmd.Args.dcu", 207 | "PyTools.ExecCmd.Platform.dcu", 208 | "PyTools.ExecCmd.dcu" 209 | ], 210 | "bpl": [ 211 | "P4DEnvironment280.bpl", 212 | "P4DEnvironmentProject280.bpl", 213 | "P4DTools280.bpl", 214 | "dclP4DEnvironment280.bpl", 215 | "dclP4DEnvironmentProject280.bpl" 216 | ] 217 | }, 218 | "failed": false, 219 | "changed": false 220 | } 221 | } 222 | } -------------------------------------------------------------------------------- /boss.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "PythonPackages4Delphi", 3 | "description": "General collection of Python Packages wrapped for use in Delphi and C++Builder", 4 | "version": "1.0.0", 5 | "homepage": "https://github.com/Embarcadero/PythonPackages4Delphi", 6 | "mainsrc": "./src", 7 | "projects": [ 8 | "./src/Boto3/dclP4DBoto3.dproj", 9 | "./src/Boto3/P4DBoto3.dproj", 10 | "./src/H5Py/dclP4DH5Py.dproj", 11 | "./src/H5Py/P4DH5Py.dproj", 12 | "./src/MoviePy/dclP4DMoviePy.dproj", 13 | "./src/MoviePy/P4DMoviePy.dproj", 14 | "./src/Pillow/dclP4DPillow.dproj", 15 | "./src/Pillow/P4DPillow.dproj", 16 | "./src/PSUtil/dclP4DPSUtil.dproj", 17 | "./src/PSUtil/P4DPSUtil.dproj", 18 | "./src/PyQT5/dclP4DPyQT5.dproj", 19 | "./src/PyQT5/P4DPyQT5.dproj", 20 | "./src/RemBG/dclP4DRemBG.dproj", 21 | "./src/RemBG/P4DRemBG.dproj" 22 | ], 23 | "dependencies": { 24 | "https://github.com/embarcadero/lightweight-python-wrappers": "^v0.0.1-alpha" 25 | } 26 | } -------------------------------------------------------------------------------- /images/bmp/128/Boto3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/images/bmp/128/Boto3.bmp -------------------------------------------------------------------------------- /images/bmp/128/MoviePy.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/images/bmp/128/MoviePy.bmp -------------------------------------------------------------------------------- /images/bmp/128/Pillow.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/images/bmp/128/Pillow.bmp -------------------------------------------------------------------------------- /images/bmp/128/PyQT5.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/images/bmp/128/PyQT5.bmp -------------------------------------------------------------------------------- /images/bmp/128/RemBG.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/images/bmp/128/RemBG.bmp -------------------------------------------------------------------------------- /images/bmp/128/h5py.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/images/bmp/128/h5py.bmp -------------------------------------------------------------------------------- /images/bmp/128/psutil.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/images/bmp/128/psutil.bmp -------------------------------------------------------------------------------- /images/bmp/16/Boto3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/images/bmp/16/Boto3.bmp -------------------------------------------------------------------------------- /images/bmp/16/MoviePy.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/images/bmp/16/MoviePy.bmp -------------------------------------------------------------------------------- /images/bmp/16/Pillow.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/images/bmp/16/Pillow.bmp -------------------------------------------------------------------------------- /images/bmp/16/PyQT5.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/images/bmp/16/PyQT5.bmp -------------------------------------------------------------------------------- /images/bmp/16/RemBG.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/images/bmp/16/RemBG.bmp -------------------------------------------------------------------------------- /images/bmp/16/h5py.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/images/bmp/16/h5py.bmp -------------------------------------------------------------------------------- /images/bmp/16/psutil.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/images/bmp/16/psutil.bmp -------------------------------------------------------------------------------- /images/bmp/24/Boto3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/images/bmp/24/Boto3.bmp -------------------------------------------------------------------------------- /images/bmp/24/MoviePy.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/images/bmp/24/MoviePy.bmp -------------------------------------------------------------------------------- /images/bmp/24/Pillow.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/images/bmp/24/Pillow.bmp -------------------------------------------------------------------------------- /images/bmp/24/PyQT5.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/images/bmp/24/PyQT5.bmp -------------------------------------------------------------------------------- /images/bmp/24/RemBG.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/images/bmp/24/RemBG.bmp -------------------------------------------------------------------------------- /images/bmp/24/h5py.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/images/bmp/24/h5py.bmp -------------------------------------------------------------------------------- /images/bmp/24/psutil.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/images/bmp/24/psutil.bmp -------------------------------------------------------------------------------- /images/bmp/32/Boto3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/images/bmp/32/Boto3.bmp -------------------------------------------------------------------------------- /images/bmp/32/MoviePy.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/images/bmp/32/MoviePy.bmp -------------------------------------------------------------------------------- /images/bmp/32/Pillow.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/images/bmp/32/Pillow.bmp -------------------------------------------------------------------------------- /images/bmp/32/PyQT5.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/images/bmp/32/PyQT5.bmp -------------------------------------------------------------------------------- /images/bmp/32/RemBG.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/images/bmp/32/RemBG.bmp -------------------------------------------------------------------------------- /images/bmp/32/h5py.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/images/bmp/32/h5py.bmp -------------------------------------------------------------------------------- /images/bmp/32/psutil.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/images/bmp/32/psutil.bmp -------------------------------------------------------------------------------- /images/png/128x128/Boto3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/images/png/128x128/Boto3.png -------------------------------------------------------------------------------- /images/png/128x128/MoviePy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/images/png/128x128/MoviePy.png -------------------------------------------------------------------------------- /images/png/128x128/Pillow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/images/png/128x128/Pillow.png -------------------------------------------------------------------------------- /images/png/128x128/PyQT5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/images/png/128x128/PyQT5.png -------------------------------------------------------------------------------- /images/png/128x128/RemBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/images/png/128x128/RemBG.png -------------------------------------------------------------------------------- /images/png/128x128/h5py.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/images/png/128x128/h5py.png -------------------------------------------------------------------------------- /images/png/128x128/psutil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/images/png/128x128/psutil.png -------------------------------------------------------------------------------- /images/png/16x16/Boto3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/images/png/16x16/Boto3.png -------------------------------------------------------------------------------- /images/png/16x16/MoviePy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/images/png/16x16/MoviePy.png -------------------------------------------------------------------------------- /images/png/16x16/Pillow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/images/png/16x16/Pillow.png -------------------------------------------------------------------------------- /images/png/16x16/PyQT5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/images/png/16x16/PyQT5.png -------------------------------------------------------------------------------- /images/png/16x16/RemBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/images/png/16x16/RemBG.png -------------------------------------------------------------------------------- /images/png/16x16/h5py.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/images/png/16x16/h5py.png -------------------------------------------------------------------------------- /images/png/16x16/psutil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/images/png/16x16/psutil.png -------------------------------------------------------------------------------- /images/png/24x24/Boto3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/images/png/24x24/Boto3.png -------------------------------------------------------------------------------- /images/png/24x24/MoviePy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/images/png/24x24/MoviePy.png -------------------------------------------------------------------------------- /images/png/24x24/Pillow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/images/png/24x24/Pillow.png -------------------------------------------------------------------------------- /images/png/24x24/PyQT5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/images/png/24x24/PyQT5.png -------------------------------------------------------------------------------- /images/png/24x24/RemBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/images/png/24x24/RemBG.png -------------------------------------------------------------------------------- /images/png/24x24/h5py.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/images/png/24x24/h5py.png -------------------------------------------------------------------------------- /images/png/24x24/psutil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/images/png/24x24/psutil.png -------------------------------------------------------------------------------- /images/png/32x32/Boto3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/images/png/32x32/Boto3.png -------------------------------------------------------------------------------- /images/png/32x32/MoviePy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/images/png/32x32/MoviePy.png -------------------------------------------------------------------------------- /images/png/32x32/Pillow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/images/png/32x32/Pillow.png -------------------------------------------------------------------------------- /images/png/32x32/PyQT5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/images/png/32x32/PyQT5.png -------------------------------------------------------------------------------- /images/png/32x32/RemBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/images/png/32x32/RemBG.png -------------------------------------------------------------------------------- /images/png/32x32/h5py.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/images/png/32x32/h5py.png -------------------------------------------------------------------------------- /images/png/32x32/psutil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/images/png/32x32/psutil.png -------------------------------------------------------------------------------- /src/Boto3/Boto3.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/src/Boto3/Boto3.pas -------------------------------------------------------------------------------- /src/Boto3/Boto3Reg.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/src/Boto3/Boto3Reg.pas -------------------------------------------------------------------------------- /src/Boto3/P4DBoto3.dpk: -------------------------------------------------------------------------------- 1 | package P4DBoto3; 2 | 3 | {$R *.res} 4 | {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users} 5 | {$ALIGN 8} 6 | {$ASSERTIONS ON} 7 | {$BOOLEVAL OFF} 8 | {$DEBUGINFO OFF} 9 | {$EXTENDEDSYNTAX ON} 10 | {$IMPORTEDDATA ON} 11 | {$IOCHECKS ON} 12 | {$LOCALSYMBOLS OFF} 13 | {$LONGSTRINGS ON} 14 | {$OPENSTRINGS ON} 15 | {$OPTIMIZATION ON} 16 | {$OVERFLOWCHECKS OFF} 17 | {$RANGECHECKS OFF} 18 | {$REFERENCEINFO OFF} 19 | {$SAFEDIVIDE OFF} 20 | {$STACKFRAMES OFF} 21 | {$TYPEDADDRESS OFF} 22 | {$VARSTRINGCHECKS ON} 23 | {$WRITEABLECONST OFF} 24 | {$MINENUMSIZE 1} 25 | {$IMAGEBASE $400000} 26 | {$DEFINE RELEASE} 27 | {$ENDIF IMPLICITBUILDING} 28 | {$DESCRIPTION 'P4D Data Sciences - Boto3'} 29 | {$LIBSUFFIX AUTO} 30 | {$RUNONLY} 31 | {$IMPLICITBUILD ON} 32 | 33 | requires 34 | rtl, 35 | p4dpypackage; 36 | 37 | contains 38 | Boto3 in 'Boto3.pas'; 39 | 40 | end. 41 | -------------------------------------------------------------------------------- /src/Boto3/P4DBoto3.dproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | True 4 | Package 5 | Release 6 | None 7 | P4DBoto3.dpk 8 | Win32 9 | {447EEF98-6F09-48D0-93BB-0A7DA37D24A1} 10 | P4DBoto3 11 | 20.1 12 | 168083 13 | 14 | 15 | true 16 | Base 17 | true 18 | /usr/X11/bin/xterm -e "%debuggee%" 19 | Debug 20 | CFBundleName=$(MSBuildProjectName);CFBundleDisplayName=$(MSBuildProjectName);CFBundleIdentifier=$(MSBuildProjectName);CFBundleVersion=1.0.0;CFBundleShortVersionString=1.0.0;CFBundlePackageType=APPL;CFBundleSignature=????;CFBundleAllowMixedLocalizations=YES;CFBundleExecutable=$(MSBuildProjectName);NSHighResolutionCapable=true;LSApplicationCategoryType=public.app-category.utilities;NSLocationUsageDescription=The reason for accessing the location information of the user;NSContactsUsageDescription=The reason for accessing the contacts;NSCalendarsUsageDescription=The reason for accessing the calendar data;NSRemindersUsageDescription=The reason for accessing the reminders;NSCameraUsageDescription=The reason for accessing the camera;NSMicrophoneUsageDescription=The reason for accessing the microphone;NSMotionUsageDescription=The reason for accessing the accelerometer;NSDesktopFolderUsageDescription=The reason for accessing the Desktop folder;NSDocumentsFolderUsageDescription=The reason for accessing the Documents folder;NSDownloadsFolderUsageDescription=The reason for accessing the Downloads folder;NSNetworkVolumesUsageDescription=The reason for accessing files on a network volume;NSRemovableVolumesUsageDescription=The reason for accessing files on a removable volume;NSSpeechRecognitionUsageDescription=The reason for requesting to send user data to Apple's speech recognition servers;ITSAppUsesNonExemptEncryption=false;NSBluetoothAlwaysUsageDescription=The reason for accessing the Bluetooth interface 21 | 22 | 23 | true 24 | 25 | 26 | true 27 | Base 28 | true 29 | 30 | 31 | true 32 | Base 33 | true 34 | 35 | 36 | true 37 | Base 38 | true 39 | 40 | 41 | true 42 | Base 43 | true 44 | 45 | 46 | true 47 | Base 48 | true 49 | 50 | 51 | true 52 | Base 53 | true 54 | 55 | 56 | true 57 | Base 58 | true 59 | 60 | 61 | true 62 | Cfg_1 63 | true 64 | true 65 | 66 | 67 | true 68 | Cfg_1 69 | true 70 | true 71 | 72 | 73 | true 74 | Cfg_1 75 | true 76 | true 77 | 78 | 79 | true 80 | Cfg_1 81 | true 82 | true 83 | 84 | 85 | true 86 | Cfg_1 87 | true 88 | true 89 | 90 | 91 | true 92 | Cfg_1 93 | true 94 | true 95 | 96 | 97 | true 98 | Base 99 | true 100 | 101 | 102 | true 103 | Cfg_2 104 | true 105 | true 106 | 107 | 108 | true 109 | Cfg_2 110 | true 111 | true 112 | 113 | 114 | true 115 | Cfg_2 116 | true 117 | true 118 | 119 | 120 | true 121 | Cfg_2 122 | true 123 | true 124 | 125 | 126 | true 127 | Cfg_2 128 | true 129 | true 130 | 131 | 132 | true 133 | Cfg_2 134 | true 135 | true 136 | 137 | 138 | P4DBoto3 139 | All 140 | ..\..\lib\$(Platform)\$(Config) 141 | P4D Data Sciences - Boto3 142 | .\$(Platform)\$(Config) 143 | System;Xml;Data;Datasnap;Web;Soap;$(DCC_Namespace) 144 | $(Auto) 145 | true 146 | true 147 | true 148 | CompanyName=;FileDescription=$(MSBuildProjectName);FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProgramID=com.embarcadero.$(MSBuildProjectName);ProductName=$(MSBuildProjectName);ProductVersion=1.0.0.0;Comments= 149 | 1046 150 | 151 | 152 | Debug 153 | None 154 | annotation-1.2.0.dex.jar;asynclayoutinflater-1.0.0.dex.jar;billing-4.0.0.dex.jar;browser-1.0.0.dex.jar;cloud-messaging.dex.jar;collection-1.0.0.dex.jar;coordinatorlayout-1.0.0.dex.jar;core-1.5.0-rc02.dex.jar;core-common-2.0.1.dex.jar;core-runtime-2.0.1.dex.jar;cursoradapter-1.0.0.dex.jar;customview-1.0.0.dex.jar;documentfile-1.0.0.dex.jar;drawerlayout-1.0.0.dex.jar;firebase-annotations-16.0.0.dex.jar;firebase-common-20.0.0.dex.jar;firebase-components-17.0.0.dex.jar;firebase-datatransport-18.0.0.dex.jar;firebase-encoders-17.0.0.dex.jar;firebase-encoders-json-18.0.0.dex.jar;firebase-iid-interop-17.1.0.dex.jar;firebase-installations-17.0.0.dex.jar;firebase-installations-interop-17.0.0.dex.jar;firebase-measurement-connector-19.0.0.dex.jar;firebase-messaging-22.0.0.dex.jar;fmx.dex.jar;fragment-1.0.0.dex.jar;google-play-licensing.dex.jar;interpolator-1.0.0.dex.jar;javax.inject-1.dex.jar;legacy-support-core-ui-1.0.0.dex.jar;legacy-support-core-utils-1.0.0.dex.jar;lifecycle-common-2.0.0.dex.jar;lifecycle-livedata-2.0.0.dex.jar;lifecycle-livedata-core-2.0.0.dex.jar;lifecycle-runtime-2.0.0.dex.jar;lifecycle-service-2.0.0.dex.jar;lifecycle-viewmodel-2.0.0.dex.jar;listenablefuture-1.0.dex.jar;loader-1.0.0.dex.jar;localbroadcastmanager-1.0.0.dex.jar;play-services-ads-20.1.0.dex.jar;play-services-ads-base-20.1.0.dex.jar;play-services-ads-identifier-17.0.0.dex.jar;play-services-ads-lite-20.1.0.dex.jar;play-services-base-17.5.0.dex.jar;play-services-basement-17.6.0.dex.jar;play-services-cloud-messaging-16.0.0.dex.jar;play-services-drive-17.0.0.dex.jar;play-services-games-21.0.0.dex.jar;play-services-location-18.0.0.dex.jar;play-services-maps-17.0.1.dex.jar;play-services-measurement-base-18.0.0.dex.jar;play-services-measurement-sdk-api-18.0.0.dex.jar;play-services-places-placereport-17.0.0.dex.jar;play-services-stats-17.0.0.dex.jar;play-services-tasks-17.2.0.dex.jar;print-1.0.0.dex.jar;room-common-2.1.0.dex.jar;room-runtime-2.1.0.dex.jar;slidingpanelayout-1.0.0.dex.jar;sqlite-2.0.1.dex.jar;sqlite-framework-2.0.1.dex.jar;swiperefreshlayout-1.0.0.dex.jar;transport-api-3.0.0.dex.jar;transport-backend-cct-3.0.0.dex.jar;transport-runtime-3.0.0.dex.jar;user-messaging-platform-1.0.0.dex.jar;versionedparcelable-1.1.1.dex.jar;viewpager-1.0.0.dex.jar;work-runtime-2.1.0.dex.jar 155 | 1 156 | package=com.embarcadero.$(MSBuildProjectName);label=$(MSBuildProjectName);versionCode=1;versionName=1.0.0;persistent=False;restoreAnyVersion=False;installLocation=auto;largeHeap=False;theme=TitleBar;hardwareAccelerated=true;apiKey= 157 | 158 | 159 | Debug 160 | None 161 | annotation-1.2.0.dex.jar;asynclayoutinflater-1.0.0.dex.jar;billing-4.0.0.dex.jar;browser-1.0.0.dex.jar;cloud-messaging.dex.jar;collection-1.0.0.dex.jar;coordinatorlayout-1.0.0.dex.jar;core-1.5.0-rc02.dex.jar;core-common-2.0.1.dex.jar;core-runtime-2.0.1.dex.jar;cursoradapter-1.0.0.dex.jar;customview-1.0.0.dex.jar;documentfile-1.0.0.dex.jar;drawerlayout-1.0.0.dex.jar;firebase-annotations-16.0.0.dex.jar;firebase-common-20.0.0.dex.jar;firebase-components-17.0.0.dex.jar;firebase-datatransport-18.0.0.dex.jar;firebase-encoders-17.0.0.dex.jar;firebase-encoders-json-18.0.0.dex.jar;firebase-iid-interop-17.1.0.dex.jar;firebase-installations-17.0.0.dex.jar;firebase-installations-interop-17.0.0.dex.jar;firebase-measurement-connector-19.0.0.dex.jar;firebase-messaging-22.0.0.dex.jar;fmx.dex.jar;fragment-1.0.0.dex.jar;google-play-licensing.dex.jar;interpolator-1.0.0.dex.jar;javax.inject-1.dex.jar;legacy-support-core-ui-1.0.0.dex.jar;legacy-support-core-utils-1.0.0.dex.jar;lifecycle-common-2.0.0.dex.jar;lifecycle-livedata-2.0.0.dex.jar;lifecycle-livedata-core-2.0.0.dex.jar;lifecycle-runtime-2.0.0.dex.jar;lifecycle-service-2.0.0.dex.jar;lifecycle-viewmodel-2.0.0.dex.jar;listenablefuture-1.0.dex.jar;loader-1.0.0.dex.jar;localbroadcastmanager-1.0.0.dex.jar;play-services-ads-20.1.0.dex.jar;play-services-ads-base-20.1.0.dex.jar;play-services-ads-identifier-17.0.0.dex.jar;play-services-ads-lite-20.1.0.dex.jar;play-services-base-17.5.0.dex.jar;play-services-basement-17.6.0.dex.jar;play-services-cloud-messaging-16.0.0.dex.jar;play-services-drive-17.0.0.dex.jar;play-services-games-21.0.0.dex.jar;play-services-location-18.0.0.dex.jar;play-services-maps-17.0.1.dex.jar;play-services-measurement-base-18.0.0.dex.jar;play-services-measurement-sdk-api-18.0.0.dex.jar;play-services-places-placereport-17.0.0.dex.jar;play-services-stats-17.0.0.dex.jar;play-services-tasks-17.2.0.dex.jar;print-1.0.0.dex.jar;room-common-2.1.0.dex.jar;room-runtime-2.1.0.dex.jar;slidingpanelayout-1.0.0.dex.jar;sqlite-2.0.1.dex.jar;sqlite-framework-2.0.1.dex.jar;swiperefreshlayout-1.0.0.dex.jar;transport-api-3.0.0.dex.jar;transport-backend-cct-3.0.0.dex.jar;transport-runtime-3.0.0.dex.jar;user-messaging-platform-1.0.0.dex.jar;versionedparcelable-1.1.1.dex.jar;viewpager-1.0.0.dex.jar;work-runtime-2.1.0.dex.jar 162 | 1 163 | package=com.embarcadero.$(MSBuildProjectName);label=$(MSBuildProjectName);versionCode=1;versionName=1.0.0;persistent=False;restoreAnyVersion=False;installLocation=auto;largeHeap=False;theme=TitleBar;hardwareAccelerated=true;apiKey= 164 | 165 | 166 | Debug 167 | /usr/X11/bin/xterm -e "%debuggee%" 168 | CFBundleName=$(MSBuildProjectName);CFBundleDisplayName=$(MSBuildProjectName);CFBundleIdentifier=$(MSBuildProjectName);CFBundleVersion=1.0.0;CFBundleShortVersionString=1.0.0;CFBundlePackageType=APPL;CFBundleSignature=????;CFBundleAllowMixedLocalizations=YES;CFBundleExecutable=$(MSBuildProjectName);NSHighResolutionCapable=true;LSApplicationCategoryType=public.app-category.utilities;NSLocationUsageDescription=The reason for accessing the location information of the user;NSContactsUsageDescription=The reason for accessing the contacts;NSCalendarsUsageDescription=The reason for accessing the calendar data;NSRemindersUsageDescription=The reason for accessing the reminders;NSCameraUsageDescription=The reason for accessing the camera;NSMicrophoneUsageDescription=The reason for accessing the microphone;NSMotionUsageDescription=The reason for accessing the accelerometer;NSDesktopFolderUsageDescription=The reason for accessing the Desktop folder;NSDocumentsFolderUsageDescription=The reason for accessing the Documents folder;NSDownloadsFolderUsageDescription=The reason for accessing the Downloads folder;NSNetworkVolumesUsageDescription=The reason for accessing files on a network volume;NSRemovableVolumesUsageDescription=The reason for accessing files on a removable volume;NSSpeechRecognitionUsageDescription=The reason for requesting to send user data to Apple's speech recognition servers;ITSAppUsesNonExemptEncryption=false;NSBluetoothAlwaysUsageDescription=The reason for accessing the Bluetooth interface 169 | 170 | 171 | Debug 172 | Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;Bde;$(DCC_Namespace) 173 | true 174 | 1033 175 | 176 | 177 | Debug 178 | Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;$(DCC_Namespace) 179 | true 180 | 1033 181 | 182 | 183 | true 184 | true 185 | DEBUG;$(DCC_Define) 186 | true 187 | true 188 | false 189 | true 190 | true 191 | 192 | 193 | 1 194 | package=com.embarcadero.$(MSBuildProjectName);label=$(MSBuildProjectName);versionCode=1;versionName=1.0.0;persistent=False;restoreAnyVersion=False;installLocation=auto;largeHeap=False;theme=TitleBar;hardwareAccelerated=true;apiKey= 195 | 196 | 197 | 1 198 | package=com.embarcadero.$(MSBuildProjectName);label=$(MSBuildProjectName);versionCode=1;versionName=1.0.0;persistent=False;restoreAnyVersion=False;installLocation=auto;largeHeap=False;theme=TitleBar;hardwareAccelerated=true;apiKey= 199 | 200 | 201 | CFBundleName=$(MSBuildProjectName);CFBundleDisplayName=$(MSBuildProjectName);CFBundleIdentifier=$(MSBuildProjectName);CFBundleVersion=1.0.0;CFBundleShortVersionString=1.0.0;CFBundlePackageType=APPL;CFBundleSignature=????;CFBundleAllowMixedLocalizations=YES;CFBundleExecutable=$(MSBuildProjectName);NSHighResolutionCapable=true;LSApplicationCategoryType=public.app-category.utilities;NSLocationUsageDescription=The reason for accessing the location information of the user;NSContactsUsageDescription=The reason for accessing the contacts;NSCalendarsUsageDescription=The reason for accessing the calendar data;NSRemindersUsageDescription=The reason for accessing the reminders;NSCameraUsageDescription=The reason for accessing the camera;NSMicrophoneUsageDescription=The reason for accessing the microphone;NSMotionUsageDescription=The reason for accessing the accelerometer;NSDesktopFolderUsageDescription=The reason for accessing the Desktop folder;NSDocumentsFolderUsageDescription=The reason for accessing the Documents folder;NSDownloadsFolderUsageDescription=The reason for accessing the Downloads folder;NSNetworkVolumesUsageDescription=The reason for accessing files on a network volume;NSRemovableVolumesUsageDescription=The reason for accessing files on a removable volume;NSSpeechRecognitionUsageDescription=The reason for requesting to send user data to Apple's speech recognition servers;ITSAppUsesNonExemptEncryption=false;NSBluetoothAlwaysUsageDescription=The reason for accessing the Bluetooth interface 202 | 203 | 204 | Cfg_1 205 | true 206 | true 207 | CFBundleName=$(MSBuildProjectName);CFBundleDisplayName=$(MSBuildProjectName);CFBundleIdentifier=$(MSBuildProjectName);CFBundleVersion=1.0.0;CFBundleShortVersionString=1.0.0;CFBundlePackageType=APPL;CFBundleSignature=????;CFBundleAllowMixedLocalizations=YES;CFBundleExecutable=$(MSBuildProjectName);NSHighResolutionCapable=true;LSApplicationCategoryType=public.app-category.utilities;NSLocationUsageDescription=The reason for accessing the location information of the user;NSContactsUsageDescription=The reason for accessing the contacts;NSCalendarsUsageDescription=The reason for accessing the calendar data;NSRemindersUsageDescription=The reason for accessing the reminders;NSCameraUsageDescription=The reason for accessing the camera;NSMicrophoneUsageDescription=The reason for accessing the microphone;NSMotionUsageDescription=The reason for accessing the accelerometer;NSDesktopFolderUsageDescription=The reason for accessing the Desktop folder;NSDocumentsFolderUsageDescription=The reason for accessing the Documents folder;NSDownloadsFolderUsageDescription=The reason for accessing the Downloads folder;NSNetworkVolumesUsageDescription=The reason for accessing files on a network volume;NSRemovableVolumesUsageDescription=The reason for accessing files on a removable volume;NSSpeechRecognitionUsageDescription=The reason for requesting to send user data to Apple's speech recognition servers;ITSAppUsesNonExemptEncryption=false;NSBluetoothAlwaysUsageDescription=The reason for accessing the Bluetooth interface 208 | 209 | 210 | false 211 | true 212 | 1033 213 | 214 | 215 | true 216 | 1033 217 | 218 | 219 | 0 220 | RELEASE;$(DCC_Define) 221 | false 222 | 0 223 | 224 | 225 | 1 226 | package=com.embarcadero.$(MSBuildProjectName);label=$(MSBuildProjectName);versionCode=1;versionName=1.0.0;persistent=False;restoreAnyVersion=False;installLocation=auto;largeHeap=False;theme=TitleBar;hardwareAccelerated=true;apiKey= 227 | 228 | 229 | 1 230 | package=com.embarcadero.$(MSBuildProjectName);label=$(MSBuildProjectName);versionCode=1;versionName=1.0.0;persistent=False;restoreAnyVersion=False;installLocation=auto;largeHeap=False;theme=TitleBar;hardwareAccelerated=true;apiKey= 231 | 232 | 233 | CFBundleName=$(MSBuildProjectName);CFBundleDisplayName=$(MSBuildProjectName);CFBundleIdentifier=$(MSBuildProjectName);CFBundleVersion=1.0.0;CFBundleShortVersionString=1.0.0;CFBundlePackageType=APPL;CFBundleSignature=????;CFBundleAllowMixedLocalizations=YES;CFBundleExecutable=$(MSBuildProjectName);NSHighResolutionCapable=true;LSApplicationCategoryType=public.app-category.utilities;NSLocationUsageDescription=The reason for accessing the location information of the user;NSContactsUsageDescription=The reason for accessing the contacts;NSCalendarsUsageDescription=The reason for accessing the calendar data;NSRemindersUsageDescription=The reason for accessing the reminders;NSCameraUsageDescription=The reason for accessing the camera;NSMicrophoneUsageDescription=The reason for accessing the microphone;NSMotionUsageDescription=The reason for accessing the accelerometer;NSDesktopFolderUsageDescription=The reason for accessing the Desktop folder;NSDocumentsFolderUsageDescription=The reason for accessing the Documents folder;NSDownloadsFolderUsageDescription=The reason for accessing the Downloads folder;NSNetworkVolumesUsageDescription=The reason for accessing files on a network volume;NSRemovableVolumesUsageDescription=The reason for accessing files on a removable volume;NSSpeechRecognitionUsageDescription=The reason for requesting to send user data to Apple's speech recognition servers;ITSAppUsesNonExemptEncryption=false;NSBluetoothAlwaysUsageDescription=The reason for accessing the Bluetooth interface 234 | 235 | 236 | Cfg_2 237 | true 238 | true 239 | CFBundleName=$(MSBuildProjectName);CFBundleDisplayName=$(MSBuildProjectName);CFBundleIdentifier=$(MSBuildProjectName);CFBundleVersion=1.0.0;CFBundleShortVersionString=1.0.0;CFBundlePackageType=APPL;CFBundleSignature=????;CFBundleAllowMixedLocalizations=YES;CFBundleExecutable=$(MSBuildProjectName);NSHighResolutionCapable=true;LSApplicationCategoryType=public.app-category.utilities;NSLocationUsageDescription=The reason for accessing the location information of the user;NSContactsUsageDescription=The reason for accessing the contacts;NSCalendarsUsageDescription=The reason for accessing the calendar data;NSRemindersUsageDescription=The reason for accessing the reminders;NSCameraUsageDescription=The reason for accessing the camera;NSMicrophoneUsageDescription=The reason for accessing the microphone;NSMotionUsageDescription=The reason for accessing the accelerometer;NSDesktopFolderUsageDescription=The reason for accessing the Desktop folder;NSDocumentsFolderUsageDescription=The reason for accessing the Documents folder;NSDownloadsFolderUsageDescription=The reason for accessing the Downloads folder;NSNetworkVolumesUsageDescription=The reason for accessing files on a network volume;NSRemovableVolumesUsageDescription=The reason for accessing files on a removable volume;NSSpeechRecognitionUsageDescription=The reason for requesting to send user data to Apple's speech recognition servers;ITSAppUsesNonExemptEncryption=false;NSBluetoothAlwaysUsageDescription=The reason for accessing the Bluetooth interface 240 | 241 | 242 | true 243 | 1033 244 | 245 | 246 | true 247 | 1033 248 | 249 | 250 | 251 | MainSource 252 | 253 | 254 | 255 | 256 | 257 | Base 258 | 259 | 260 | Cfg_1 261 | Base 262 | 263 | 264 | Cfg_2 265 | Base 266 | 267 | 268 | 269 | Delphi.Personality.12 270 | Package 271 | 272 | 273 | 274 | P4DBoto3.dpk 275 | 276 | 277 | 278 | 279 | True 280 | True 281 | True 282 | True 283 | True 284 | True 285 | True 286 | False 287 | False 288 | False 289 | 290 | 291 | 12 292 | 293 | 294 | 295 | 296 | 297 | -------------------------------------------------------------------------------- /src/Boto3/P4DBoto3.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/src/Boto3/P4DBoto3.res -------------------------------------------------------------------------------- /src/Boto3/README.md: -------------------------------------------------------------------------------- 1 | # Boto3 2 | 3 | Interface to Amazon Web Services allowing remote management of AWS assets 4 | 5 | Note : This package will require AWS credentials (pref IAM) in order to be of any use 6 | 7 | https://boto3.amazonaws.com/v1/documentation/api/latest/index.html -------------------------------------------------------------------------------- /src/Boto3/dclP4DBoto3.dpk: -------------------------------------------------------------------------------- 1 | package dclP4DBoto3; 2 | 3 | {$R *.res} 4 | {$R *.dres} 5 | {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users} 6 | {$ALIGN 8} 7 | {$ASSERTIONS ON} 8 | {$BOOLEVAL OFF} 9 | {$DEBUGINFO OFF} 10 | {$EXTENDEDSYNTAX ON} 11 | {$IMPORTEDDATA ON} 12 | {$IOCHECKS ON} 13 | {$LOCALSYMBOLS OFF} 14 | {$LONGSTRINGS ON} 15 | {$OPENSTRINGS ON} 16 | {$OPTIMIZATION ON} 17 | {$OVERFLOWCHECKS OFF} 18 | {$RANGECHECKS OFF} 19 | {$REFERENCEINFO OFF} 20 | {$SAFEDIVIDE OFF} 21 | {$STACKFRAMES OFF} 22 | {$TYPEDADDRESS OFF} 23 | {$VARSTRINGCHECKS ON} 24 | {$WRITEABLECONST OFF} 25 | {$MINENUMSIZE 1} 26 | {$IMAGEBASE $400000} 27 | {$DEFINE RELEASE} 28 | {$ENDIF IMPLICITBUILDING} 29 | {$DESCRIPTION 'P4D Data Sciences - Boto3'} 30 | {$LIBSUFFIX AUTO} 31 | {$DESIGNONLY} 32 | {$IMPLICITBUILD ON} 33 | 34 | requires 35 | rtl, 36 | p4dBoto3; 37 | 38 | contains 39 | Boto3Reg in 'Boto3Reg.pas'; 40 | 41 | end. 42 | -------------------------------------------------------------------------------- /src/Boto3/dclP4DBoto3.dproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | True 4 | Package 5 | Release 6 | None 7 | dclP4DBoto3.dpk 8 | Win32 9 | {7561EB89-8B08-4B09-A44E-ADE8EE7E4207} 10 | dclP4DBoto3 11 | 20.1 12 | 1 13 | 14 | 15 | true 16 | 17 | 18 | true 19 | Base 20 | true 21 | 22 | 23 | true 24 | Base 25 | true 26 | 27 | 28 | true 29 | Cfg_1 30 | true 31 | true 32 | 33 | 34 | true 35 | Base 36 | true 37 | 38 | 39 | true 40 | Cfg_2 41 | true 42 | true 43 | 44 | 45 | dclP4DBoto3 46 | ..\..\lib\$(Platform)\$(Config) 47 | P4D Data Sciences - Boto3 48 | 00400000 49 | System;Xml;Data;Datasnap;Web;Soap;$(DCC_Namespace) 50 | true 51 | $(Auto) 52 | true 53 | true 54 | CompanyName=;FileDescription=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=;ProductVersion=1.0.0.0;Comments=;CFBundleName= 55 | 1046 56 | 57 | 58 | Debug 59 | Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;Bde;$(DCC_Namespace) 60 | rtl;P4DBoto3;$(DCC_UsePackage) 61 | true 62 | CompanyName=;FileDescription=$(MSBuildProjectName);FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=$(MSBuildProjectName);ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName) 63 | 1033 64 | 65 | 66 | 0 67 | RELEASE;$(DCC_Define) 68 | false 69 | 0 70 | 71 | 72 | P4D Data Sciences - Boto3 73 | true 74 | CompanyName=;FileDescription=$(MSBuildProjectName);FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=$(MSBuildProjectName);ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName) 75 | 1033 76 | 77 | 78 | DEBUG;$(DCC_Define) 79 | true 80 | true 81 | false 82 | true 83 | 84 | 85 | true 86 | CompanyName=;FileDescription=$(MSBuildProjectName);FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=$(MSBuildProjectName);ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName) 87 | 1033 88 | 89 | 90 | 91 | MainSource 92 | 93 | 94 | 95 | 96 | 97 | BITMAP 98 | TBoto3128 99 | 100 | 101 | BITMAP 102 | TBoto316 103 | 104 | 105 | BITMAP 106 | TBoto3 107 | 108 | 109 | BITMAP 110 | TBoto332 111 | 112 | 113 | RCDATA 114 | TBoto3_PNG 115 | 116 | 117 | RCDATA 118 | TBoto3128_PNG 119 | 120 | 121 | RCDATA 122 | TBoto316_PNG 123 | 124 | 125 | RCDATA 126 | TBoto332_PNG 127 | 128 | 129 | Base 130 | 131 | 132 | Cfg_1 133 | Base 134 | 135 | 136 | Cfg_2 137 | Base 138 | 139 | 140 | 141 | Delphi.Personality.12 142 | Package 143 | 144 | 145 | 146 | dclP4DBoto3.dpk 147 | 148 | 149 | 150 | 151 | False 152 | False 153 | False 154 | False 155 | False 156 | True 157 | False 158 | False 159 | False 160 | False 161 | 162 | 163 | 12 164 | 165 | 166 | 167 | 168 | 169 | -------------------------------------------------------------------------------- /src/Boto3/dclP4DBoto3.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/src/Boto3/dclP4DBoto3.res -------------------------------------------------------------------------------- /src/H5Py/H5Py.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/src/H5Py/H5Py.pas -------------------------------------------------------------------------------- /src/H5Py/H5PyReg.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/src/H5Py/H5PyReg.pas -------------------------------------------------------------------------------- /src/H5Py/P4DH5Py.dpk: -------------------------------------------------------------------------------- 1 | package P4DH5Py; 2 | 3 | {$R *.res} 4 | {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users} 5 | {$ALIGN 8} 6 | {$ASSERTIONS ON} 7 | {$BOOLEVAL OFF} 8 | {$DEBUGINFO OFF} 9 | {$EXTENDEDSYNTAX ON} 10 | {$IMPORTEDDATA ON} 11 | {$IOCHECKS ON} 12 | {$LOCALSYMBOLS OFF} 13 | {$LONGSTRINGS ON} 14 | {$OPENSTRINGS ON} 15 | {$OPTIMIZATION ON} 16 | {$OVERFLOWCHECKS OFF} 17 | {$RANGECHECKS OFF} 18 | {$REFERENCEINFO OFF} 19 | {$SAFEDIVIDE OFF} 20 | {$STACKFRAMES OFF} 21 | {$TYPEDADDRESS OFF} 22 | {$VARSTRINGCHECKS ON} 23 | {$WRITEABLECONST OFF} 24 | {$MINENUMSIZE 1} 25 | {$IMAGEBASE $400000} 26 | {$DEFINE RELEASE} 27 | {$ENDIF IMPLICITBUILDING} 28 | {$DESCRIPTION 'P4D Data Sciences - H5Py'} 29 | {$LIBSUFFIX AUTO} 30 | {$RUNONLY} 31 | {$IMPLICITBUILD ON} 32 | 33 | requires 34 | rtl, 35 | p4dpypackage; 36 | 37 | contains 38 | H5Py in 'H5Py.pas'; 39 | 40 | end. 41 | -------------------------------------------------------------------------------- /src/H5Py/P4DH5Py.dproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | True 4 | Package 5 | Release 6 | None 7 | P4DH5Py.dpk 8 | Win32 9 | {F2AE9D13-9C35-45E4-A6B3-CC490B741C05} 10 | P4DH5Py 11 | 20.1 12 | 168083 13 | 14 | 15 | true 16 | Base 17 | true 18 | /usr/X11/bin/xterm -e "%debuggee%" 19 | Debug 20 | CFBundleName=$(MSBuildProjectName);CFBundleDisplayName=$(MSBuildProjectName);CFBundleIdentifier=$(MSBuildProjectName);CFBundleVersion=1.0.0;CFBundleShortVersionString=1.0.0;CFBundlePackageType=APPL;CFBundleSignature=????;CFBundleAllowMixedLocalizations=YES;CFBundleExecutable=$(MSBuildProjectName);NSHighResolutionCapable=true;LSApplicationCategoryType=public.app-category.utilities;NSLocationUsageDescription=The reason for accessing the location information of the user;NSContactsUsageDescription=The reason for accessing the contacts;NSCalendarsUsageDescription=The reason for accessing the calendar data;NSRemindersUsageDescription=The reason for accessing the reminders;NSCameraUsageDescription=The reason for accessing the camera;NSMicrophoneUsageDescription=The reason for accessing the microphone;NSMotionUsageDescription=The reason for accessing the accelerometer;NSDesktopFolderUsageDescription=The reason for accessing the Desktop folder;NSDocumentsFolderUsageDescription=The reason for accessing the Documents folder;NSDownloadsFolderUsageDescription=The reason for accessing the Downloads folder;NSNetworkVolumesUsageDescription=The reason for accessing files on a network volume;NSRemovableVolumesUsageDescription=The reason for accessing files on a removable volume;NSSpeechRecognitionUsageDescription=The reason for requesting to send user data to Apple's speech recognition servers;ITSAppUsesNonExemptEncryption=false;NSBluetoothAlwaysUsageDescription=The reason for accessing the Bluetooth interface 21 | 22 | 23 | true 24 | 25 | 26 | true 27 | Base 28 | true 29 | 30 | 31 | true 32 | Base 33 | true 34 | 35 | 36 | true 37 | Base 38 | true 39 | 40 | 41 | true 42 | Base 43 | true 44 | 45 | 46 | true 47 | Base 48 | true 49 | 50 | 51 | true 52 | Base 53 | true 54 | 55 | 56 | true 57 | Base 58 | true 59 | 60 | 61 | true 62 | Cfg_1 63 | true 64 | true 65 | 66 | 67 | true 68 | Cfg_1 69 | true 70 | true 71 | 72 | 73 | true 74 | Cfg_1 75 | true 76 | true 77 | 78 | 79 | true 80 | Cfg_1 81 | true 82 | true 83 | 84 | 85 | true 86 | Cfg_1 87 | true 88 | true 89 | 90 | 91 | true 92 | Cfg_1 93 | true 94 | true 95 | 96 | 97 | true 98 | Base 99 | true 100 | 101 | 102 | true 103 | Cfg_2 104 | true 105 | true 106 | 107 | 108 | true 109 | Cfg_2 110 | true 111 | true 112 | 113 | 114 | true 115 | Cfg_2 116 | true 117 | true 118 | 119 | 120 | true 121 | Cfg_2 122 | true 123 | true 124 | 125 | 126 | true 127 | Cfg_2 128 | true 129 | true 130 | 131 | 132 | true 133 | Cfg_2 134 | true 135 | true 136 | 137 | 138 | P4DH5Py 139 | All 140 | ..\..\lib\$(Platform)\$(Config) 141 | P4D Data Sciences - H5Py 142 | .\$(Platform)\$(Config) 143 | System;Xml;Data;Datasnap;Web;Soap;$(DCC_Namespace) 144 | $(Auto) 145 | true 146 | true 147 | true 148 | CompanyName=;FileDescription=$(MSBuildProjectName);FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProgramID=com.embarcadero.$(MSBuildProjectName);ProductName=$(MSBuildProjectName);ProductVersion=1.0.0.0;Comments= 149 | 1046 150 | 151 | 152 | Debug 153 | None 154 | annotation-1.2.0.dex.jar;asynclayoutinflater-1.0.0.dex.jar;billing-4.0.0.dex.jar;browser-1.0.0.dex.jar;cloud-messaging.dex.jar;collection-1.0.0.dex.jar;coordinatorlayout-1.0.0.dex.jar;core-1.5.0-rc02.dex.jar;core-common-2.0.1.dex.jar;core-runtime-2.0.1.dex.jar;cursoradapter-1.0.0.dex.jar;customview-1.0.0.dex.jar;documentfile-1.0.0.dex.jar;drawerlayout-1.0.0.dex.jar;firebase-annotations-16.0.0.dex.jar;firebase-common-20.0.0.dex.jar;firebase-components-17.0.0.dex.jar;firebase-datatransport-18.0.0.dex.jar;firebase-encoders-17.0.0.dex.jar;firebase-encoders-json-18.0.0.dex.jar;firebase-iid-interop-17.1.0.dex.jar;firebase-installations-17.0.0.dex.jar;firebase-installations-interop-17.0.0.dex.jar;firebase-measurement-connector-19.0.0.dex.jar;firebase-messaging-22.0.0.dex.jar;fmx.dex.jar;fragment-1.0.0.dex.jar;google-play-licensing.dex.jar;interpolator-1.0.0.dex.jar;javax.inject-1.dex.jar;legacy-support-core-ui-1.0.0.dex.jar;legacy-support-core-utils-1.0.0.dex.jar;lifecycle-common-2.0.0.dex.jar;lifecycle-livedata-2.0.0.dex.jar;lifecycle-livedata-core-2.0.0.dex.jar;lifecycle-runtime-2.0.0.dex.jar;lifecycle-service-2.0.0.dex.jar;lifecycle-viewmodel-2.0.0.dex.jar;listenablefuture-1.0.dex.jar;loader-1.0.0.dex.jar;localbroadcastmanager-1.0.0.dex.jar;play-services-ads-20.1.0.dex.jar;play-services-ads-base-20.1.0.dex.jar;play-services-ads-identifier-17.0.0.dex.jar;play-services-ads-lite-20.1.0.dex.jar;play-services-base-17.5.0.dex.jar;play-services-basement-17.6.0.dex.jar;play-services-cloud-messaging-16.0.0.dex.jar;play-services-drive-17.0.0.dex.jar;play-services-games-21.0.0.dex.jar;play-services-location-18.0.0.dex.jar;play-services-maps-17.0.1.dex.jar;play-services-measurement-base-18.0.0.dex.jar;play-services-measurement-sdk-api-18.0.0.dex.jar;play-services-places-placereport-17.0.0.dex.jar;play-services-stats-17.0.0.dex.jar;play-services-tasks-17.2.0.dex.jar;print-1.0.0.dex.jar;room-common-2.1.0.dex.jar;room-runtime-2.1.0.dex.jar;slidingpanelayout-1.0.0.dex.jar;sqlite-2.0.1.dex.jar;sqlite-framework-2.0.1.dex.jar;swiperefreshlayout-1.0.0.dex.jar;transport-api-3.0.0.dex.jar;transport-backend-cct-3.0.0.dex.jar;transport-runtime-3.0.0.dex.jar;user-messaging-platform-1.0.0.dex.jar;versionedparcelable-1.1.1.dex.jar;viewpager-1.0.0.dex.jar;work-runtime-2.1.0.dex.jar 155 | 1 156 | package=com.embarcadero.$(MSBuildProjectName);label=$(MSBuildProjectName);versionCode=1;versionName=1.0.0;persistent=False;restoreAnyVersion=False;installLocation=auto;largeHeap=False;theme=TitleBar;hardwareAccelerated=true;apiKey= 157 | 158 | 159 | Debug 160 | None 161 | annotation-1.2.0.dex.jar;asynclayoutinflater-1.0.0.dex.jar;billing-4.0.0.dex.jar;browser-1.0.0.dex.jar;cloud-messaging.dex.jar;collection-1.0.0.dex.jar;coordinatorlayout-1.0.0.dex.jar;core-1.5.0-rc02.dex.jar;core-common-2.0.1.dex.jar;core-runtime-2.0.1.dex.jar;cursoradapter-1.0.0.dex.jar;customview-1.0.0.dex.jar;documentfile-1.0.0.dex.jar;drawerlayout-1.0.0.dex.jar;firebase-annotations-16.0.0.dex.jar;firebase-common-20.0.0.dex.jar;firebase-components-17.0.0.dex.jar;firebase-datatransport-18.0.0.dex.jar;firebase-encoders-17.0.0.dex.jar;firebase-encoders-json-18.0.0.dex.jar;firebase-iid-interop-17.1.0.dex.jar;firebase-installations-17.0.0.dex.jar;firebase-installations-interop-17.0.0.dex.jar;firebase-measurement-connector-19.0.0.dex.jar;firebase-messaging-22.0.0.dex.jar;fmx.dex.jar;fragment-1.0.0.dex.jar;google-play-licensing.dex.jar;interpolator-1.0.0.dex.jar;javax.inject-1.dex.jar;legacy-support-core-ui-1.0.0.dex.jar;legacy-support-core-utils-1.0.0.dex.jar;lifecycle-common-2.0.0.dex.jar;lifecycle-livedata-2.0.0.dex.jar;lifecycle-livedata-core-2.0.0.dex.jar;lifecycle-runtime-2.0.0.dex.jar;lifecycle-service-2.0.0.dex.jar;lifecycle-viewmodel-2.0.0.dex.jar;listenablefuture-1.0.dex.jar;loader-1.0.0.dex.jar;localbroadcastmanager-1.0.0.dex.jar;play-services-ads-20.1.0.dex.jar;play-services-ads-base-20.1.0.dex.jar;play-services-ads-identifier-17.0.0.dex.jar;play-services-ads-lite-20.1.0.dex.jar;play-services-base-17.5.0.dex.jar;play-services-basement-17.6.0.dex.jar;play-services-cloud-messaging-16.0.0.dex.jar;play-services-drive-17.0.0.dex.jar;play-services-games-21.0.0.dex.jar;play-services-location-18.0.0.dex.jar;play-services-maps-17.0.1.dex.jar;play-services-measurement-base-18.0.0.dex.jar;play-services-measurement-sdk-api-18.0.0.dex.jar;play-services-places-placereport-17.0.0.dex.jar;play-services-stats-17.0.0.dex.jar;play-services-tasks-17.2.0.dex.jar;print-1.0.0.dex.jar;room-common-2.1.0.dex.jar;room-runtime-2.1.0.dex.jar;slidingpanelayout-1.0.0.dex.jar;sqlite-2.0.1.dex.jar;sqlite-framework-2.0.1.dex.jar;swiperefreshlayout-1.0.0.dex.jar;transport-api-3.0.0.dex.jar;transport-backend-cct-3.0.0.dex.jar;transport-runtime-3.0.0.dex.jar;user-messaging-platform-1.0.0.dex.jar;versionedparcelable-1.1.1.dex.jar;viewpager-1.0.0.dex.jar;work-runtime-2.1.0.dex.jar 162 | 1 163 | package=com.embarcadero.$(MSBuildProjectName);label=$(MSBuildProjectName);versionCode=1;versionName=1.0.0;persistent=False;restoreAnyVersion=False;installLocation=auto;largeHeap=False;theme=TitleBar;hardwareAccelerated=true;apiKey= 164 | 165 | 166 | Debug 167 | /usr/X11/bin/xterm -e "%debuggee%" 168 | CFBundleName=$(MSBuildProjectName);CFBundleDisplayName=$(MSBuildProjectName);CFBundleIdentifier=$(MSBuildProjectName);CFBundleVersion=1.0.0;CFBundleShortVersionString=1.0.0;CFBundlePackageType=APPL;CFBundleSignature=????;CFBundleAllowMixedLocalizations=YES;CFBundleExecutable=$(MSBuildProjectName);NSHighResolutionCapable=true;LSApplicationCategoryType=public.app-category.utilities;NSLocationUsageDescription=The reason for accessing the location information of the user;NSContactsUsageDescription=The reason for accessing the contacts;NSCalendarsUsageDescription=The reason for accessing the calendar data;NSRemindersUsageDescription=The reason for accessing the reminders;NSCameraUsageDescription=The reason for accessing the camera;NSMicrophoneUsageDescription=The reason for accessing the microphone;NSMotionUsageDescription=The reason for accessing the accelerometer;NSDesktopFolderUsageDescription=The reason for accessing the Desktop folder;NSDocumentsFolderUsageDescription=The reason for accessing the Documents folder;NSDownloadsFolderUsageDescription=The reason for accessing the Downloads folder;NSNetworkVolumesUsageDescription=The reason for accessing files on a network volume;NSRemovableVolumesUsageDescription=The reason for accessing files on a removable volume;NSSpeechRecognitionUsageDescription=The reason for requesting to send user data to Apple's speech recognition servers;ITSAppUsesNonExemptEncryption=false;NSBluetoothAlwaysUsageDescription=The reason for accessing the Bluetooth interface 169 | 170 | 171 | Debug 172 | Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;Bde;$(DCC_Namespace) 173 | true 174 | 1033 175 | 176 | 177 | Debug 178 | Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;$(DCC_Namespace) 179 | true 180 | 1033 181 | 182 | 183 | true 184 | true 185 | DEBUG;$(DCC_Define) 186 | true 187 | true 188 | false 189 | true 190 | true 191 | 192 | 193 | 1 194 | package=com.embarcadero.$(MSBuildProjectName);label=$(MSBuildProjectName);versionCode=1;versionName=1.0.0;persistent=False;restoreAnyVersion=False;installLocation=auto;largeHeap=False;theme=TitleBar;hardwareAccelerated=true;apiKey= 195 | 196 | 197 | 1 198 | package=com.embarcadero.$(MSBuildProjectName);label=$(MSBuildProjectName);versionCode=1;versionName=1.0.0;persistent=False;restoreAnyVersion=False;installLocation=auto;largeHeap=False;theme=TitleBar;hardwareAccelerated=true;apiKey= 199 | 200 | 201 | CFBundleName=$(MSBuildProjectName);CFBundleDisplayName=$(MSBuildProjectName);CFBundleIdentifier=$(MSBuildProjectName);CFBundleVersion=1.0.0;CFBundleShortVersionString=1.0.0;CFBundlePackageType=APPL;CFBundleSignature=????;CFBundleAllowMixedLocalizations=YES;CFBundleExecutable=$(MSBuildProjectName);NSHighResolutionCapable=true;LSApplicationCategoryType=public.app-category.utilities;NSLocationUsageDescription=The reason for accessing the location information of the user;NSContactsUsageDescription=The reason for accessing the contacts;NSCalendarsUsageDescription=The reason for accessing the calendar data;NSRemindersUsageDescription=The reason for accessing the reminders;NSCameraUsageDescription=The reason for accessing the camera;NSMicrophoneUsageDescription=The reason for accessing the microphone;NSMotionUsageDescription=The reason for accessing the accelerometer;NSDesktopFolderUsageDescription=The reason for accessing the Desktop folder;NSDocumentsFolderUsageDescription=The reason for accessing the Documents folder;NSDownloadsFolderUsageDescription=The reason for accessing the Downloads folder;NSNetworkVolumesUsageDescription=The reason for accessing files on a network volume;NSRemovableVolumesUsageDescription=The reason for accessing files on a removable volume;NSSpeechRecognitionUsageDescription=The reason for requesting to send user data to Apple's speech recognition servers;ITSAppUsesNonExemptEncryption=false;NSBluetoothAlwaysUsageDescription=The reason for accessing the Bluetooth interface 202 | 203 | 204 | Cfg_1 205 | true 206 | true 207 | CFBundleName=$(MSBuildProjectName);CFBundleDisplayName=$(MSBuildProjectName);CFBundleIdentifier=$(MSBuildProjectName);CFBundleVersion=1.0.0;CFBundleShortVersionString=1.0.0;CFBundlePackageType=APPL;CFBundleSignature=????;CFBundleAllowMixedLocalizations=YES;CFBundleExecutable=$(MSBuildProjectName);NSHighResolutionCapable=true;LSApplicationCategoryType=public.app-category.utilities;NSLocationUsageDescription=The reason for accessing the location information of the user;NSContactsUsageDescription=The reason for accessing the contacts;NSCalendarsUsageDescription=The reason for accessing the calendar data;NSRemindersUsageDescription=The reason for accessing the reminders;NSCameraUsageDescription=The reason for accessing the camera;NSMicrophoneUsageDescription=The reason for accessing the microphone;NSMotionUsageDescription=The reason for accessing the accelerometer;NSDesktopFolderUsageDescription=The reason for accessing the Desktop folder;NSDocumentsFolderUsageDescription=The reason for accessing the Documents folder;NSDownloadsFolderUsageDescription=The reason for accessing the Downloads folder;NSNetworkVolumesUsageDescription=The reason for accessing files on a network volume;NSRemovableVolumesUsageDescription=The reason for accessing files on a removable volume;NSSpeechRecognitionUsageDescription=The reason for requesting to send user data to Apple's speech recognition servers;ITSAppUsesNonExemptEncryption=false;NSBluetoothAlwaysUsageDescription=The reason for accessing the Bluetooth interface 208 | 209 | 210 | false 211 | true 212 | 1033 213 | 214 | 215 | true 216 | 1033 217 | 218 | 219 | 0 220 | RELEASE;$(DCC_Define) 221 | false 222 | 0 223 | 224 | 225 | 1 226 | package=com.embarcadero.$(MSBuildProjectName);label=$(MSBuildProjectName);versionCode=1;versionName=1.0.0;persistent=False;restoreAnyVersion=False;installLocation=auto;largeHeap=False;theme=TitleBar;hardwareAccelerated=true;apiKey= 227 | 228 | 229 | 1 230 | package=com.embarcadero.$(MSBuildProjectName);label=$(MSBuildProjectName);versionCode=1;versionName=1.0.0;persistent=False;restoreAnyVersion=False;installLocation=auto;largeHeap=False;theme=TitleBar;hardwareAccelerated=true;apiKey= 231 | 232 | 233 | CFBundleName=$(MSBuildProjectName);CFBundleDisplayName=$(MSBuildProjectName);CFBundleIdentifier=$(MSBuildProjectName);CFBundleVersion=1.0.0;CFBundleShortVersionString=1.0.0;CFBundlePackageType=APPL;CFBundleSignature=????;CFBundleAllowMixedLocalizations=YES;CFBundleExecutable=$(MSBuildProjectName);NSHighResolutionCapable=true;LSApplicationCategoryType=public.app-category.utilities;NSLocationUsageDescription=The reason for accessing the location information of the user;NSContactsUsageDescription=The reason for accessing the contacts;NSCalendarsUsageDescription=The reason for accessing the calendar data;NSRemindersUsageDescription=The reason for accessing the reminders;NSCameraUsageDescription=The reason for accessing the camera;NSMicrophoneUsageDescription=The reason for accessing the microphone;NSMotionUsageDescription=The reason for accessing the accelerometer;NSDesktopFolderUsageDescription=The reason for accessing the Desktop folder;NSDocumentsFolderUsageDescription=The reason for accessing the Documents folder;NSDownloadsFolderUsageDescription=The reason for accessing the Downloads folder;NSNetworkVolumesUsageDescription=The reason for accessing files on a network volume;NSRemovableVolumesUsageDescription=The reason for accessing files on a removable volume;NSSpeechRecognitionUsageDescription=The reason for requesting to send user data to Apple's speech recognition servers;ITSAppUsesNonExemptEncryption=false;NSBluetoothAlwaysUsageDescription=The reason for accessing the Bluetooth interface 234 | 235 | 236 | Cfg_2 237 | true 238 | true 239 | CFBundleName=$(MSBuildProjectName);CFBundleDisplayName=$(MSBuildProjectName);CFBundleIdentifier=$(MSBuildProjectName);CFBundleVersion=1.0.0;CFBundleShortVersionString=1.0.0;CFBundlePackageType=APPL;CFBundleSignature=????;CFBundleAllowMixedLocalizations=YES;CFBundleExecutable=$(MSBuildProjectName);NSHighResolutionCapable=true;LSApplicationCategoryType=public.app-category.utilities;NSLocationUsageDescription=The reason for accessing the location information of the user;NSContactsUsageDescription=The reason for accessing the contacts;NSCalendarsUsageDescription=The reason for accessing the calendar data;NSRemindersUsageDescription=The reason for accessing the reminders;NSCameraUsageDescription=The reason for accessing the camera;NSMicrophoneUsageDescription=The reason for accessing the microphone;NSMotionUsageDescription=The reason for accessing the accelerometer;NSDesktopFolderUsageDescription=The reason for accessing the Desktop folder;NSDocumentsFolderUsageDescription=The reason for accessing the Documents folder;NSDownloadsFolderUsageDescription=The reason for accessing the Downloads folder;NSNetworkVolumesUsageDescription=The reason for accessing files on a network volume;NSRemovableVolumesUsageDescription=The reason for accessing files on a removable volume;NSSpeechRecognitionUsageDescription=The reason for requesting to send user data to Apple's speech recognition servers;ITSAppUsesNonExemptEncryption=false;NSBluetoothAlwaysUsageDescription=The reason for accessing the Bluetooth interface 240 | 241 | 242 | true 243 | 1033 244 | 245 | 246 | true 247 | 1033 248 | 249 | 250 | 251 | MainSource 252 | 253 | 254 | 255 | 256 | 257 | Base 258 | 259 | 260 | Cfg_1 261 | Base 262 | 263 | 264 | Cfg_2 265 | Base 266 | 267 | 268 | 269 | Delphi.Personality.12 270 | Package 271 | 272 | 273 | 274 | P4DH5Py.dpk 275 | 276 | 277 | 278 | 279 | True 280 | True 281 | True 282 | True 283 | True 284 | True 285 | True 286 | False 287 | False 288 | False 289 | 290 | 291 | 12 292 | 293 | 294 | 295 | 296 | 297 | -------------------------------------------------------------------------------- /src/H5Py/P4DH5Py.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/src/H5Py/P4DH5Py.res -------------------------------------------------------------------------------- /src/H5Py/dclP4DH5Py.dpk: -------------------------------------------------------------------------------- 1 | package dclP4DH5Py; 2 | 3 | {$R *.res} 4 | {$R *.dres} 5 | {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users} 6 | {$ALIGN 8} 7 | {$ASSERTIONS ON} 8 | {$BOOLEVAL OFF} 9 | {$DEBUGINFO OFF} 10 | {$EXTENDEDSYNTAX ON} 11 | {$IMPORTEDDATA ON} 12 | {$IOCHECKS ON} 13 | {$LOCALSYMBOLS OFF} 14 | {$LONGSTRINGS ON} 15 | {$OPENSTRINGS ON} 16 | {$OPTIMIZATION ON} 17 | {$OVERFLOWCHECKS OFF} 18 | {$RANGECHECKS OFF} 19 | {$REFERENCEINFO OFF} 20 | {$SAFEDIVIDE OFF} 21 | {$STACKFRAMES OFF} 22 | {$TYPEDADDRESS OFF} 23 | {$VARSTRINGCHECKS ON} 24 | {$WRITEABLECONST OFF} 25 | {$MINENUMSIZE 1} 26 | {$IMAGEBASE $400000} 27 | {$DEFINE RELEASE} 28 | {$ENDIF IMPLICITBUILDING} 29 | {$DESCRIPTION 'P4D Data Sciences - H5Py'} 30 | {$LIBSUFFIX AUTO} 31 | {$DESIGNONLY} 32 | {$IMPLICITBUILD ON} 33 | 34 | requires 35 | rtl, 36 | p4dH5Py; 37 | 38 | contains 39 | H5PyReg in 'H5PyReg.pas'; 40 | 41 | end. 42 | -------------------------------------------------------------------------------- /src/H5Py/dclP4DH5Py.dproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | True 4 | Package 5 | Release 6 | None 7 | dclP4DH5Py.dpk 8 | Win32 9 | {805DA427-3A70-41CE-9765-882731572A07} 10 | dclP4DH5Py 11 | 20.1 12 | 1 13 | 14 | 15 | true 16 | 17 | 18 | true 19 | Base 20 | true 21 | 22 | 23 | true 24 | Base 25 | true 26 | 27 | 28 | true 29 | Cfg_1 30 | true 31 | true 32 | 33 | 34 | true 35 | Base 36 | true 37 | 38 | 39 | true 40 | Cfg_2 41 | true 42 | true 43 | 44 | 45 | dclP4DH5Py 46 | ..\..\lib\$(Platform)\$(Config) 47 | P4D Data Sciences - H5Py 48 | 00400000 49 | System;Xml;Data;Datasnap;Web;Soap;$(DCC_Namespace) 50 | true 51 | $(Auto) 52 | true 53 | true 54 | CompanyName=;FileDescription=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=;ProductVersion=1.0.0.0;Comments=;CFBundleName= 55 | 1046 56 | 57 | 58 | Debug 59 | Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;Bde;$(DCC_Namespace) 60 | rtl;P4DH5Py;$(DCC_UsePackage) 61 | true 62 | CompanyName=;FileDescription=$(MSBuildProjectName);FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=$(MSBuildProjectName);ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName) 63 | 1033 64 | 65 | 66 | 0 67 | RELEASE;$(DCC_Define) 68 | false 69 | 0 70 | 71 | 72 | P4D Data Sciences - H5Py 73 | true 74 | CompanyName=;FileDescription=$(MSBuildProjectName);FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=$(MSBuildProjectName);ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName) 75 | 1033 76 | 77 | 78 | DEBUG;$(DCC_Define) 79 | true 80 | true 81 | false 82 | true 83 | 84 | 85 | true 86 | CompanyName=;FileDescription=$(MSBuildProjectName);FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=$(MSBuildProjectName);ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName) 87 | 1033 88 | 89 | 90 | 91 | MainSource 92 | 93 | 94 | 95 | 96 | 97 | BITMAP 98 | TH5Py128 99 | 100 | 101 | BITMAP 102 | TH5Py16 103 | 104 | 105 | BITMAP 106 | TH5Py 107 | 108 | 109 | BITMAP 110 | TH5Py32 111 | 112 | 113 | RCDATA 114 | TH5Py_PNG 115 | 116 | 117 | RCDATA 118 | TH5Py128_PNG 119 | 120 | 121 | RCDATA 122 | TH5Py16_PNG 123 | 124 | 125 | RCDATA 126 | TH5Py32_PNG 127 | 128 | 129 | Base 130 | 131 | 132 | Cfg_1 133 | Base 134 | 135 | 136 | Cfg_2 137 | Base 138 | 139 | 140 | 141 | Delphi.Personality.12 142 | Package 143 | 144 | 145 | 146 | dclP4DH5Py.dpk 147 | 148 | 149 | 150 | 151 | False 152 | False 153 | False 154 | False 155 | False 156 | True 157 | False 158 | False 159 | False 160 | False 161 | 162 | 163 | 12 164 | 165 | 166 | 167 | 168 | 169 | -------------------------------------------------------------------------------- /src/H5Py/dclP4DH5Py.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/src/H5Py/dclP4DH5Py.res -------------------------------------------------------------------------------- /src/MoviePy/MoviePy.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/src/MoviePy/MoviePy.pas -------------------------------------------------------------------------------- /src/MoviePy/MoviePyReg.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/src/MoviePy/MoviePyReg.pas -------------------------------------------------------------------------------- /src/MoviePy/P4DMoviePy.dpk: -------------------------------------------------------------------------------- 1 | package P4DMoviePy; 2 | 3 | {$R *.res} 4 | {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users} 5 | {$ALIGN 8} 6 | {$ASSERTIONS ON} 7 | {$BOOLEVAL OFF} 8 | {$DEBUGINFO OFF} 9 | {$EXTENDEDSYNTAX ON} 10 | {$IMPORTEDDATA ON} 11 | {$IOCHECKS ON} 12 | {$LOCALSYMBOLS OFF} 13 | {$LONGSTRINGS ON} 14 | {$OPENSTRINGS ON} 15 | {$OPTIMIZATION ON} 16 | {$OVERFLOWCHECKS OFF} 17 | {$RANGECHECKS OFF} 18 | {$REFERENCEINFO OFF} 19 | {$SAFEDIVIDE OFF} 20 | {$STACKFRAMES OFF} 21 | {$TYPEDADDRESS OFF} 22 | {$VARSTRINGCHECKS ON} 23 | {$WRITEABLECONST OFF} 24 | {$MINENUMSIZE 1} 25 | {$IMAGEBASE $400000} 26 | {$DEFINE RELEASE} 27 | {$ENDIF IMPLICITBUILDING} 28 | {$DESCRIPTION 'P4D Data Sciences - MoviePy'} 29 | {$LIBSUFFIX AUTO} 30 | {$RUNONLY} 31 | {$IMPLICITBUILD ON} 32 | 33 | requires 34 | rtl, 35 | p4dpypackage; 36 | 37 | contains 38 | MoviePy in 'MoviePy.pas'; 39 | 40 | end. 41 | -------------------------------------------------------------------------------- /src/MoviePy/P4DMoviePy.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/src/MoviePy/P4DMoviePy.res -------------------------------------------------------------------------------- /src/MoviePy/README.md: -------------------------------------------------------------------------------- 1 | # MoviePy 2 | 3 | Note : Maintainers needed notice - - huge issues list 4 | 5 | https://github.com/Zulko/moviepy -------------------------------------------------------------------------------- /src/MoviePy/dclP4DMoviePy.dpk: -------------------------------------------------------------------------------- 1 | package dclP4DMoviePy; 2 | 3 | {$R *.res} 4 | {$R *.dres} 5 | {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users} 6 | {$ALIGN 8} 7 | {$ASSERTIONS ON} 8 | {$BOOLEVAL OFF} 9 | {$DEBUGINFO OFF} 10 | {$EXTENDEDSYNTAX ON} 11 | {$IMPORTEDDATA ON} 12 | {$IOCHECKS ON} 13 | {$LOCALSYMBOLS OFF} 14 | {$LONGSTRINGS ON} 15 | {$OPENSTRINGS ON} 16 | {$OPTIMIZATION ON} 17 | {$OVERFLOWCHECKS OFF} 18 | {$RANGECHECKS OFF} 19 | {$REFERENCEINFO OFF} 20 | {$SAFEDIVIDE OFF} 21 | {$STACKFRAMES OFF} 22 | {$TYPEDADDRESS OFF} 23 | {$VARSTRINGCHECKS ON} 24 | {$WRITEABLECONST OFF} 25 | {$MINENUMSIZE 1} 26 | {$IMAGEBASE $400000} 27 | {$DEFINE RELEASE} 28 | {$ENDIF IMPLICITBUILDING} 29 | {$DESCRIPTION 'P4D Data Sciences - MoviePy'} 30 | {$LIBSUFFIX AUTO} 31 | {$DESIGNONLY} 32 | {$IMPLICITBUILD ON} 33 | 34 | requires 35 | rtl, 36 | p4dMoviePy; 37 | 38 | contains 39 | MoviePyReg in 'MoviePyReg.pas'; 40 | 41 | end. 42 | -------------------------------------------------------------------------------- /src/MoviePy/dclP4DMoviePy.dproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | True 4 | Package 5 | Release 6 | None 7 | dclP4DMoviePy.dpk 8 | Win32 9 | {6C6567C6-5109-4FE8-A1C9-893BACBF589B} 10 | dclP4DMoviePy 11 | 20.1 12 | 1 13 | 14 | 15 | true 16 | 17 | 18 | true 19 | Base 20 | true 21 | 22 | 23 | true 24 | Base 25 | true 26 | 27 | 28 | true 29 | Cfg_1 30 | true 31 | true 32 | 33 | 34 | true 35 | Base 36 | true 37 | 38 | 39 | true 40 | Cfg_2 41 | true 42 | true 43 | 44 | 45 | dclP4DMoviePy 46 | ..\..\lib\$(Platform)\$(Config) 47 | P4D Data Sciences - MoviePy 48 | 00400000 49 | System;Xml;Data;Datasnap;Web;Soap;$(DCC_Namespace) 50 | true 51 | $(Auto) 52 | true 53 | true 54 | CompanyName=;FileDescription=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=;ProductVersion=1.0.0.0;Comments=;CFBundleName= 55 | 1046 56 | 57 | 58 | Debug 59 | Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;Bde;$(DCC_Namespace) 60 | rtl;P4DMoviePy;$(DCC_UsePackage) 61 | true 62 | CompanyName=;FileDescription=$(MSBuildProjectName);FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=$(MSBuildProjectName);ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName) 63 | 1033 64 | 65 | 66 | 0 67 | RELEASE;$(DCC_Define) 68 | false 69 | 0 70 | 71 | 72 | P4D Data Sciences - MoviePy 73 | true 74 | CompanyName=;FileDescription=$(MSBuildProjectName);FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=$(MSBuildProjectName);ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName) 75 | 1033 76 | 77 | 78 | DEBUG;$(DCC_Define) 79 | true 80 | true 81 | false 82 | true 83 | 84 | 85 | true 86 | CompanyName=;FileDescription=$(MSBuildProjectName);FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=$(MSBuildProjectName);ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName) 87 | 1033 88 | 89 | 90 | 91 | MainSource 92 | 93 | 94 | 95 | 96 | 97 | BITMAP 98 | TMoviePy128 99 | 100 | 101 | BITMAP 102 | TMoviePy16 103 | 104 | 105 | BITMAP 106 | TMoviePy 107 | 108 | 109 | BITMAP 110 | TMoviePy32 111 | 112 | 113 | RCDATA 114 | TMoviePy_PNG 115 | 116 | 117 | RCDATA 118 | TMoviePy128_PNG 119 | 120 | 121 | RCDATA 122 | TMoviePy16_PNG 123 | 124 | 125 | RCDATA 126 | TMoviePy32_PNG 127 | 128 | 129 | Base 130 | 131 | 132 | Cfg_1 133 | Base 134 | 135 | 136 | Cfg_2 137 | Base 138 | 139 | 140 | 141 | Delphi.Personality.12 142 | Package 143 | 144 | 145 | 146 | dclP4DMoviePy.dpk 147 | 148 | 149 | 150 | 151 | False 152 | False 153 | False 154 | False 155 | False 156 | True 157 | False 158 | False 159 | False 160 | False 161 | 162 | 163 | 12 164 | 165 | 166 | 167 | 168 | 169 | -------------------------------------------------------------------------------- /src/MoviePy/dclP4DMoviePy.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/src/MoviePy/dclP4DMoviePy.res -------------------------------------------------------------------------------- /src/PSUtil/P4DPSUtil.dpk: -------------------------------------------------------------------------------- 1 | package P4DPSUtil; 2 | 3 | {$R *.res} 4 | {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users} 5 | {$ALIGN 8} 6 | {$ASSERTIONS ON} 7 | {$BOOLEVAL OFF} 8 | {$DEBUGINFO OFF} 9 | {$EXTENDEDSYNTAX ON} 10 | {$IMPORTEDDATA ON} 11 | {$IOCHECKS ON} 12 | {$LOCALSYMBOLS OFF} 13 | {$LONGSTRINGS ON} 14 | {$OPENSTRINGS ON} 15 | {$OPTIMIZATION ON} 16 | {$OVERFLOWCHECKS OFF} 17 | {$RANGECHECKS OFF} 18 | {$REFERENCEINFO OFF} 19 | {$SAFEDIVIDE OFF} 20 | {$STACKFRAMES OFF} 21 | {$TYPEDADDRESS OFF} 22 | {$VARSTRINGCHECKS ON} 23 | {$WRITEABLECONST OFF} 24 | {$MINENUMSIZE 1} 25 | {$IMAGEBASE $400000} 26 | {$DEFINE RELEASE} 27 | {$ENDIF IMPLICITBUILDING} 28 | {$DESCRIPTION 'P4D Data Sciences - PSUtil'} 29 | {$LIBSUFFIX AUTO} 30 | {$RUNONLY} 31 | {$IMPLICITBUILD ON} 32 | 33 | requires 34 | rtl, 35 | p4dpypackage; 36 | 37 | contains 38 | PSUtil in 'PSUtil.pas'; 39 | 40 | end. 41 | -------------------------------------------------------------------------------- /src/PSUtil/P4DPSUtil.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/src/PSUtil/P4DPSUtil.res -------------------------------------------------------------------------------- /src/PSUtil/PSUtil.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/src/PSUtil/PSUtil.pas -------------------------------------------------------------------------------- /src/PSUtil/PSUtilReg.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/src/PSUtil/PSUtilReg.pas -------------------------------------------------------------------------------- /src/PSUtil/dclP4DPSUtil.dpk: -------------------------------------------------------------------------------- 1 | package dclP4DPSUtil; 2 | 3 | {$R *.res} 4 | {$R *.dres} 5 | {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users} 6 | {$ALIGN 8} 7 | {$ASSERTIONS ON} 8 | {$BOOLEVAL OFF} 9 | {$DEBUGINFO OFF} 10 | {$EXTENDEDSYNTAX ON} 11 | {$IMPORTEDDATA ON} 12 | {$IOCHECKS ON} 13 | {$LOCALSYMBOLS OFF} 14 | {$LONGSTRINGS ON} 15 | {$OPENSTRINGS ON} 16 | {$OPTIMIZATION ON} 17 | {$OVERFLOWCHECKS OFF} 18 | {$RANGECHECKS OFF} 19 | {$REFERENCEINFO OFF} 20 | {$SAFEDIVIDE OFF} 21 | {$STACKFRAMES OFF} 22 | {$TYPEDADDRESS OFF} 23 | {$VARSTRINGCHECKS ON} 24 | {$WRITEABLECONST OFF} 25 | {$MINENUMSIZE 1} 26 | {$IMAGEBASE $400000} 27 | {$DEFINE RELEASE} 28 | {$ENDIF IMPLICITBUILDING} 29 | {$DESCRIPTION 'P4D Data Sciences - PSUtil'} 30 | {$LIBSUFFIX AUTO} 31 | {$DESIGNONLY} 32 | {$IMPLICITBUILD ON} 33 | 34 | requires 35 | rtl, 36 | p4dPSUtil; 37 | 38 | contains 39 | PSUtilReg in 'PSUtilReg.pas'; 40 | 41 | end. 42 | -------------------------------------------------------------------------------- /src/PSUtil/dclP4DPSUtil.dproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | True 4 | Package 5 | Release 6 | None 7 | dclP4DPSUtil.dpk 8 | Win32 9 | {3510C04A-2242-4BFC-B856-BDEB950FBB80} 10 | dclP4DPSUtil 11 | 20.1 12 | 1 13 | 14 | 15 | true 16 | 17 | 18 | true 19 | Base 20 | true 21 | 22 | 23 | true 24 | Base 25 | true 26 | 27 | 28 | true 29 | Cfg_1 30 | true 31 | true 32 | 33 | 34 | true 35 | Base 36 | true 37 | 38 | 39 | true 40 | Cfg_2 41 | true 42 | true 43 | 44 | 45 | dclP4DPSUtil 46 | ..\..\lib\$(Platform)\$(Config) 47 | P4D Data Sciences - PSUtil 48 | 00400000 49 | System;Xml;Data;Datasnap;Web;Soap;$(DCC_Namespace) 50 | true 51 | $(Auto) 52 | true 53 | true 54 | CompanyName=;FileDescription=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=;ProductVersion=1.0.0.0;Comments=;CFBundleName= 55 | 1046 56 | 57 | 58 | Debug 59 | Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;Bde;$(DCC_Namespace) 60 | rtl;P4DPSUtil;$(DCC_UsePackage) 61 | true 62 | CompanyName=;FileDescription=$(MSBuildProjectName);FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=$(MSBuildProjectName);ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName) 63 | 1033 64 | 65 | 66 | 0 67 | RELEASE;$(DCC_Define) 68 | false 69 | 0 70 | 71 | 72 | P4D Data Sciences - PSUtil 73 | true 74 | CompanyName=;FileDescription=$(MSBuildProjectName);FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=$(MSBuildProjectName);ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName) 75 | 1033 76 | 77 | 78 | DEBUG;$(DCC_Define) 79 | true 80 | true 81 | false 82 | true 83 | 84 | 85 | true 86 | CompanyName=;FileDescription=$(MSBuildProjectName);FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=$(MSBuildProjectName);ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName) 87 | 1033 88 | 89 | 90 | 91 | MainSource 92 | 93 | 94 | 95 | 96 | 97 | BITMAP 98 | TPSUtil128 99 | 100 | 101 | BITMAP 102 | TPSUtil16 103 | 104 | 105 | BITMAP 106 | TPSUtil 107 | 108 | 109 | BITMAP 110 | TPSUtil32 111 | 112 | 113 | RCDATA 114 | TPSUtil_PNG 115 | 116 | 117 | RCDATA 118 | TPSUtil128_PNG 119 | 120 | 121 | RCDATA 122 | TPSUtil16_PNG 123 | 124 | 125 | RCDATA 126 | TPSUtil32_PNG 127 | 128 | 129 | Base 130 | 131 | 132 | Cfg_1 133 | Base 134 | 135 | 136 | Cfg_2 137 | Base 138 | 139 | 140 | 141 | Delphi.Personality.12 142 | Package 143 | 144 | 145 | 146 | dclP4DPSUtil.dpk 147 | 148 | 149 | 150 | 151 | False 152 | False 153 | False 154 | False 155 | False 156 | True 157 | False 158 | False 159 | False 160 | False 161 | 162 | 163 | 12 164 | 165 | 166 | 167 | 168 | 169 | -------------------------------------------------------------------------------- /src/PSUtil/dclP4DPSUtil.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/src/PSUtil/dclP4DPSUtil.res -------------------------------------------------------------------------------- /src/Pillow/P4DPillow.dpk: -------------------------------------------------------------------------------- 1 | package P4DPillow; 2 | 3 | {$R *.res} 4 | {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users} 5 | {$ALIGN 8} 6 | {$ASSERTIONS ON} 7 | {$BOOLEVAL OFF} 8 | {$DEBUGINFO OFF} 9 | {$EXTENDEDSYNTAX ON} 10 | {$IMPORTEDDATA ON} 11 | {$IOCHECKS ON} 12 | {$LOCALSYMBOLS OFF} 13 | {$LONGSTRINGS ON} 14 | {$OPENSTRINGS ON} 15 | {$OPTIMIZATION ON} 16 | {$OVERFLOWCHECKS OFF} 17 | {$RANGECHECKS OFF} 18 | {$REFERENCEINFO OFF} 19 | {$SAFEDIVIDE OFF} 20 | {$STACKFRAMES OFF} 21 | {$TYPEDADDRESS OFF} 22 | {$VARSTRINGCHECKS ON} 23 | {$WRITEABLECONST OFF} 24 | {$MINENUMSIZE 1} 25 | {$IMAGEBASE $400000} 26 | {$DEFINE RELEASE} 27 | {$ENDIF IMPLICITBUILDING} 28 | {$DESCRIPTION 'P4D Data Sciences - Pillow'} 29 | {$LIBSUFFIX AUTO} 30 | {$RUNONLY} 31 | {$IMPLICITBUILD ON} 32 | 33 | requires 34 | rtl, 35 | p4dpypackage; 36 | 37 | contains 38 | Pillow in 'Pillow.pas'; 39 | 40 | end. 41 | -------------------------------------------------------------------------------- /src/Pillow/P4DPillow.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/src/Pillow/P4DPillow.res -------------------------------------------------------------------------------- /src/Pillow/Pillow.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/src/Pillow/Pillow.pas -------------------------------------------------------------------------------- /src/Pillow/PillowReg.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/src/Pillow/PillowReg.pas -------------------------------------------------------------------------------- /src/Pillow/dclP4DPillow.dpk: -------------------------------------------------------------------------------- 1 | package dclP4DPillow; 2 | 3 | {$R *.res} 4 | {$R *.dres} 5 | {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users} 6 | {$ALIGN 8} 7 | {$ASSERTIONS ON} 8 | {$BOOLEVAL OFF} 9 | {$DEBUGINFO OFF} 10 | {$EXTENDEDSYNTAX ON} 11 | {$IMPORTEDDATA ON} 12 | {$IOCHECKS ON} 13 | {$LOCALSYMBOLS OFF} 14 | {$LONGSTRINGS ON} 15 | {$OPENSTRINGS ON} 16 | {$OPTIMIZATION ON} 17 | {$OVERFLOWCHECKS OFF} 18 | {$RANGECHECKS OFF} 19 | {$REFERENCEINFO OFF} 20 | {$SAFEDIVIDE OFF} 21 | {$STACKFRAMES OFF} 22 | {$TYPEDADDRESS OFF} 23 | {$VARSTRINGCHECKS ON} 24 | {$WRITEABLECONST OFF} 25 | {$MINENUMSIZE 1} 26 | {$IMAGEBASE $400000} 27 | {$DEFINE RELEASE} 28 | {$ENDIF IMPLICITBUILDING} 29 | {$DESCRIPTION 'P4D Data Sciences - Pillow'} 30 | {$LIBSUFFIX AUTO} 31 | {$DESIGNONLY} 32 | {$IMPLICITBUILD ON} 33 | 34 | requires 35 | rtl, 36 | p4dPillow; 37 | 38 | contains 39 | PillowReg in 'PillowReg.pas'; 40 | 41 | end. 42 | -------------------------------------------------------------------------------- /src/Pillow/dclP4DPillow.dproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | True 4 | Package 5 | Release 6 | None 7 | dclP4DPillow.dpk 8 | Win32 9 | {5E0A85DE-8B6C-4F8C-A5AA-720B4EEBC27B} 10 | dclP4DPillow 11 | 20.1 12 | 1 13 | 14 | 15 | true 16 | 17 | 18 | true 19 | Base 20 | true 21 | 22 | 23 | true 24 | Base 25 | true 26 | 27 | 28 | true 29 | Cfg_1 30 | true 31 | true 32 | 33 | 34 | true 35 | Base 36 | true 37 | 38 | 39 | true 40 | Cfg_2 41 | true 42 | true 43 | 44 | 45 | dclP4DPillow 46 | ..\..\lib\$(Platform)\$(Config) 47 | P4D Data Sciences - Pillow 48 | 00400000 49 | System;Xml;Data;Datasnap;Web;Soap;$(DCC_Namespace) 50 | true 51 | $(Auto) 52 | true 53 | true 54 | CompanyName=;FileDescription=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=;ProductVersion=1.0.0.0;Comments=;CFBundleName= 55 | 1046 56 | 57 | 58 | Debug 59 | Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;Bde;$(DCC_Namespace) 60 | rtl;P4DPillow;$(DCC_UsePackage) 61 | true 62 | CompanyName=;FileDescription=$(MSBuildProjectName);FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=$(MSBuildProjectName);ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName) 63 | 1033 64 | 65 | 66 | 0 67 | RELEASE;$(DCC_Define) 68 | false 69 | 0 70 | 71 | 72 | P4D Data Sciences - Pillow 73 | true 74 | CompanyName=;FileDescription=$(MSBuildProjectName);FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=$(MSBuildProjectName);ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName) 75 | 1033 76 | 77 | 78 | DEBUG;$(DCC_Define) 79 | true 80 | true 81 | false 82 | true 83 | 84 | 85 | true 86 | CompanyName=;FileDescription=$(MSBuildProjectName);FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=$(MSBuildProjectName);ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName) 87 | 1033 88 | 89 | 90 | 91 | MainSource 92 | 93 | 94 | 95 | 96 | 97 | BITMAP 98 | TPillow128 99 | 100 | 101 | BITMAP 102 | TPillow16 103 | 104 | 105 | BITMAP 106 | TPillow 107 | 108 | 109 | BITMAP 110 | TPillow32 111 | 112 | 113 | RCDATA 114 | TPillow_PNG 115 | 116 | 117 | RCDATA 118 | TPillow128_PNG 119 | 120 | 121 | RCDATA 122 | TPillow16_PNG 123 | 124 | 125 | RCDATA 126 | TPillow32_PNG 127 | 128 | 129 | Base 130 | 131 | 132 | Cfg_1 133 | Base 134 | 135 | 136 | Cfg_2 137 | Base 138 | 139 | 140 | 141 | Delphi.Personality.12 142 | Package 143 | 144 | 145 | 146 | dclP4DPillow.dpk 147 | 148 | 149 | 150 | 151 | False 152 | False 153 | False 154 | False 155 | False 156 | True 157 | False 158 | False 159 | False 160 | False 161 | 162 | 163 | 12 164 | 165 | 166 | 167 | 168 | 169 | -------------------------------------------------------------------------------- /src/Pillow/dclP4DPillow.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/src/Pillow/dclP4DPillow.res -------------------------------------------------------------------------------- /src/PyQT5/P4DPyQT5.dpk: -------------------------------------------------------------------------------- 1 | package P4DPyQT5; 2 | 3 | {$R *.res} 4 | {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users} 5 | {$ALIGN 8} 6 | {$ASSERTIONS ON} 7 | {$BOOLEVAL OFF} 8 | {$DEBUGINFO OFF} 9 | {$EXTENDEDSYNTAX ON} 10 | {$IMPORTEDDATA ON} 11 | {$IOCHECKS ON} 12 | {$LOCALSYMBOLS OFF} 13 | {$LONGSTRINGS ON} 14 | {$OPENSTRINGS ON} 15 | {$OPTIMIZATION ON} 16 | {$OVERFLOWCHECKS OFF} 17 | {$RANGECHECKS OFF} 18 | {$REFERENCEINFO OFF} 19 | {$SAFEDIVIDE OFF} 20 | {$STACKFRAMES OFF} 21 | {$TYPEDADDRESS OFF} 22 | {$VARSTRINGCHECKS ON} 23 | {$WRITEABLECONST OFF} 24 | {$MINENUMSIZE 1} 25 | {$IMAGEBASE $400000} 26 | {$DEFINE RELEASE} 27 | {$ENDIF IMPLICITBUILDING} 28 | {$DESCRIPTION 'P4D Data Sciences - PyQT5'} 29 | {$LIBSUFFIX AUTO} 30 | {$RUNONLY} 31 | {$IMPLICITBUILD ON} 32 | 33 | requires 34 | rtl, 35 | p4dpypackage; 36 | 37 | contains 38 | PyQT5 in 'PyQT5.pas'; 39 | 40 | end. 41 | -------------------------------------------------------------------------------- /src/PyQT5/P4DPyQT5.dproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | True 4 | Package 5 | Release 6 | None 7 | P4DPyQT5.dpk 8 | Win32 9 | {36B3FDF3-39B0-410E-9B75-162B4D0F3AA5} 10 | P4DPyQT5 11 | 20.1 12 | 168083 13 | 14 | 15 | true 16 | Base 17 | true 18 | /usr/X11/bin/xterm -e "%debuggee%" 19 | Debug 20 | CFBundleName=$(MSBuildProjectName);CFBundleDisplayName=$(MSBuildProjectName);CFBundleIdentifier=$(MSBuildProjectName);CFBundleVersion=1.0.0;CFBundleShortVersionString=1.0.0;CFBundlePackageType=APPL;CFBundleSignature=????;CFBundleAllowMixedLocalizations=YES;CFBundleExecutable=$(MSBuildProjectName);NSHighResolutionCapable=true;LSApplicationCategoryType=public.app-category.utilities;NSLocationUsageDescription=The reason for accessing the location information of the user;NSContactsUsageDescription=The reason for accessing the contacts;NSCalendarsUsageDescription=The reason for accessing the calendar data;NSRemindersUsageDescription=The reason for accessing the reminders;NSCameraUsageDescription=The reason for accessing the camera;NSMicrophoneUsageDescription=The reason for accessing the microphone;NSMotionUsageDescription=The reason for accessing the accelerometer;NSDesktopFolderUsageDescription=The reason for accessing the Desktop folder;NSDocumentsFolderUsageDescription=The reason for accessing the Documents folder;NSDownloadsFolderUsageDescription=The reason for accessing the Downloads folder;NSNetworkVolumesUsageDescription=The reason for accessing files on a network volume;NSRemovableVolumesUsageDescription=The reason for accessing files on a removable volume;NSSpeechRecognitionUsageDescription=The reason for requesting to send user data to Apple's speech recognition servers;ITSAppUsesNonExemptEncryption=false;NSBluetoothAlwaysUsageDescription=The reason for accessing the Bluetooth interface 21 | 22 | 23 | true 24 | 25 | 26 | true 27 | Base 28 | true 29 | 30 | 31 | true 32 | Base 33 | true 34 | 35 | 36 | true 37 | Base 38 | true 39 | 40 | 41 | true 42 | Base 43 | true 44 | 45 | 46 | true 47 | Base 48 | true 49 | 50 | 51 | true 52 | Base 53 | true 54 | 55 | 56 | true 57 | Base 58 | true 59 | 60 | 61 | true 62 | Cfg_1 63 | true 64 | true 65 | 66 | 67 | true 68 | Cfg_1 69 | true 70 | true 71 | 72 | 73 | true 74 | Cfg_1 75 | true 76 | true 77 | 78 | 79 | true 80 | Cfg_1 81 | true 82 | true 83 | 84 | 85 | true 86 | Cfg_1 87 | true 88 | true 89 | 90 | 91 | true 92 | Cfg_1 93 | true 94 | true 95 | 96 | 97 | true 98 | Base 99 | true 100 | 101 | 102 | true 103 | Cfg_2 104 | true 105 | true 106 | 107 | 108 | true 109 | Cfg_2 110 | true 111 | true 112 | 113 | 114 | true 115 | Cfg_2 116 | true 117 | true 118 | 119 | 120 | true 121 | Cfg_2 122 | true 123 | true 124 | 125 | 126 | true 127 | Cfg_2 128 | true 129 | true 130 | 131 | 132 | true 133 | Cfg_2 134 | true 135 | true 136 | 137 | 138 | P4DPyQT5 139 | All 140 | ..\..\lib\$(Platform)\$(Config) 141 | P4D Data Sciences - PyQT5 142 | .\$(Platform)\$(Config) 143 | System;Xml;Data;Datasnap;Web;Soap;$(DCC_Namespace) 144 | $(Auto) 145 | true 146 | true 147 | true 148 | CompanyName=;FileDescription=$(MSBuildProjectName);FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProgramID=com.embarcadero.$(MSBuildProjectName);ProductName=$(MSBuildProjectName);ProductVersion=1.0.0.0;Comments= 149 | 1046 150 | 151 | 152 | Debug 153 | None 154 | annotation-1.2.0.dex.jar;asynclayoutinflater-1.0.0.dex.jar;billing-4.0.0.dex.jar;browser-1.0.0.dex.jar;cloud-messaging.dex.jar;collection-1.0.0.dex.jar;coordinatorlayout-1.0.0.dex.jar;core-1.5.0-rc02.dex.jar;core-common-2.0.1.dex.jar;core-runtime-2.0.1.dex.jar;cursoradapter-1.0.0.dex.jar;customview-1.0.0.dex.jar;documentfile-1.0.0.dex.jar;drawerlayout-1.0.0.dex.jar;firebase-annotations-16.0.0.dex.jar;firebase-common-20.0.0.dex.jar;firebase-components-17.0.0.dex.jar;firebase-datatransport-18.0.0.dex.jar;firebase-encoders-17.0.0.dex.jar;firebase-encoders-json-18.0.0.dex.jar;firebase-iid-interop-17.1.0.dex.jar;firebase-installations-17.0.0.dex.jar;firebase-installations-interop-17.0.0.dex.jar;firebase-measurement-connector-19.0.0.dex.jar;firebase-messaging-22.0.0.dex.jar;fmx.dex.jar;fragment-1.0.0.dex.jar;google-play-licensing.dex.jar;interpolator-1.0.0.dex.jar;javax.inject-1.dex.jar;legacy-support-core-ui-1.0.0.dex.jar;legacy-support-core-utils-1.0.0.dex.jar;lifecycle-common-2.0.0.dex.jar;lifecycle-livedata-2.0.0.dex.jar;lifecycle-livedata-core-2.0.0.dex.jar;lifecycle-runtime-2.0.0.dex.jar;lifecycle-service-2.0.0.dex.jar;lifecycle-viewmodel-2.0.0.dex.jar;listenablefuture-1.0.dex.jar;loader-1.0.0.dex.jar;localbroadcastmanager-1.0.0.dex.jar;play-services-ads-20.1.0.dex.jar;play-services-ads-base-20.1.0.dex.jar;play-services-ads-identifier-17.0.0.dex.jar;play-services-ads-lite-20.1.0.dex.jar;play-services-base-17.5.0.dex.jar;play-services-basement-17.6.0.dex.jar;play-services-cloud-messaging-16.0.0.dex.jar;play-services-drive-17.0.0.dex.jar;play-services-games-21.0.0.dex.jar;play-services-location-18.0.0.dex.jar;play-services-maps-17.0.1.dex.jar;play-services-measurement-base-18.0.0.dex.jar;play-services-measurement-sdk-api-18.0.0.dex.jar;play-services-places-placereport-17.0.0.dex.jar;play-services-stats-17.0.0.dex.jar;play-services-tasks-17.2.0.dex.jar;print-1.0.0.dex.jar;room-common-2.1.0.dex.jar;room-runtime-2.1.0.dex.jar;slidingpanelayout-1.0.0.dex.jar;sqlite-2.0.1.dex.jar;sqlite-framework-2.0.1.dex.jar;swiperefreshlayout-1.0.0.dex.jar;transport-api-3.0.0.dex.jar;transport-backend-cct-3.0.0.dex.jar;transport-runtime-3.0.0.dex.jar;user-messaging-platform-1.0.0.dex.jar;versionedparcelable-1.1.1.dex.jar;viewpager-1.0.0.dex.jar;work-runtime-2.1.0.dex.jar 155 | 1 156 | package=com.embarcadero.$(MSBuildProjectName);label=$(MSBuildProjectName);versionCode=1;versionName=1.0.0;persistent=False;restoreAnyVersion=False;installLocation=auto;largeHeap=False;theme=TitleBar;hardwareAccelerated=true;apiKey= 157 | 158 | 159 | Debug 160 | None 161 | annotation-1.2.0.dex.jar;asynclayoutinflater-1.0.0.dex.jar;billing-4.0.0.dex.jar;browser-1.0.0.dex.jar;cloud-messaging.dex.jar;collection-1.0.0.dex.jar;coordinatorlayout-1.0.0.dex.jar;core-1.5.0-rc02.dex.jar;core-common-2.0.1.dex.jar;core-runtime-2.0.1.dex.jar;cursoradapter-1.0.0.dex.jar;customview-1.0.0.dex.jar;documentfile-1.0.0.dex.jar;drawerlayout-1.0.0.dex.jar;firebase-annotations-16.0.0.dex.jar;firebase-common-20.0.0.dex.jar;firebase-components-17.0.0.dex.jar;firebase-datatransport-18.0.0.dex.jar;firebase-encoders-17.0.0.dex.jar;firebase-encoders-json-18.0.0.dex.jar;firebase-iid-interop-17.1.0.dex.jar;firebase-installations-17.0.0.dex.jar;firebase-installations-interop-17.0.0.dex.jar;firebase-measurement-connector-19.0.0.dex.jar;firebase-messaging-22.0.0.dex.jar;fmx.dex.jar;fragment-1.0.0.dex.jar;google-play-licensing.dex.jar;interpolator-1.0.0.dex.jar;javax.inject-1.dex.jar;legacy-support-core-ui-1.0.0.dex.jar;legacy-support-core-utils-1.0.0.dex.jar;lifecycle-common-2.0.0.dex.jar;lifecycle-livedata-2.0.0.dex.jar;lifecycle-livedata-core-2.0.0.dex.jar;lifecycle-runtime-2.0.0.dex.jar;lifecycle-service-2.0.0.dex.jar;lifecycle-viewmodel-2.0.0.dex.jar;listenablefuture-1.0.dex.jar;loader-1.0.0.dex.jar;localbroadcastmanager-1.0.0.dex.jar;play-services-ads-20.1.0.dex.jar;play-services-ads-base-20.1.0.dex.jar;play-services-ads-identifier-17.0.0.dex.jar;play-services-ads-lite-20.1.0.dex.jar;play-services-base-17.5.0.dex.jar;play-services-basement-17.6.0.dex.jar;play-services-cloud-messaging-16.0.0.dex.jar;play-services-drive-17.0.0.dex.jar;play-services-games-21.0.0.dex.jar;play-services-location-18.0.0.dex.jar;play-services-maps-17.0.1.dex.jar;play-services-measurement-base-18.0.0.dex.jar;play-services-measurement-sdk-api-18.0.0.dex.jar;play-services-places-placereport-17.0.0.dex.jar;play-services-stats-17.0.0.dex.jar;play-services-tasks-17.2.0.dex.jar;print-1.0.0.dex.jar;room-common-2.1.0.dex.jar;room-runtime-2.1.0.dex.jar;slidingpanelayout-1.0.0.dex.jar;sqlite-2.0.1.dex.jar;sqlite-framework-2.0.1.dex.jar;swiperefreshlayout-1.0.0.dex.jar;transport-api-3.0.0.dex.jar;transport-backend-cct-3.0.0.dex.jar;transport-runtime-3.0.0.dex.jar;user-messaging-platform-1.0.0.dex.jar;versionedparcelable-1.1.1.dex.jar;viewpager-1.0.0.dex.jar;work-runtime-2.1.0.dex.jar 162 | 1 163 | package=com.embarcadero.$(MSBuildProjectName);label=$(MSBuildProjectName);versionCode=1;versionName=1.0.0;persistent=False;restoreAnyVersion=False;installLocation=auto;largeHeap=False;theme=TitleBar;hardwareAccelerated=true;apiKey= 164 | 165 | 166 | Debug 167 | /usr/X11/bin/xterm -e "%debuggee%" 168 | CFBundleName=$(MSBuildProjectName);CFBundleDisplayName=$(MSBuildProjectName);CFBundleIdentifier=$(MSBuildProjectName);CFBundleVersion=1.0.0;CFBundleShortVersionString=1.0.0;CFBundlePackageType=APPL;CFBundleSignature=????;CFBundleAllowMixedLocalizations=YES;CFBundleExecutable=$(MSBuildProjectName);NSHighResolutionCapable=true;LSApplicationCategoryType=public.app-category.utilities;NSLocationUsageDescription=The reason for accessing the location information of the user;NSContactsUsageDescription=The reason for accessing the contacts;NSCalendarsUsageDescription=The reason for accessing the calendar data;NSRemindersUsageDescription=The reason for accessing the reminders;NSCameraUsageDescription=The reason for accessing the camera;NSMicrophoneUsageDescription=The reason for accessing the microphone;NSMotionUsageDescription=The reason for accessing the accelerometer;NSDesktopFolderUsageDescription=The reason for accessing the Desktop folder;NSDocumentsFolderUsageDescription=The reason for accessing the Documents folder;NSDownloadsFolderUsageDescription=The reason for accessing the Downloads folder;NSNetworkVolumesUsageDescription=The reason for accessing files on a network volume;NSRemovableVolumesUsageDescription=The reason for accessing files on a removable volume;NSSpeechRecognitionUsageDescription=The reason for requesting to send user data to Apple's speech recognition servers;ITSAppUsesNonExemptEncryption=false;NSBluetoothAlwaysUsageDescription=The reason for accessing the Bluetooth interface 169 | 170 | 171 | Debug 172 | Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;Bde;$(DCC_Namespace) 173 | true 174 | 1033 175 | 176 | 177 | Debug 178 | Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;$(DCC_Namespace) 179 | true 180 | 1033 181 | 182 | 183 | true 184 | true 185 | DEBUG;$(DCC_Define) 186 | true 187 | true 188 | false 189 | true 190 | true 191 | 192 | 193 | 1 194 | package=com.embarcadero.$(MSBuildProjectName);label=$(MSBuildProjectName);versionCode=1;versionName=1.0.0;persistent=False;restoreAnyVersion=False;installLocation=auto;largeHeap=False;theme=TitleBar;hardwareAccelerated=true;apiKey= 195 | 196 | 197 | 1 198 | package=com.embarcadero.$(MSBuildProjectName);label=$(MSBuildProjectName);versionCode=1;versionName=1.0.0;persistent=False;restoreAnyVersion=False;installLocation=auto;largeHeap=False;theme=TitleBar;hardwareAccelerated=true;apiKey= 199 | 200 | 201 | CFBundleName=$(MSBuildProjectName);CFBundleDisplayName=$(MSBuildProjectName);CFBundleIdentifier=$(MSBuildProjectName);CFBundleVersion=1.0.0;CFBundleShortVersionString=1.0.0;CFBundlePackageType=APPL;CFBundleSignature=????;CFBundleAllowMixedLocalizations=YES;CFBundleExecutable=$(MSBuildProjectName);NSHighResolutionCapable=true;LSApplicationCategoryType=public.app-category.utilities;NSLocationUsageDescription=The reason for accessing the location information of the user;NSContactsUsageDescription=The reason for accessing the contacts;NSCalendarsUsageDescription=The reason for accessing the calendar data;NSRemindersUsageDescription=The reason for accessing the reminders;NSCameraUsageDescription=The reason for accessing the camera;NSMicrophoneUsageDescription=The reason for accessing the microphone;NSMotionUsageDescription=The reason for accessing the accelerometer;NSDesktopFolderUsageDescription=The reason for accessing the Desktop folder;NSDocumentsFolderUsageDescription=The reason for accessing the Documents folder;NSDownloadsFolderUsageDescription=The reason for accessing the Downloads folder;NSNetworkVolumesUsageDescription=The reason for accessing files on a network volume;NSRemovableVolumesUsageDescription=The reason for accessing files on a removable volume;NSSpeechRecognitionUsageDescription=The reason for requesting to send user data to Apple's speech recognition servers;ITSAppUsesNonExemptEncryption=false;NSBluetoothAlwaysUsageDescription=The reason for accessing the Bluetooth interface 202 | 203 | 204 | Cfg_1 205 | true 206 | true 207 | CFBundleName=$(MSBuildProjectName);CFBundleDisplayName=$(MSBuildProjectName);CFBundleIdentifier=$(MSBuildProjectName);CFBundleVersion=1.0.0;CFBundleShortVersionString=1.0.0;CFBundlePackageType=APPL;CFBundleSignature=????;CFBundleAllowMixedLocalizations=YES;CFBundleExecutable=$(MSBuildProjectName);NSHighResolutionCapable=true;LSApplicationCategoryType=public.app-category.utilities;NSLocationUsageDescription=The reason for accessing the location information of the user;NSContactsUsageDescription=The reason for accessing the contacts;NSCalendarsUsageDescription=The reason for accessing the calendar data;NSRemindersUsageDescription=The reason for accessing the reminders;NSCameraUsageDescription=The reason for accessing the camera;NSMicrophoneUsageDescription=The reason for accessing the microphone;NSMotionUsageDescription=The reason for accessing the accelerometer;NSDesktopFolderUsageDescription=The reason for accessing the Desktop folder;NSDocumentsFolderUsageDescription=The reason for accessing the Documents folder;NSDownloadsFolderUsageDescription=The reason for accessing the Downloads folder;NSNetworkVolumesUsageDescription=The reason for accessing files on a network volume;NSRemovableVolumesUsageDescription=The reason for accessing files on a removable volume;NSSpeechRecognitionUsageDescription=The reason for requesting to send user data to Apple's speech recognition servers;ITSAppUsesNonExemptEncryption=false;NSBluetoothAlwaysUsageDescription=The reason for accessing the Bluetooth interface 208 | 209 | 210 | false 211 | true 212 | 1033 213 | 214 | 215 | true 216 | 1033 217 | 218 | 219 | 0 220 | RELEASE;$(DCC_Define) 221 | false 222 | 0 223 | 224 | 225 | 1 226 | package=com.embarcadero.$(MSBuildProjectName);label=$(MSBuildProjectName);versionCode=1;versionName=1.0.0;persistent=False;restoreAnyVersion=False;installLocation=auto;largeHeap=False;theme=TitleBar;hardwareAccelerated=true;apiKey= 227 | 228 | 229 | 1 230 | package=com.embarcadero.$(MSBuildProjectName);label=$(MSBuildProjectName);versionCode=1;versionName=1.0.0;persistent=False;restoreAnyVersion=False;installLocation=auto;largeHeap=False;theme=TitleBar;hardwareAccelerated=true;apiKey= 231 | 232 | 233 | CFBundleName=$(MSBuildProjectName);CFBundleDisplayName=$(MSBuildProjectName);CFBundleIdentifier=$(MSBuildProjectName);CFBundleVersion=1.0.0;CFBundleShortVersionString=1.0.0;CFBundlePackageType=APPL;CFBundleSignature=????;CFBundleAllowMixedLocalizations=YES;CFBundleExecutable=$(MSBuildProjectName);NSHighResolutionCapable=true;LSApplicationCategoryType=public.app-category.utilities;NSLocationUsageDescription=The reason for accessing the location information of the user;NSContactsUsageDescription=The reason for accessing the contacts;NSCalendarsUsageDescription=The reason for accessing the calendar data;NSRemindersUsageDescription=The reason for accessing the reminders;NSCameraUsageDescription=The reason for accessing the camera;NSMicrophoneUsageDescription=The reason for accessing the microphone;NSMotionUsageDescription=The reason for accessing the accelerometer;NSDesktopFolderUsageDescription=The reason for accessing the Desktop folder;NSDocumentsFolderUsageDescription=The reason for accessing the Documents folder;NSDownloadsFolderUsageDescription=The reason for accessing the Downloads folder;NSNetworkVolumesUsageDescription=The reason for accessing files on a network volume;NSRemovableVolumesUsageDescription=The reason for accessing files on a removable volume;NSSpeechRecognitionUsageDescription=The reason for requesting to send user data to Apple's speech recognition servers;ITSAppUsesNonExemptEncryption=false;NSBluetoothAlwaysUsageDescription=The reason for accessing the Bluetooth interface 234 | 235 | 236 | Cfg_2 237 | true 238 | true 239 | CFBundleName=$(MSBuildProjectName);CFBundleDisplayName=$(MSBuildProjectName);CFBundleIdentifier=$(MSBuildProjectName);CFBundleVersion=1.0.0;CFBundleShortVersionString=1.0.0;CFBundlePackageType=APPL;CFBundleSignature=????;CFBundleAllowMixedLocalizations=YES;CFBundleExecutable=$(MSBuildProjectName);NSHighResolutionCapable=true;LSApplicationCategoryType=public.app-category.utilities;NSLocationUsageDescription=The reason for accessing the location information of the user;NSContactsUsageDescription=The reason for accessing the contacts;NSCalendarsUsageDescription=The reason for accessing the calendar data;NSRemindersUsageDescription=The reason for accessing the reminders;NSCameraUsageDescription=The reason for accessing the camera;NSMicrophoneUsageDescription=The reason for accessing the microphone;NSMotionUsageDescription=The reason for accessing the accelerometer;NSDesktopFolderUsageDescription=The reason for accessing the Desktop folder;NSDocumentsFolderUsageDescription=The reason for accessing the Documents folder;NSDownloadsFolderUsageDescription=The reason for accessing the Downloads folder;NSNetworkVolumesUsageDescription=The reason for accessing files on a network volume;NSRemovableVolumesUsageDescription=The reason for accessing files on a removable volume;NSSpeechRecognitionUsageDescription=The reason for requesting to send user data to Apple's speech recognition servers;ITSAppUsesNonExemptEncryption=false;NSBluetoothAlwaysUsageDescription=The reason for accessing the Bluetooth interface 240 | 241 | 242 | true 243 | 1033 244 | 245 | 246 | true 247 | 1033 248 | 249 | 250 | 251 | MainSource 252 | 253 | 254 | 255 | 256 | 257 | Base 258 | 259 | 260 | Cfg_1 261 | Base 262 | 263 | 264 | Cfg_2 265 | Base 266 | 267 | 268 | 269 | Delphi.Personality.12 270 | Package 271 | 272 | 273 | 274 | P4DPyQT5.dpk 275 | 276 | 277 | 278 | 279 | True 280 | True 281 | True 282 | True 283 | True 284 | True 285 | True 286 | False 287 | False 288 | False 289 | 290 | 291 | 12 292 | 293 | 294 | 295 | 296 | 297 | -------------------------------------------------------------------------------- /src/PyQT5/P4DPyQT5.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/src/PyQT5/P4DPyQT5.res -------------------------------------------------------------------------------- /src/PyQT5/PyQT5.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/src/PyQT5/PyQT5.pas -------------------------------------------------------------------------------- /src/PyQT5/PyQT5Reg.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/src/PyQT5/PyQT5Reg.pas -------------------------------------------------------------------------------- /src/PyQT5/README.md: -------------------------------------------------------------------------------- 1 | # PyQt5 2 | 3 | Note : PyQt5 is dual licensed on all platforms under the Riverbank Commercial License and the GPL v3. Your PyQt5 license must be compatible with your Qt license. If you use the GPL version then your own code must also use a compatible license. 4 | 5 | https://www.riverbankcomputing.com/software/pyqt/ 6 | -------------------------------------------------------------------------------- /src/PyQT5/dclP4DPyQT5.dpk: -------------------------------------------------------------------------------- 1 | package dclP4DPyQT5; 2 | 3 | {$R *.res} 4 | {$R *.dres} 5 | {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users} 6 | {$ALIGN 8} 7 | {$ASSERTIONS ON} 8 | {$BOOLEVAL OFF} 9 | {$DEBUGINFO OFF} 10 | {$EXTENDEDSYNTAX ON} 11 | {$IMPORTEDDATA ON} 12 | {$IOCHECKS ON} 13 | {$LOCALSYMBOLS OFF} 14 | {$LONGSTRINGS ON} 15 | {$OPENSTRINGS ON} 16 | {$OPTIMIZATION ON} 17 | {$OVERFLOWCHECKS OFF} 18 | {$RANGECHECKS OFF} 19 | {$REFERENCEINFO OFF} 20 | {$SAFEDIVIDE OFF} 21 | {$STACKFRAMES OFF} 22 | {$TYPEDADDRESS OFF} 23 | {$VARSTRINGCHECKS ON} 24 | {$WRITEABLECONST OFF} 25 | {$MINENUMSIZE 1} 26 | {$IMAGEBASE $400000} 27 | {$DEFINE RELEASE} 28 | {$ENDIF IMPLICITBUILDING} 29 | {$DESCRIPTION 'P4D Data Sciences - PyQT5'} 30 | {$LIBSUFFIX AUTO} 31 | {$DESIGNONLY} 32 | {$IMPLICITBUILD ON} 33 | 34 | requires 35 | rtl, 36 | p4dPyQT5; 37 | 38 | contains 39 | PyQT5Reg in 'PyQT5Reg.pas'; 40 | 41 | end. 42 | -------------------------------------------------------------------------------- /src/PyQT5/dclP4DPyQT5.dproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | True 4 | Package 5 | Release 6 | None 7 | dclP4DPyQT5.dpk 8 | Win32 9 | {60777260-3E3D-413F-B9F2-A41E04A6907E} 10 | dclP4DPyQT5 11 | 20.1 12 | 1 13 | 14 | 15 | true 16 | 17 | 18 | true 19 | Base 20 | true 21 | 22 | 23 | true 24 | Base 25 | true 26 | 27 | 28 | true 29 | Cfg_1 30 | true 31 | true 32 | 33 | 34 | true 35 | Base 36 | true 37 | 38 | 39 | true 40 | Cfg_2 41 | true 42 | true 43 | 44 | 45 | dclP4DPyQT5 46 | ..\..\lib\$(Platform)\$(Config) 47 | P4D Data Sciences - PyQT5 48 | 00400000 49 | System;Xml;Data;Datasnap;Web;Soap;$(DCC_Namespace) 50 | true 51 | $(Auto) 52 | true 53 | true 54 | CompanyName=;FileDescription=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=;ProductVersion=1.0.0.0;Comments=;CFBundleName= 55 | 1046 56 | 57 | 58 | Debug 59 | Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;Bde;$(DCC_Namespace) 60 | rtl;P4DPyQT5;$(DCC_UsePackage) 61 | true 62 | CompanyName=;FileDescription=$(MSBuildProjectName);FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=$(MSBuildProjectName);ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName) 63 | 1033 64 | 65 | 66 | 0 67 | RELEASE;$(DCC_Define) 68 | false 69 | 0 70 | 71 | 72 | P4D Data Sciences - PyQT5 73 | true 74 | CompanyName=;FileDescription=$(MSBuildProjectName);FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=$(MSBuildProjectName);ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName) 75 | 1033 76 | 77 | 78 | DEBUG;$(DCC_Define) 79 | true 80 | true 81 | false 82 | true 83 | 84 | 85 | true 86 | CompanyName=;FileDescription=$(MSBuildProjectName);FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=$(MSBuildProjectName);ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName) 87 | 1033 88 | 89 | 90 | 91 | MainSource 92 | 93 | 94 | 95 | 96 | 97 | BITMAP 98 | TPyQT5128 99 | 100 | 101 | BITMAP 102 | TPyQT516 103 | 104 | 105 | BITMAP 106 | TPyQT5 107 | 108 | 109 | BITMAP 110 | TPyQT532 111 | 112 | 113 | RCDATA 114 | TPyQT5_PNG 115 | 116 | 117 | RCDATA 118 | TPyQT5128_PNG 119 | 120 | 121 | RCDATA 122 | TPyQT516_PNG 123 | 124 | 125 | RCDATA 126 | TPyQT532_PNG 127 | 128 | 129 | Base 130 | 131 | 132 | Cfg_1 133 | Base 134 | 135 | 136 | Cfg_2 137 | Base 138 | 139 | 140 | 141 | Delphi.Personality.12 142 | Package 143 | 144 | 145 | 146 | dclP4DPyQT5.dpk 147 | 148 | 149 | 150 | 151 | False 152 | False 153 | False 154 | False 155 | False 156 | True 157 | False 158 | False 159 | False 160 | False 161 | 162 | 163 | 12 164 | 165 | 166 | 167 | 168 | 169 | -------------------------------------------------------------------------------- /src/PyQT5/dclP4DPyQT5.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/src/PyQT5/dclP4DPyQT5.res -------------------------------------------------------------------------------- /src/RemBG/P4DRemBG.dpk: -------------------------------------------------------------------------------- 1 | package P4DRemBG; 2 | 3 | {$R *.res} 4 | {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users} 5 | {$ALIGN 8} 6 | {$ASSERTIONS ON} 7 | {$BOOLEVAL OFF} 8 | {$DEBUGINFO OFF} 9 | {$EXTENDEDSYNTAX ON} 10 | {$IMPORTEDDATA ON} 11 | {$IOCHECKS ON} 12 | {$LOCALSYMBOLS OFF} 13 | {$LONGSTRINGS ON} 14 | {$OPENSTRINGS ON} 15 | {$OPTIMIZATION ON} 16 | {$OVERFLOWCHECKS OFF} 17 | {$RANGECHECKS OFF} 18 | {$REFERENCEINFO OFF} 19 | {$SAFEDIVIDE OFF} 20 | {$STACKFRAMES OFF} 21 | {$TYPEDADDRESS OFF} 22 | {$VARSTRINGCHECKS ON} 23 | {$WRITEABLECONST OFF} 24 | {$MINENUMSIZE 1} 25 | {$IMAGEBASE $400000} 26 | {$DEFINE RELEASE} 27 | {$ENDIF IMPLICITBUILDING} 28 | {$DESCRIPTION 'P4D Data Sciences - RemBG'} 29 | {$LIBSUFFIX AUTO} 30 | {$RUNONLY} 31 | {$IMPLICITBUILD ON} 32 | 33 | requires 34 | rtl, 35 | p4dpypackage; 36 | 37 | contains 38 | RemBG in 'RemBG.pas'; 39 | 40 | end. 41 | -------------------------------------------------------------------------------- /src/RemBG/P4DRemBG.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/src/RemBG/P4DRemBG.res -------------------------------------------------------------------------------- /src/RemBG/README.md: -------------------------------------------------------------------------------- 1 | # RemBG 2 | 3 | Note - this module is dependant on Python 3.9 4 | 5 | https://github.com/danielgatis/rembg -------------------------------------------------------------------------------- /src/RemBG/RemBG.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/src/RemBG/RemBG.pas -------------------------------------------------------------------------------- /src/RemBG/RemBGReg.pas: -------------------------------------------------------------------------------- 1 | unit RemBGReg; 2 | 3 | interface 4 | 5 | procedure Register(); 6 | 7 | implementation 8 | 9 | uses 10 | Classes, RemBG; 11 | 12 | procedure Register(); 13 | begin 14 | RegisterComponents('Python - General Packages for Delphi', [TRemBG]); 15 | end; 16 | 17 | end. 18 | -------------------------------------------------------------------------------- /src/RemBG/dclP4DRemBG.dpk: -------------------------------------------------------------------------------- 1 | package dclP4DRemBG; 2 | 3 | {$R *.res} 4 | {$R *.dres} 5 | {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users} 6 | {$ALIGN 8} 7 | {$ASSERTIONS ON} 8 | {$BOOLEVAL OFF} 9 | {$DEBUGINFO OFF} 10 | {$EXTENDEDSYNTAX ON} 11 | {$IMPORTEDDATA ON} 12 | {$IOCHECKS ON} 13 | {$LOCALSYMBOLS OFF} 14 | {$LONGSTRINGS ON} 15 | {$OPENSTRINGS ON} 16 | {$OPTIMIZATION ON} 17 | {$OVERFLOWCHECKS OFF} 18 | {$RANGECHECKS OFF} 19 | {$REFERENCEINFO OFF} 20 | {$SAFEDIVIDE OFF} 21 | {$STACKFRAMES OFF} 22 | {$TYPEDADDRESS OFF} 23 | {$VARSTRINGCHECKS ON} 24 | {$WRITEABLECONST OFF} 25 | {$MINENUMSIZE 1} 26 | {$IMAGEBASE $400000} 27 | {$DEFINE RELEASE} 28 | {$ENDIF IMPLICITBUILDING} 29 | {$DESCRIPTION 'P4D Data Sciences - RemBG'} 30 | {$LIBSUFFIX AUTO} 31 | {$DESIGNONLY} 32 | {$IMPLICITBUILD ON} 33 | 34 | requires 35 | rtl, 36 | p4dRemBG; 37 | 38 | contains 39 | RemBGReg in 'RemBGReg.pas'; 40 | 41 | end. 42 | -------------------------------------------------------------------------------- /src/RemBG/dclP4DRemBG.dproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | True 4 | Package 5 | Release 6 | None 7 | dclP4DRemBG.dpk 8 | Win32 9 | {A98E2EC7-870A-4055-9520-4A4AE96BDAC6} 10 | dclP4DRemBG 11 | 20.1 12 | 1 13 | 14 | 15 | true 16 | 17 | 18 | true 19 | Base 20 | true 21 | 22 | 23 | true 24 | Base 25 | true 26 | 27 | 28 | true 29 | Cfg_1 30 | true 31 | true 32 | 33 | 34 | true 35 | Base 36 | true 37 | 38 | 39 | true 40 | Cfg_2 41 | true 42 | true 43 | 44 | 45 | dclP4DRemBG 46 | ..\..\lib\$(Platform)\$(Config) 47 | P4D Data Sciences - RemBG 48 | 00400000 49 | System;Xml;Data;Datasnap;Web;Soap;$(DCC_Namespace) 50 | true 51 | $(Auto) 52 | true 53 | true 54 | CompanyName=;FileDescription=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=;ProductVersion=1.0.0.0;Comments=;CFBundleName= 55 | 1046 56 | 57 | 58 | Debug 59 | Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;Bde;$(DCC_Namespace) 60 | rtl;P4DRemBG;$(DCC_UsePackage) 61 | true 62 | CompanyName=;FileDescription=$(MSBuildProjectName);FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=$(MSBuildProjectName);ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName) 63 | 1033 64 | 65 | 66 | 0 67 | RELEASE;$(DCC_Define) 68 | false 69 | 0 70 | 71 | 72 | P4D Data Sciences - RemBG 73 | true 74 | CompanyName=;FileDescription=$(MSBuildProjectName);FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=$(MSBuildProjectName);ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName) 75 | 1033 76 | 77 | 78 | DEBUG;$(DCC_Define) 79 | true 80 | true 81 | false 82 | true 83 | 84 | 85 | true 86 | CompanyName=;FileDescription=$(MSBuildProjectName);FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=$(MSBuildProjectName);ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName) 87 | 1033 88 | 89 | 90 | 91 | MainSource 92 | 93 | 94 | 95 | 96 | 97 | BITMAP 98 | TRemBG128 99 | 100 | 101 | BITMAP 102 | TRemBG16 103 | 104 | 105 | BITMAP 106 | TRemBG 107 | 108 | 109 | BITMAP 110 | TRemBG32 111 | 112 | 113 | RCDATA 114 | TRemBG_PNG 115 | 116 | 117 | RCDATA 118 | TRemBG128_PNG 119 | 120 | 121 | RCDATA 122 | TRemBG16_PNG 123 | 124 | 125 | RCDATA 126 | TRemBG32_PNG 127 | 128 | 129 | Base 130 | 131 | 132 | Cfg_1 133 | Base 134 | 135 | 136 | Cfg_2 137 | Base 138 | 139 | 140 | 141 | Delphi.Personality.12 142 | Package 143 | 144 | 145 | 146 | dclP4DRemBG.dpk 147 | 148 | 149 | 150 | 151 | False 152 | False 153 | False 154 | False 155 | False 156 | True 157 | False 158 | False 159 | False 160 | False 161 | 162 | 163 | 12 164 | 165 | 166 | 167 | 168 | 169 | -------------------------------------------------------------------------------- /src/RemBG/dclP4DRemBG.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embarcadero/PythonPackages4Delphi/8a5e21c6323f5aa53c4c1fa07175c11107d08e4b/src/RemBG/dclP4DRemBG.res --------------------------------------------------------------------------------