TILMedia Suite
==============
TILMedia Suite provides methods of calculation, which express the thermophysical properties of
incompressible liquids, ideal gases and real fluids containing a vapor liquid equilibrium (VLEFluid). Methods
for calculating the properties of mixtures are also included. TILMedia provides a comprehensive
range of different substances, including our own highly efficient and accurate real-time substance
property implementations.
(https://www.tlk-thermo.com/en/software/tilmedia-suite)
Example for a gas::
>>> import tilmedia
>>> gas = tilmedia.Gas('VDI4670.DryAir')
>>> gas.set_pTxi(1e5, 300)
>>> round(float(gas.d), 6)
1.161034
>>> gas.set_Txi(300)
>>> round(float(gas.cp), 6)
1004.990552
>>> gas.set(p=1e5, T=300)
>>> round(float(gas.d), 6)
1.161034
>>> gas.set_Txi([300, 350, 400])
>>> gas.cp.round(6)
array([1004.990552, 1008.342171, 1013.626381])
Example for a liquid::
>>> import tilmedia
>>> liquid = tilmedia.Liquid('TILMedia.Water')
>>> liquid.set_Txi(300)
>>> round(float(liquid.d), 6)
996.425346
>>> liquid.set_pTxi(1e5, 300)
>>> round(float(liquid.s), 6)
394.977757
>>> liquid.set(p=liquid.p, T=300)
>>> round(float(liquid.s), 6)
394.977757
>>> liquid.set_Txi([300, 310, 320])
>>> liquid.cp.round(6)
array([4180.308149, 4177.312533, 4177.805418])
Example for a VLEFluid::
>>> import tilmedia
>>> vleFluid = tilmedia.VLEFluid('TILMedia.R134a')
>>> vleFluid.set_pTxi(1e5, 300)
>>> round(float(vleFluid.d), 6)
4.173095
>>> round(float(vleFluid.vle.T_l), 6)
246.788812
>>> vleFluid.set_pxi(2e5)
>>> round(float(vleFluid.vle.T_l), 6)
263.073728
>>> vleFluid.set(T=vleFluid.sat.T_dew)
>>> round(float(vleFluid.sat.p_dew), 1)
200000.0
>>> vleFluid.set_phxi(1e5, [350e3, 360e3, 370e3])
>>> vleFluid.d.round(6)
array([6.106462, 5.79392 , 5.511813])
Raw data
{
"_id": null,
"home_page": "https://www.tlk-thermo.com/en/software/tilmedia-suite",
"name": "tilmedia",
"maintainer": null,
"docs_url": null,
"requires_python": null,
"maintainer_email": null,
"keywords": "thermophysical thermodynamic fluid properties gas liquid mixtures substances media",
"author": "TLK Thermo GmbH",
"author_email": "tilmedia@tlk-thermo.com",
"download_url": null,
"platform": null,
"description": "TILMedia Suite\n==============\n\nTILMedia Suite provides methods of calculation, which express the thermophysical properties of\nincompressible liquids, ideal gases and real fluids containing a vapor liquid equilibrium (VLEFluid). Methods\nfor calculating the properties of mixtures are also included. TILMedia provides a comprehensive\nrange of different substances, including our own highly efficient and accurate real-time substance\nproperty implementations.\n\n(https://www.tlk-thermo.com/en/software/tilmedia-suite)\n\nExample for a gas::\n\n >>> import tilmedia\n >>> gas = tilmedia.Gas('VDI4670.DryAir')\n >>> gas.set_pTxi(1e5, 300)\n >>> round(float(gas.d), 6)\n 1.161034\n >>> gas.set_Txi(300)\n >>> round(float(gas.cp), 6)\n 1004.990552\n >>> gas.set(p=1e5, T=300)\n >>> round(float(gas.d), 6)\n 1.161034\n >>> gas.set_Txi([300, 350, 400])\n >>> gas.cp.round(6)\n array([1004.990552, 1008.342171, 1013.626381])\n\nExample for a liquid::\n\n >>> import tilmedia\n >>> liquid = tilmedia.Liquid('TILMedia.Water')\n >>> liquid.set_Txi(300)\n >>> round(float(liquid.d), 6)\n 996.425346\n >>> liquid.set_pTxi(1e5, 300)\n >>> round(float(liquid.s), 6)\n 394.977757\n >>> liquid.set(p=liquid.p, T=300)\n >>> round(float(liquid.s), 6)\n 394.977757\n >>> liquid.set_Txi([300, 310, 320])\n >>> liquid.cp.round(6)\n array([4180.308149, 4177.312533, 4177.805418])\n\nExample for a VLEFluid::\n\n >>> import tilmedia\n >>> vleFluid = tilmedia.VLEFluid('TILMedia.R134a')\n >>> vleFluid.set_pTxi(1e5, 300)\n >>> round(float(vleFluid.d), 6)\n 4.173095\n >>> round(float(vleFluid.vle.T_l), 6)\n 246.788812\n >>> vleFluid.set_pxi(2e5)\n >>> round(float(vleFluid.vle.T_l), 6)\n 263.073728\n >>> vleFluid.set(T=vleFluid.sat.T_dew)\n >>> round(float(vleFluid.sat.p_dew), 1)\n 200000.0\n >>> vleFluid.set_phxi(1e5, [350e3, 360e3, 370e3])\n >>> vleFluid.d.round(6)\n array([6.106462, 5.79392 , 5.511813])\n",
"bugtrack_url": null,
"license": "BSD",
"summary": "Substance properties for incompressible liquids, ideal gases, real fluids and mixtures",
"version": "2025.1",
"project_urls": {
"Homepage": "https://www.tlk-thermo.com/en/software/tilmedia-suite"
},
"split_keywords": [
"thermophysical",
"thermodynamic",
"fluid",
"properties",
"gas",
"liquid",
"mixtures",
"substances",
"media"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "dede7a36ab91cda4cf335d38b2dc825fdd08e7a735785f2b66688af3eaa7c48e",
"md5": "60c9f041123cc4470c8fb1c126c51dde",
"sha256": "3e9d9414d6d795dacf72459410927f1bfe89ff69195576ae7a680263cc093844"
},
"downloads": -1,
"filename": "tilmedia-2025.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "60c9f041123cc4470c8fb1c126c51dde",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 11533775,
"upload_time": "2025-05-16T13:35:58",
"upload_time_iso_8601": "2025-05-16T13:35:58.292451Z",
"url": "https://files.pythonhosted.org/packages/de/de/7a36ab91cda4cf335d38b2dc825fdd08e7a735785f2b66688af3eaa7c48e/tilmedia-2025.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c1297e3d7bb48c92732c1ce4856c20db9da28c5362d9066822bdab95bd3f6999",
"md5": "381fa7d5c734afa408dd5a2d90f155a9",
"sha256": "2c429b23cd4f067ba02971535e5d4592c8ce6619db9145a4f33c3623a88ae7f8"
},
"downloads": -1,
"filename": "tilmedia-2025.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "381fa7d5c734afa408dd5a2d90f155a9",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 10974589,
"upload_time": "2025-05-16T13:36:00",
"upload_time_iso_8601": "2025-05-16T13:36:00.599604Z",
"url": "https://files.pythonhosted.org/packages/c1/29/7e3d7bb48c92732c1ce4856c20db9da28c5362d9066822bdab95bd3f6999/tilmedia-2025.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7e2d36f6d6a3582f65c85d7f92d3e4f77d1c344c8b2d63da92842536fc795026",
"md5": "e91153101b0c13b2198044eb3520e364",
"sha256": "1255b9728e0b311c5a7450564867cdb7d1280b5faf8bc5a583c2fe3757dbd153"
},
"downloads": -1,
"filename": "tilmedia-2025.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "e91153101b0c13b2198044eb3520e364",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 11788856,
"upload_time": "2025-05-16T13:36:03",
"upload_time_iso_8601": "2025-05-16T13:36:03.271236Z",
"url": "https://files.pythonhosted.org/packages/7e/2d/36f6d6a3582f65c85d7f92d3e4f77d1c344c8b2d63da92842536fc795026/tilmedia-2025.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d348db3363b66db7e4cadc01c68b45dd6f322a0adac0196dd551d5d8f4ec27c9",
"md5": "7e1ffc789e8d55e0f6d0d5f4496a99fa",
"sha256": "f8597ec1f41d06f016b96c043ff3c4bc95027bb3ae8ef64cd429408fd2e09ec1"
},
"downloads": -1,
"filename": "tilmedia-2025.1-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "7e1ffc789e8d55e0f6d0d5f4496a99fa",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 2882522,
"upload_time": "2025-05-16T13:36:05",
"upload_time_iso_8601": "2025-05-16T13:36:05.474739Z",
"url": "https://files.pythonhosted.org/packages/d3/48/db3363b66db7e4cadc01c68b45dd6f322a0adac0196dd551d5d8f4ec27c9/tilmedia-2025.1-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b6cb2e8105aac503cbd23a5f136fbf515a4d95443f6fa3c0da055b2bc2ad58e4",
"md5": "498fb0e2585db7af417c42fbdd27f46e",
"sha256": "329fe00cbc2d03f19a6476c7dc708ee6fff27b9064d930efafaca2fd2f67a8cf"
},
"downloads": -1,
"filename": "tilmedia-2025.1-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "498fb0e2585db7af417c42fbdd27f46e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 3021342,
"upload_time": "2025-05-16T13:36:07",
"upload_time_iso_8601": "2025-05-16T13:36:07.624793Z",
"url": "https://files.pythonhosted.org/packages/b6/cb/2e8105aac503cbd23a5f136fbf515a4d95443f6fa3c0da055b2bc2ad58e4/tilmedia-2025.1-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a1c7d843090e7804ee8bcdf8503054c176a8957640a4c929ff69bd38d5cf6b31",
"md5": "d3520bc54a6c4cdb3bbbcd75b2d3dcc2",
"sha256": "b3c17b0e54901c4791379e77f92b8896b1710603b1d3a7e1c5f3cd976af3a943"
},
"downloads": -1,
"filename": "tilmedia-2025.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "d3520bc54a6c4cdb3bbbcd75b2d3dcc2",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 11622892,
"upload_time": "2025-05-16T13:36:09",
"upload_time_iso_8601": "2025-05-16T13:36:09.757984Z",
"url": "https://files.pythonhosted.org/packages/a1/c7/d843090e7804ee8bcdf8503054c176a8957640a4c929ff69bd38d5cf6b31/tilmedia-2025.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b18711ed9a2399e3bd6deeeefc76d307445253963c0eae8996f8e8b3bc6fe72c",
"md5": "dffb04838cc4f9c3e413563b9586c193",
"sha256": "943a0cfcc6c335beb54f5cf9dec7bb2950ee94aa605dc5806f5e0058c1c6c435"
},
"downloads": -1,
"filename": "tilmedia-2025.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "dffb04838cc4f9c3e413563b9586c193",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 11059286,
"upload_time": "2025-05-16T13:36:12",
"upload_time_iso_8601": "2025-05-16T13:36:12.470291Z",
"url": "https://files.pythonhosted.org/packages/b1/87/11ed9a2399e3bd6deeeefc76d307445253963c0eae8996f8e8b3bc6fe72c/tilmedia-2025.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6f521ca9ebbde3b8406588864f4a2d72e71918b0e675607d7517ef038419ab5f",
"md5": "309febb1ed9b17a68270a73355bbaedd",
"sha256": "2ca55fed1afd1daf19acba74e8f1157cf04a1773b9cbf4226761929409d323fc"
},
"downloads": -1,
"filename": "tilmedia-2025.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "309febb1ed9b17a68270a73355bbaedd",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 11877225,
"upload_time": "2025-05-16T13:36:15",
"upload_time_iso_8601": "2025-05-16T13:36:15.270571Z",
"url": "https://files.pythonhosted.org/packages/6f/52/1ca9ebbde3b8406588864f4a2d72e71918b0e675607d7517ef038419ab5f/tilmedia-2025.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5b79ce5ba493857660d12d098979cfd0791e96304989799076ae0afb54cf4bd8",
"md5": "0251b1546467f01e61df633221393eda",
"sha256": "acd78608edc89babc9cd06e9e20b53a206d04730340153fdc5f58fe2a7ac27a1"
},
"downloads": -1,
"filename": "tilmedia-2025.1-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "0251b1546467f01e61df633221393eda",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 2882719,
"upload_time": "2025-05-16T13:36:17",
"upload_time_iso_8601": "2025-05-16T13:36:17.490417Z",
"url": "https://files.pythonhosted.org/packages/5b/79/ce5ba493857660d12d098979cfd0791e96304989799076ae0afb54cf4bd8/tilmedia-2025.1-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b5fc6a0c5b181942de9b98745db865660a6573a26c766c90900062a0efeb2cfb",
"md5": "e1e271212e969f8a6b73ecc192b82bd6",
"sha256": "9baaed207512d295dfb17730c5cdb5311b84461401ed89d0cba8f7c6cefcaeb4"
},
"downloads": -1,
"filename": "tilmedia-2025.1-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "e1e271212e969f8a6b73ecc192b82bd6",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 3021536,
"upload_time": "2025-05-16T13:36:18",
"upload_time_iso_8601": "2025-05-16T13:36:18.855928Z",
"url": "https://files.pythonhosted.org/packages/b5/fc/6a0c5b181942de9b98745db865660a6573a26c766c90900062a0efeb2cfb/tilmedia-2025.1-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a6925dbd81f9255c56b3b3302469bb7dc14e672699be40c7efe60158d2db31b8",
"md5": "faae5465133c868af9ab39d451447add",
"sha256": "2e94aa9a652d0a6e05f3ff23aa60886881f6ba46082628a7233dd4b706a561a9"
},
"downloads": -1,
"filename": "tilmedia-2025.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "faae5465133c868af9ab39d451447add",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 11594665,
"upload_time": "2025-05-16T13:36:20",
"upload_time_iso_8601": "2025-05-16T13:36:20.946725Z",
"url": "https://files.pythonhosted.org/packages/a6/92/5dbd81f9255c56b3b3302469bb7dc14e672699be40c7efe60158d2db31b8/tilmedia-2025.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1e8ce241bbfea179dce400d6fd819dca53d8b361295e2fbdac4c65e3b32f8c21",
"md5": "8013e7153edff13f6609f712b38f2616",
"sha256": "8f65f3fe30fd83e52c39ddc78ba29c37a608ae98284c124a31e38e546d945950"
},
"downloads": -1,
"filename": "tilmedia-2025.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "8013e7153edff13f6609f712b38f2616",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 11028741,
"upload_time": "2025-05-16T13:36:23",
"upload_time_iso_8601": "2025-05-16T13:36:23.508685Z",
"url": "https://files.pythonhosted.org/packages/1e/8c/e241bbfea179dce400d6fd819dca53d8b361295e2fbdac4c65e3b32f8c21/tilmedia-2025.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bc297827dbefc4449e3b65c13489b7458d4df7e012586b9acfa885739d8aebf1",
"md5": "8189dca35db7ee8b4bc496a0ea6ff23b",
"sha256": "0f11940233708109dc98bc908438febafc556cc93262a819b8b88fba8356c15d"
},
"downloads": -1,
"filename": "tilmedia-2025.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "8189dca35db7ee8b4bc496a0ea6ff23b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 11850736,
"upload_time": "2025-05-16T13:36:26",
"upload_time_iso_8601": "2025-05-16T13:36:26.052991Z",
"url": "https://files.pythonhosted.org/packages/bc/29/7827dbefc4449e3b65c13489b7458d4df7e012586b9acfa885739d8aebf1/tilmedia-2025.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3e2799b89841935d6cf060eb815e0e62c0ab1309f49e46acffb2456a3b3051a2",
"md5": "af86a179528db8d4c8d7c2fbd590a209",
"sha256": "98814afd937a7f9cd8407a4505f985ebf96f80f9b9fb9dd599baba8f546b8ebb"
},
"downloads": -1,
"filename": "tilmedia-2025.1-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "af86a179528db8d4c8d7c2fbd590a209",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 2879486,
"upload_time": "2025-05-16T13:36:28",
"upload_time_iso_8601": "2025-05-16T13:36:28.327154Z",
"url": "https://files.pythonhosted.org/packages/3e/27/99b89841935d6cf060eb815e0e62c0ab1309f49e46acffb2456a3b3051a2/tilmedia-2025.1-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8ffe1679642d00626b81f2d38f77b348fb013534e275bae1df0e65190651fffb",
"md5": "2bdbb82df1de8d3f042746f536331a71",
"sha256": "4a16588dee5a57ce9551d34f529e91708de7a8a3d75454567b9ca5b911134951"
},
"downloads": -1,
"filename": "tilmedia-2025.1-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "2bdbb82df1de8d3f042746f536331a71",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 3020129,
"upload_time": "2025-05-16T13:36:29",
"upload_time_iso_8601": "2025-05-16T13:36:29.640614Z",
"url": "https://files.pythonhosted.org/packages/8f/fe/1679642d00626b81f2d38f77b348fb013534e275bae1df0e65190651fffb/tilmedia-2025.1-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2bab63e317d435f3029736e7d75a7482167368ceca2f231d0230e976460f4c31",
"md5": "fd269b4a886be63f02de88e0e130c3bb",
"sha256": "6f86a7160eb3094c01b1e5763a78ac1e896d5e924977c44881837ef501173540"
},
"downloads": -1,
"filename": "tilmedia-2025.1-cp37-cp37m-win32.whl",
"has_sig": false,
"md5_digest": "fd269b4a886be63f02de88e0e130c3bb",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 2878990,
"upload_time": "2025-05-16T13:36:31",
"upload_time_iso_8601": "2025-05-16T13:36:31.570945Z",
"url": "https://files.pythonhosted.org/packages/2b/ab/63e317d435f3029736e7d75a7482167368ceca2f231d0230e976460f4c31/tilmedia-2025.1-cp37-cp37m-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ddf232d3dd7eedf309b758932f30986773be19ce17f16b18d48699fe534ba5ac",
"md5": "67b4fb726ba749df1ff8e2fd63140482",
"sha256": "46839c76f74a7bfa0684649e0374870049b0d4e023edf8043f84610471a09011"
},
"downloads": -1,
"filename": "tilmedia-2025.1-cp37-cp37m-win_amd64.whl",
"has_sig": false,
"md5_digest": "67b4fb726ba749df1ff8e2fd63140482",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 3018921,
"upload_time": "2025-05-16T13:36:33",
"upload_time_iso_8601": "2025-05-16T13:36:33.272590Z",
"url": "https://files.pythonhosted.org/packages/dd/f2/32d3dd7eedf309b758932f30986773be19ce17f16b18d48699fe534ba5ac/tilmedia-2025.1-cp37-cp37m-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ea537262cea92c62084feb08578c55cc02e7e32a951d7f784818b7c9c83a400c",
"md5": "302821a376cb358232e73e063842cc45",
"sha256": "91ec6817bb6499822746b6b4aea616c0361613c7d58f0e64dded1da99c865809"
},
"downloads": -1,
"filename": "tilmedia-2025.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "302821a376cb358232e73e063842cc45",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 11557100,
"upload_time": "2025-05-16T13:36:35",
"upload_time_iso_8601": "2025-05-16T13:36:35.343253Z",
"url": "https://files.pythonhosted.org/packages/ea/53/7262cea92c62084feb08578c55cc02e7e32a951d7f784818b7c9c83a400c/tilmedia-2025.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e678b441c32417dd9964adc51e3b7792e06825ecdf787698f16eb4dd256e8cd0",
"md5": "ae4d517c100b3700da862d0429117e2d",
"sha256": "ff4a83fcdbe8324931e88a06ac7615360e1d208ad0aa951bb6885d8833a01a62"
},
"downloads": -1,
"filename": "tilmedia-2025.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "ae4d517c100b3700da862d0429117e2d",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 10995891,
"upload_time": "2025-05-16T13:36:37",
"upload_time_iso_8601": "2025-05-16T13:36:37.867831Z",
"url": "https://files.pythonhosted.org/packages/e6/78/b441c32417dd9964adc51e3b7792e06825ecdf787698f16eb4dd256e8cd0/tilmedia-2025.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2e58056f453caaa5bf4ade09e21f5ce76a5bb4b5faddab17006d785a350af161",
"md5": "e3fac3f04b30cbf226d30e286944c633",
"sha256": "33348b70701c257449963985ad528a6bc7d9b672367123e1151fdc8db6970d14"
},
"downloads": -1,
"filename": "tilmedia-2025.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "e3fac3f04b30cbf226d30e286944c633",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 11811311,
"upload_time": "2025-05-16T13:36:40",
"upload_time_iso_8601": "2025-05-16T13:36:40.099849Z",
"url": "https://files.pythonhosted.org/packages/2e/58/056f453caaa5bf4ade09e21f5ce76a5bb4b5faddab17006d785a350af161/tilmedia-2025.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "897007a6dba6e22debe3a0dc3eb54539da10a138dfda458e09873fc1f70012eb",
"md5": "29c473a2910e203adb1bab456a35af00",
"sha256": "fb41f2b5909bf02c7d7062d635dc0bc30c019c244306c0d57c367d7c0348ff77"
},
"downloads": -1,
"filename": "tilmedia-2025.1-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "29c473a2910e203adb1bab456a35af00",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 2884231,
"upload_time": "2025-05-16T13:36:42",
"upload_time_iso_8601": "2025-05-16T13:36:42.329495Z",
"url": "https://files.pythonhosted.org/packages/89/70/07a6dba6e22debe3a0dc3eb54539da10a138dfda458e09873fc1f70012eb/tilmedia-2025.1-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bed799409bb59e1bd6f4d7b79672c24cec6136b0e30533b7b864be85d28abab9",
"md5": "2bf1cfb6258c1573ea9f0665f3c089f6",
"sha256": "14e8ee64a6594492aee4dae66fd552965bfeb39736de6b79773fd1778aa190d8"
},
"downloads": -1,
"filename": "tilmedia-2025.1-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "2bf1cfb6258c1573ea9f0665f3c089f6",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 3022406,
"upload_time": "2025-05-16T13:36:43",
"upload_time_iso_8601": "2025-05-16T13:36:43.716976Z",
"url": "https://files.pythonhosted.org/packages/be/d7/99409bb59e1bd6f4d7b79672c24cec6136b0e30533b7b864be85d28abab9/tilmedia-2025.1-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "84d46acd7e7bc26fc6d33eab6c14b0ec7abc9f8eb3389d0a836654297355c09b",
"md5": "fd7db664fbc2e8c2c126d02df6f24b41",
"sha256": "2bc164f768602739a5858333c379f11ecd5b275da4c3cfd577e87a4ec65ea534"
},
"downloads": -1,
"filename": "tilmedia-2025.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "fd7db664fbc2e8c2c126d02df6f24b41",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 11532761,
"upload_time": "2025-05-16T13:36:45",
"upload_time_iso_8601": "2025-05-16T13:36:45.401221Z",
"url": "https://files.pythonhosted.org/packages/84/d4/6acd7e7bc26fc6d33eab6c14b0ec7abc9f8eb3389d0a836654297355c09b/tilmedia-2025.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "46775a6d0a3eed6e1fedb008fd35faa318b33c70bb6f7e4ad945387719f67255",
"md5": "376ffae784ceb22f84f538c424fa4cfc",
"sha256": "05444fd1022a9c8ab4492394f0de1507434f7bbc8c74ca73804f24fe78de33d4"
},
"downloads": -1,
"filename": "tilmedia-2025.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "376ffae784ceb22f84f538c424fa4cfc",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 10974158,
"upload_time": "2025-05-16T13:36:47",
"upload_time_iso_8601": "2025-05-16T13:36:47.485878Z",
"url": "https://files.pythonhosted.org/packages/46/77/5a6d0a3eed6e1fedb008fd35faa318b33c70bb6f7e4ad945387719f67255/tilmedia-2025.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7d79aa681125d828b11c6111375c9d86c9c9a991fea271e63bf6c009012803a9",
"md5": "8edbb218014369a3e0b631126ff456bd",
"sha256": "d4cc0181079bf509e01483f963a1fe73a3fdfdcf871aa65097857704eee7e3a9"
},
"downloads": -1,
"filename": "tilmedia-2025.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "8edbb218014369a3e0b631126ff456bd",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 11792432,
"upload_time": "2025-05-16T13:36:49",
"upload_time_iso_8601": "2025-05-16T13:36:49.545836Z",
"url": "https://files.pythonhosted.org/packages/7d/79/aa681125d828b11c6111375c9d86c9c9a991fea271e63bf6c009012803a9/tilmedia-2025.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f8f645b05a51c330546933a403a64e65707722e5f2efa4d467ffef2ad4c75718",
"md5": "539ab7e49398cb26b4e2e56e237c0114",
"sha256": "8cbc62ce6bdae61197a2e686ebf204f78c513de9a3b38faa35825bb743a5502c"
},
"downloads": -1,
"filename": "tilmedia-2025.1-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "539ab7e49398cb26b4e2e56e237c0114",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 2882911,
"upload_time": "2025-05-16T13:36:51",
"upload_time_iso_8601": "2025-05-16T13:36:51.358498Z",
"url": "https://files.pythonhosted.org/packages/f8/f6/45b05a51c330546933a403a64e65707722e5f2efa4d467ffef2ad4c75718/tilmedia-2025.1-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0efde4b138020a457cef63fb50284dcb8d67a3f80200af3a7ff19f43867731c4",
"md5": "cea36003bf6fcf6e88dfe766de640e21",
"sha256": "4b4f7f23fd3a780f1716a316dbf5aa9de56e95d7a4b03f7aca44bcac8693d7ee"
},
"downloads": -1,
"filename": "tilmedia-2025.1-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "cea36003bf6fcf6e88dfe766de640e21",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 3021462,
"upload_time": "2025-05-16T13:36:53",
"upload_time_iso_8601": "2025-05-16T13:36:53.353280Z",
"url": "https://files.pythonhosted.org/packages/0e/fd/e4b138020a457cef63fb50284dcb8d67a3f80200af3a7ff19f43867731c4/tilmedia-2025.1-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-05-16 13:35:58",
"github": false,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"lcname": "tilmedia"
}