pictriever


Namepictriever JSON
Version 0.1.1 PyPI version JSON
download
home_pagehttps://github.com/kelechi-c/pictriever
SummaryPython library for image scraping, from popular image gallery sites.
upload_time2024-06-30 21:28:38
maintainerNone
docs_urlNone
authortensorkelechi
requires_python<4.0,>=3.6
licenseapache 2.0
keywords image datasets scraping
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ## pictriever (*still in development..*)
##### An image scraping scraping library in python...
##### for efficient and flexible mass download of images, dataset creation etc

### usage guide
pictriever can be used for downloading a wide range images in few lines of Python, from popular image sites like Bing images, Pexels, Google, etc.

Install the library with `pip install pictriever`


For images from Pexels(You could also use this template for others)

```python
from pictriever.image_scraper import Pexelscraper
# sample code for downlaoding images of clouds
imscraper = Pexelscraper(search_term='clouds', min_count=10, max_count=100) # start scraper instance
image_links = imscraper.get_imlinks() # to get all the image links; set get_all_links=True
imscraper.download_all_images(link_list=image_links, output_folder='clouds', verbose=False) # set verbose to True if you want progress printing

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/kelechi-c/pictriever",
    "name": "pictriever",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<4.0,>=3.6",
    "maintainer_email": null,
    "keywords": "image, datasets, scraping",
    "author": "tensorkelechi",
    "author_email": "kelechichibuzo7@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/83/02/02ad9fba5079f1d8a8dc69f200306c1727a792f0d8beb7475c672bc2ee81/pictriever-0.1.1.tar.gz",
    "platform": null,
    "description": "## pictriever (*still in development..*)\n##### An image scraping scraping library in python...\n##### for efficient and flexible mass download of images, dataset creation etc\n\n### usage guide\npictriever can be used for downloading a wide range images in few lines of Python, from popular image sites like Bing images, Pexels, Google, etc.\n\nInstall the library with `pip install pictriever`\n\n\nFor images from Pexels(You could also use this template for others)\n\n```python\nfrom pictriever.image_scraper import Pexelscraper\n# sample code for downlaoding images of clouds\nimscraper = Pexelscraper(search_term='clouds', min_count=10, max_count=100) # start scraper instance\nimage_links = imscraper.get_imlinks() # to get all the image links; set get_all_links=True\nimscraper.download_all_images(link_list=image_links, output_folder='clouds', verbose=False) # set verbose to True if you want progress printing\n",
    "bugtrack_url": null,
    "license": "apache 2.0",
    "summary": "Python library for image scraping, from popular image gallery sites.",
    "version": "0.1.1",
    "project_urls": {
        "Homepage": "https://github.com/kelechi-c/pictriever",
        "Repository": "https://github.com/kelechi-c/pictriever"
    },
    "split_keywords": [
        "image",
        " datasets",
        " scraping"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "55922dc5697ca698a8b8245eafc8556b693d310deb11543ed464fd9f8adc8fe9",
                "md5": "69e84a2dd3d3751bf99f11b5f4831dc4",
                "sha256": "28c60e03d8f161bfd1408d047eb890296ee62c9f8b9ff0f564a97490e17542cf"
            },
            "downloads": -1,
            "filename": "pictriever-0.1.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "69e84a2dd3d3751bf99f11b5f4831dc4",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4.0,>=3.6",
            "size": 3576,
            "upload_time": "2024-06-30T21:28:36",
            "upload_time_iso_8601": "2024-06-30T21:28:36.473066Z",
            "url": "https://files.pythonhosted.org/packages/55/92/2dc5697ca698a8b8245eafc8556b693d310deb11543ed464fd9f8adc8fe9/pictriever-0.1.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "830202ad9fba5079f1d8a8dc69f200306c1727a792f0d8beb7475c672bc2ee81",
                "md5": "3f3cf562368d8261c8e196c98d40743d",
                "sha256": "f3bfe04dc2c91fcb7653623db0668728c74f164021e85ea1599af628c90d9fe0"
            },
            "downloads": -1,
            "filename": "pictriever-0.1.1.tar.gz",
            "has_sig": false,
            "md5_digest": "3f3cf562368d8261c8e196c98d40743d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4.0,>=3.6",
            "size": 3180,
            "upload_time": "2024-06-30T21:28:38",
            "upload_time_iso_8601": "2024-06-30T21:28:38.141189Z",
            "url": "https://files.pythonhosted.org/packages/83/02/02ad9fba5079f1d8a8dc69f200306c1727a792f0d8beb7475c672bc2ee81/pictriever-0.1.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-06-30 21:28:38",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "kelechi-c",
    "github_project": "pictriever",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "pictriever"
}
        
Elapsed time: 0.59956s