bilde


Namebilde JSON
Version 0.2.2 PyPI version JSON
download
home_pagehttps://github.com/anguelos/bilde
SummaryA python version of the Bilde library
upload_time2024-11-04 18:11:40
maintainerNone
docs_urlNone
authorAnguelos Nicolaou
requires_python>=3.6
licenseNone
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # bilde

## (B)uffer (I)maging (L)ibrary, (D)irty and (E)xtendable

A library for writing procedural computer vision code in C++

* Header only
No linking complications!
Just copy it in your source tree.

* High C++ template use

* Define algorithms once, use them directly on several back-ends.
With a mechanism based on implicit template instantiation, an algorithm is defined as a single function, and will seemlesly run several image containers such as cv::Mat, IplImage, octave arrays, numpy arrays.

## Python module
```python
import pybilde
import skimage
img = skimage.data.coins()
histogram = pybilde.lbp_features(img, 8, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12])
```

## Demos:

* SRS-LBP feature extractor:

Cross compiling for win32 (static build) and running in debian based linux.

Install dependencies:
```bash
sudo apt-get install autoconf automake autopoint bash bison bzip2 flex gettext git g++ gperf intltool libffi-dev libgdk-pixbuf2.0-dev libtool-bin libltdl-dev libssl-dev libxml-parser-perl make openssl p7zip-full patch perl pkg-config python ruby scons sed unzip wget xz-utils g++-multilib libc6-dev-i386
export MXE_ROOT="$HOME/tools/mxe"
mkdir -p "$HOME/tools"
cd "$HOME/tools"
git clone https://github.com/mxe/mxe.git
cd mxe
make opencv boost
```
Compile:
```bash
./compile_static_mxe.sh ./src/lbpFeatures2.cc /tmp/lbp_features2.exe
```

Get help:
```bash
wine /tmp/lbp_features2.exe
```

Run:
```bash
wine /tmp/lbp_features2.exe -i ./sample_data/PICT2466.png > /tmp/features.csv
```

Compiling in ubuntu:
```bash
sudo apt-get install libopencv-dev libhighgui-dev libprotobuf-dev libwebp-dev #  depending on your system you might need other packages
cd src
make lbpFeatures2
```

## Python extention (pybilde)
* Install build dependencies
```bash
pip install cibuildwheel
```

Build bdist without a CI
```bash
CIBW_BUILD="cp313t-manylinux_x86_64 cp313t-manylinux_x86_64 cp312-manylinux_x86_64 cp311-manylinux_x86_64 cp310-manylinux_x86_64 cp39-manylinux_x86_64 cp38-manylinux_x86_64 cp37-manylinux_x86_64 cp36-manylinux_x86_64" CIBW_BEFORE_BUILD="yum install -y boost-devel" cibuildwheel --platform linux --output-dir wheelhouse
CIBW_SKIP="pp310-manylinux_i686 pp39-manylinux_i686 pp38-manylinux_i686 pp37-manylinux_i686 pp36-manylinux_i686 pp310-manylinux_x86_64  pp39-manylinux_x86_64 pp38-manylinux_x86_64  pp37-manylinux_x86_64 pp36-manylinux_x86_64" CIBW_BEFORE_BUILD="yum install -y boost-devel" cibuildwheel --platform linux --output-dir wheelhouse
```

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/anguelos/bilde",
    "name": "bilde",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": null,
    "keywords": null,
    "author": "Anguelos Nicolaou",
    "author_email": "anguelos.nicolaou@gmail.com",
    "download_url": null,
    "platform": null,
    "description": "# bilde\n\n## (B)uffer (I)maging (L)ibrary, (D)irty and (E)xtendable\n\nA library for writing procedural computer vision code in C++\n\n* Header only\nNo linking complications!\nJust copy it in your source tree.\n\n* High C++ template use\n\n* Define algorithms once, use them directly on several back-ends.\nWith a mechanism based on implicit template instantiation, an algorithm is defined as a single function, and will seemlesly run several image containers such as cv::Mat, IplImage, octave arrays, numpy arrays.\n\n## Python module\n```python\nimport pybilde\nimport skimage\nimg = skimage.data.coins()\nhistogram = pybilde.lbp_features(img, 8, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12])\n```\n\n## Demos:\n\n* SRS-LBP feature extractor:\n\nCross compiling for win32 (static build) and running in debian based linux.\n\nInstall dependencies:\n```bash\nsudo apt-get install autoconf automake autopoint bash bison bzip2 flex gettext git g++ gperf intltool libffi-dev libgdk-pixbuf2.0-dev libtool-bin libltdl-dev libssl-dev libxml-parser-perl make openssl p7zip-full patch perl pkg-config python ruby scons sed unzip wget xz-utils g++-multilib libc6-dev-i386\nexport MXE_ROOT=\"$HOME/tools/mxe\"\nmkdir -p \"$HOME/tools\"\ncd \"$HOME/tools\"\ngit clone https://github.com/mxe/mxe.git\ncd mxe\nmake opencv boost\n```\nCompile:\n```bash\n./compile_static_mxe.sh ./src/lbpFeatures2.cc /tmp/lbp_features2.exe\n```\n\nGet help:\n```bash\nwine /tmp/lbp_features2.exe\n```\n\nRun:\n```bash\nwine /tmp/lbp_features2.exe -i ./sample_data/PICT2466.png > /tmp/features.csv\n```\n\nCompiling in ubuntu:\n```bash\nsudo apt-get install libopencv-dev libhighgui-dev libprotobuf-dev libwebp-dev #  depending on your system you might need other packages\ncd src\nmake lbpFeatures2\n```\n\n## Python extention (pybilde)\n* Install build dependencies\n```bash\npip install cibuildwheel\n```\n\nBuild bdist without a CI\n```bash\nCIBW_BUILD=\"cp313t-manylinux_x86_64 cp313t-manylinux_x86_64 cp312-manylinux_x86_64 cp311-manylinux_x86_64 cp310-manylinux_x86_64 cp39-manylinux_x86_64 cp38-manylinux_x86_64 cp37-manylinux_x86_64 cp36-manylinux_x86_64\" CIBW_BEFORE_BUILD=\"yum install -y boost-devel\" cibuildwheel --platform linux --output-dir wheelhouse\nCIBW_SKIP=\"pp310-manylinux_i686 pp39-manylinux_i686 pp38-manylinux_i686 pp37-manylinux_i686 pp36-manylinux_i686 pp310-manylinux_x86_64  pp39-manylinux_x86_64 pp38-manylinux_x86_64  pp37-manylinux_x86_64 pp36-manylinux_x86_64\" CIBW_BEFORE_BUILD=\"yum install -y boost-devel\" cibuildwheel --platform linux --output-dir wheelhouse\n```\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "A python version of the Bilde library",
    "version": "0.2.2",
    "project_urls": {
        "Homepage": "https://github.com/anguelos/bilde"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "caed8ad8d6efb92eddd4cfd88eebc0d7ae04afdf105f16295655f9e9f6fd3234",
                "md5": "24aaae194c7d220c5fadc4584cd21c62",
                "sha256": "0e640a34e63770b3ec8bd187fda1e3c92ec2b78f214e5bc3eaa7082ec3eca848"
            },
            "downloads": -1,
            "filename": "bilde-0.2.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "24aaae194c7d220c5fadc4584cd21c62",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 4866150,
            "upload_time": "2024-11-04T18:11:40",
            "upload_time_iso_8601": "2024-11-04T18:11:40.997668Z",
            "url": "https://files.pythonhosted.org/packages/ca/ed/8ad8d6efb92eddd4cfd88eebc0d7ae04afdf105f16295655f9e9f6fd3234/bilde-0.2.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d477d60c337169186eb2684b507c864f46a9747bffea588f18e9896b859ccede",
                "md5": "839933846a8bb6ab3ccb21e96bb35154",
                "sha256": "6917d7f9aa81021c00ff3b1041227ce939cf1b88a119c0b7cd2a09d5e5416c9b"
            },
            "downloads": -1,
            "filename": "bilde-0.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "839933846a8bb6ab3ccb21e96bb35154",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 5122723,
            "upload_time": "2024-11-04T18:11:45",
            "upload_time_iso_8601": "2024-11-04T18:11:45.270985Z",
            "url": "https://files.pythonhosted.org/packages/d4/77/d60c337169186eb2684b507c864f46a9747bffea588f18e9896b859ccede/bilde-0.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "35c4a0a831f4b438a40fe5ba1407ffd252e7e80b00d76081bc9ce7533f3bc888",
                "md5": "a32d0b060bfdd32eb957c13934ec33ad",
                "sha256": "c5415a3a6018793ffb7db4a49f0f8c3a18162fc296b485d259c237ab264b878d"
            },
            "downloads": -1,
            "filename": "bilde-0.2.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "a32d0b060bfdd32eb957c13934ec33ad",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 4885066,
            "upload_time": "2024-11-04T18:11:49",
            "upload_time_iso_8601": "2024-11-04T18:11:49.205915Z",
            "url": "https://files.pythonhosted.org/packages/35/c4/a0a831f4b438a40fe5ba1407ffd252e7e80b00d76081bc9ce7533f3bc888/bilde-0.2.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a7a1917e3eaf341f92c244df849e07b23d512fa0a96607b831384f2ee84df4a4",
                "md5": "75ae3c6df136cc64f5cc05c639b438a7",
                "sha256": "b24cc8770776bb83d8b11a127bbfaabe07c2595c1f9376454a4f5b4b8decd564"
            },
            "downloads": -1,
            "filename": "bilde-0.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "75ae3c6df136cc64f5cc05c639b438a7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 5151007,
            "upload_time": "2024-11-04T18:11:53",
            "upload_time_iso_8601": "2024-11-04T18:11:53.579074Z",
            "url": "https://files.pythonhosted.org/packages/a7/a1/917e3eaf341f92c244df849e07b23d512fa0a96607b831384f2ee84df4a4/bilde-0.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ef4224deeadb9add44defb5d24f33e2b47a0b78d0b98cef53bf842c4bc5d71ad",
                "md5": "db2b4862d577cb3b723ce1ffef5748c2",
                "sha256": "6b604144c9491120fc6e4180a2291cf71e28a507a5d2468a552860c5c3a90d7b"
            },
            "downloads": -1,
            "filename": "bilde-0.2.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "db2b4862d577cb3b723ce1ffef5748c2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 4881714,
            "upload_time": "2024-11-04T18:11:58",
            "upload_time_iso_8601": "2024-11-04T18:11:58.143288Z",
            "url": "https://files.pythonhosted.org/packages/ef/42/24deeadb9add44defb5d24f33e2b47a0b78d0b98cef53bf842c4bc5d71ad/bilde-0.2.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "73d47a48a909bdcabb7a3cd2c185d8f9cdbbdcca264d8c9543a2ce80fc1e82a4",
                "md5": "8b0ef264a2d2dd54bb4562c7327724e9",
                "sha256": "689839cb80d972e187c6de53b6f0add1180a36fbdd22ee5b2d1e76c65c457b8a"
            },
            "downloads": -1,
            "filename": "bilde-0.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8b0ef264a2d2dd54bb4562c7327724e9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 5152941,
            "upload_time": "2024-11-04T18:12:01",
            "upload_time_iso_8601": "2024-11-04T18:12:01.889995Z",
            "url": "https://files.pythonhosted.org/packages/73/d4/7a48a909bdcabb7a3cd2c185d8f9cdbbdcca264d8c9543a2ce80fc1e82a4/bilde-0.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e36020d7eb99c0ddf2fb303cfe55b9010e1697c9c893cb0109ceaabb12975844",
                "md5": "a9e1d1f64931d6487f43b7abac88a171",
                "sha256": "4df23ff5d53da766619cfd78f3c96daf5f5871b79e74738747743e8d0b633340"
            },
            "downloads": -1,
            "filename": "bilde-0.2.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "a9e1d1f64931d6487f43b7abac88a171",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.6",
            "size": 4873039,
            "upload_time": "2024-11-04T18:12:12",
            "upload_time_iso_8601": "2024-11-04T18:12:12.112947Z",
            "url": "https://files.pythonhosted.org/packages/e3/60/20d7eb99c0ddf2fb303cfe55b9010e1697c9c893cb0109ceaabb12975844/bilde-0.2.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4d9ab11eb0480838890888f36dd8f27553caf40da61f5343a379f1421dca8c92",
                "md5": "d1881e37c351f73049bae461aaaa4e32",
                "sha256": "fca2043f9cb66c81aa39509dfaf1c53bdabcdc5aede2466944e9dc6bf6dea54a"
            },
            "downloads": -1,
            "filename": "bilde-0.2.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d1881e37c351f73049bae461aaaa4e32",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.6",
            "size": 5150957,
            "upload_time": "2024-11-04T18:12:17",
            "upload_time_iso_8601": "2024-11-04T18:12:17.156880Z",
            "url": "https://files.pythonhosted.org/packages/4d/9a/b11eb0480838890888f36dd8f27553caf40da61f5343a379f1421dca8c92/bilde-0.2.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "274ba07798d08779db4c092f4027e64ee9cbea0093b774bbc7fb1fc83c99db67",
                "md5": "75e421ba10267ab6e4d53ca35285cfe9",
                "sha256": "8e0248efdfc91c0bfd784f9fbd68880ff4da52937ab9fad6fc72989ca45e32e0"
            },
            "downloads": -1,
            "filename": "bilde-0.2.2-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "75e421ba10267ab6e4d53ca35285cfe9",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 4896163,
            "upload_time": "2024-11-04T18:12:21",
            "upload_time_iso_8601": "2024-11-04T18:12:21.410550Z",
            "url": "https://files.pythonhosted.org/packages/27/4b/a07798d08779db4c092f4027e64ee9cbea0093b774bbc7fb1fc83c99db67/bilde-0.2.2-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a006218eb28aaebdb3c8ad04646807b60005adaf415b673664e1062d67fe8f69",
                "md5": "72fd0e205f4cb66d1d54bebe0c3a68a4",
                "sha256": "5a1959e35fdbac23767df7040777f7ef0b9f9f6ff31e36246f536b8d3308de85"
            },
            "downloads": -1,
            "filename": "bilde-0.2.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "72fd0e205f4cb66d1d54bebe0c3a68a4",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 5151188,
            "upload_time": "2024-11-04T18:12:26",
            "upload_time_iso_8601": "2024-11-04T18:12:26.182323Z",
            "url": "https://files.pythonhosted.org/packages/a0/06/218eb28aaebdb3c8ad04646807b60005adaf415b673664e1062d67fe8f69/bilde-0.2.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "051e007bc7049ff774cad515bc7a6fad8ab0fcaaa33ac13b5c492fe38fac6471",
                "md5": "1952e73514a53fdcd93e49dea6400948",
                "sha256": "c6a517d01740d744fa844437957d451b65f3069055a6d841c9889c51a002561a"
            },
            "downloads": -1,
            "filename": "bilde-0.2.2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "1952e73514a53fdcd93e49dea6400948",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 4895600,
            "upload_time": "2024-11-04T18:12:30",
            "upload_time_iso_8601": "2024-11-04T18:12:30.255428Z",
            "url": "https://files.pythonhosted.org/packages/05/1e/007bc7049ff774cad515bc7a6fad8ab0fcaaa33ac13b5c492fe38fac6471/bilde-0.2.2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "205187647a2435d88b7d7b28d8fa9467ef9443328f51c70dabeb3618a58e7147",
                "md5": "f682f1484ac8a92e498510bbb3304c27",
                "sha256": "28f201490717b14585871cae94ff44f794554112aa660e821cce88887f5bdc22"
            },
            "downloads": -1,
            "filename": "bilde-0.2.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f682f1484ac8a92e498510bbb3304c27",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 5165981,
            "upload_time": "2024-11-04T18:12:33",
            "upload_time_iso_8601": "2024-11-04T18:12:33.810557Z",
            "url": "https://files.pythonhosted.org/packages/20/51/87647a2435d88b7d7b28d8fa9467ef9443328f51c70dabeb3618a58e7147/bilde-0.2.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c6c019c33b61736ef073ab9c2438bebf39cf594898668a0a41be4fa89b04010f",
                "md5": "0bdd997723905f0a53f4b7643af50ee9",
                "sha256": "26a3fc3193b63b1eb350f188ecd98b8b05d0f1f3e5bb50204614715f55dc254c"
            },
            "downloads": -1,
            "filename": "bilde-0.2.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "0bdd997723905f0a53f4b7643af50ee9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 4868052,
            "upload_time": "2024-11-04T18:12:37",
            "upload_time_iso_8601": "2024-11-04T18:12:37.748065Z",
            "url": "https://files.pythonhosted.org/packages/c6/c0/19c33b61736ef073ab9c2438bebf39cf594898668a0a41be4fa89b04010f/bilde-0.2.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4ac06c5762b0652bfc1bb6a19e59c47457e5a50cc5b8d58ac900f23d4725f8e2",
                "md5": "ec22ec9f51f30116da4864bdc6ac86fd",
                "sha256": "839a29e8ccd172d089b44958735a36fe30f626eb73d4471590e104c57f8000fd"
            },
            "downloads": -1,
            "filename": "bilde-0.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ec22ec9f51f30116da4864bdc6ac86fd",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 5136533,
            "upload_time": "2024-11-04T18:12:42",
            "upload_time_iso_8601": "2024-11-04T18:12:42.689613Z",
            "url": "https://files.pythonhosted.org/packages/4a/c0/6c5762b0652bfc1bb6a19e59c47457e5a50cc5b8d58ac900f23d4725f8e2/bilde-0.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0ed2b0467c2abcdfd054a7d42014eb3ff3eeb293ed49943c74d9e9ba90d9ae4c",
                "md5": "e9594527088f2ba264ce576284b82a58",
                "sha256": "115f3df37ee5c890632e76f98ebfe289921bf000e1c04b0211bb6f52bc8d62fb"
            },
            "downloads": -1,
            "filename": "bilde-0.2.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "e9594527088f2ba264ce576284b82a58",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 4863666,
            "upload_time": "2024-11-04T18:12:46",
            "upload_time_iso_8601": "2024-11-04T18:12:46.459896Z",
            "url": "https://files.pythonhosted.org/packages/0e/d2/b0467c2abcdfd054a7d42014eb3ff3eeb293ed49943c74d9e9ba90d9ae4c/bilde-0.2.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eb8e8e3f5fca329825449ec3c916723987d24a06522736b1831fbb2563f9b288",
                "md5": "4a9eeba9fd9fa1fc6dc4389d3dcb3bec",
                "sha256": "d5c26ca530e3294fc6b39713029aa3b664284fd0da2a870edaf51af730673691"
            },
            "downloads": -1,
            "filename": "bilde-0.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4a9eeba9fd9fa1fc6dc4389d3dcb3bec",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 5129220,
            "upload_time": "2024-11-04T18:12:50",
            "upload_time_iso_8601": "2024-11-04T18:12:50.509773Z",
            "url": "https://files.pythonhosted.org/packages/eb/8e/8e3f5fca329825449ec3c916723987d24a06522736b1831fbb2563f9b288/bilde-0.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-11-04 18:11:40",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "anguelos",
    "github_project": "bilde",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "bilde"
}
        
Elapsed time: 0.32528s