facebook-page-info-scraper


Namefacebook-page-info-scraper JSON
Version 1.1.2 PyPI version JSON
download
home_pagehttps://github.com/wael-sudo2/facebook-page-info-scraper
SummaryA Python package capable of crawling Facebook page information.
upload_time2024-01-26 14:01:06
maintainer
docs_urlNone
authorWael Hkiri
requires_python>=3.10
licenseMIT
keywords facebook scraping scraping facebook crawler facebook page selenium crawler scraper facebook
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ==============================
facebook-page-info-scraper
==============================


.. image:: https://img.shields.io/pypi/v/facebook-page-info-scraper.svg
    :target: https://pypi.python.org/pypi/facebook-page-info-scraper
    :alt: Latest Version

.. image:: https://img.shields.io/pypi/pyversions/facebook-page-info-scraper.svg
    :target: https://pypi.python.org/pypi/facebook-page-info-scraper
    :alt: Supported Python Versions

Introduction
------------

facebook-page-info-scraper is a Python package that provides a convenient way to crawl information from Facebook pages.
you'll have the power to scrape Facebook data with unlimited calls.
Whether you're a researcher, a data enthusiast, or a developer building Facebook-related projects, this library can significantly simplify your data extraction process.
It uses Selenium for web scraping and provides functionalities to retrieve page details such as page name, Category, Address, email, followers count, and more.

Dictionary Contents {#dictionary-section}
-----------------------------------------

This section provides an overview of the dictionary contents.

Dictionary Fields
~~~~~~~~~~~~~~~~~

- `page_name`: The name of the page.
- `location`: The location of the page.
- `email`: The email associated with the page.
- `phone_number`: The phones number associated with the page
- `social_media_links`: Links to the page's social media accounts.
- `page_website`: The websites link associated with the page
- `page_category`: The category of the page.
- `page_followers`: The page number of followers.
- `page_following`: The number of following.
- `page_likes`: The page  number of likes.
- `page_rate`: The page  rates number.
- `review_number`: The page  reviews number.

This section provides an overview of the dictionary keys and types.

Dictionary Keys
~~~~~~~~~~~~~~~~~

- `page_name`: string
- `location`: string or None
- `email`: string or None
- `phone_number`: string or list of strings or None
- `social_media_links`: string or list of strings or None
- `page_website`: string or list of strings or None
- `page_category`: string
- `page_followers`: string
- `page_following`: string
- `page_likes`: string
- `page_rate`: string
- `review_number`: string

Installation
------------

Use pip to install the package:

.. code-block:: shell

    pip install facebook_page_info_scraper

Usage
-----

To use the package, import the `FacebookPageInfoScraper` class and create an instance:

.. code-block:: python

    from facebook_page_info_scraper import FacebookPageInfoScraper
    
    # providing the page URL
    page_url = 'https://www.facebook.com/example-page'
    
    # Create an instance of the scraper
    scraper = FacebookPageInfoScraper(link=page_url)
    
    page_info = scraper.get_page_info()

    # Print page details
    print(page_info)

    page_info = {
       'page_name': 'Example Page', 
       'location': 'Some Location', 
       'email': 'example@example.com', 
       'phone_number': '+33 536337',
       'social_media_links': 'www.instagram.com/example',
       'page_website': 'http://example.com',
       'page_category': 'Some category',
       'page_likes': '36,565',
       'page_followers': '38,225'
       'page_following': '120'
       'page_rate': '33'
       'review_number': '4.6'
   }

Contributing
------------

Contributions are welcome! If you find any issues or have suggestions for improvement, please feel free to open an issue or submit a pull request on the GitHub repository.

License
-------

This project is licensed under the MIT License. See the LICENSE file for more information.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/wael-sudo2/facebook-page-info-scraper",
    "name": "facebook-page-info-scraper",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": "",
    "keywords": "facebook scraping,scraping,facebook crawler,facebook page,selenium,crawler,scraper,facebook",
    "author": "Wael Hkiri",
    "author_email": "wael.hkiri.dev@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/92/0e/63a1dc20460b35bebcd0e96fb68b02a19239207cdfda8dba79529a66c3d9/facebook_page_info_scraper-1.1.2.tar.gz",
    "platform": null,
    "description": "==============================\nfacebook-page-info-scraper\n==============================\n\n\n.. image:: https://img.shields.io/pypi/v/facebook-page-info-scraper.svg\n    :target: https://pypi.python.org/pypi/facebook-page-info-scraper\n    :alt: Latest Version\n\n.. image:: https://img.shields.io/pypi/pyversions/facebook-page-info-scraper.svg\n    :target: https://pypi.python.org/pypi/facebook-page-info-scraper\n    :alt: Supported Python Versions\n\nIntroduction\n------------\n\nfacebook-page-info-scraper is a Python package that provides a convenient way to crawl information from Facebook pages.\nyou'll have the power to scrape Facebook data with unlimited calls.\nWhether you're a researcher, a data enthusiast, or a developer building Facebook-related projects, this library can significantly simplify your data extraction process.\nIt uses Selenium for web scraping and provides functionalities to retrieve page details such as page name, Category, Address, email, followers count, and more.\n\nDictionary Contents {#dictionary-section}\n-----------------------------------------\n\nThis section provides an overview of the dictionary contents.\n\nDictionary Fields\n~~~~~~~~~~~~~~~~~\n\n- `page_name`: The name of the page.\n- `location`: The location of the page.\n- `email`: The email associated with the page.\n- `phone_number`: The phones number associated with the page\n- `social_media_links`: Links to the page's social media accounts.\n- `page_website`: The websites link associated with the page\n- `page_category`: The category of the page.\n- `page_followers`: The page number of followers.\n- `page_following`: The number of following.\n- `page_likes`: The page  number of likes.\n- `page_rate`: The page  rates number.\n- `review_number`: The page  reviews number.\n\nThis section provides an overview of the dictionary keys and types.\n\nDictionary Keys\n~~~~~~~~~~~~~~~~~\n\n- `page_name`: string\n- `location`: string or None\n- `email`: string or None\n- `phone_number`: string or list of strings or None\n- `social_media_links`: string or list of strings or None\n- `page_website`: string or list of strings or None\n- `page_category`: string\n- `page_followers`: string\n- `page_following`: string\n- `page_likes`: string\n- `page_rate`: string\n- `review_number`: string\n\nInstallation\n------------\n\nUse pip to install the package:\n\n.. code-block:: shell\n\n    pip install facebook_page_info_scraper\n\nUsage\n-----\n\nTo use the package, import the `FacebookPageInfoScraper` class and create an instance:\n\n.. code-block:: python\n\n    from facebook_page_info_scraper import FacebookPageInfoScraper\n    \n    # providing the page URL\n    page_url = 'https://www.facebook.com/example-page'\n    \n    # Create an instance of the scraper\n    scraper = FacebookPageInfoScraper(link=page_url)\n    \n    page_info = scraper.get_page_info()\n\n    # Print page details\n    print(page_info)\n\n    page_info = {\n       'page_name': 'Example Page', \n       'location': 'Some Location', \n       'email': 'example@example.com', \n       'phone_number': '+33 536337',\n       'social_media_links': 'www.instagram.com/example',\n       'page_website': 'http://example.com',\n       'page_category': 'Some category',\n       'page_likes': '36,565',\n       'page_followers': '38,225'\n       'page_following': '120'\n       'page_rate': '33'\n       'review_number': '4.6'\n   }\n\nContributing\n------------\n\nContributions are welcome! If you find any issues or have suggestions for improvement, please feel free to open an issue or submit a pull request on the GitHub repository.\n\nLicense\n-------\n\nThis project is licensed under the MIT License. See the LICENSE file for more information.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A Python package capable of crawling Facebook page information.",
    "version": "1.1.2",
    "project_urls": {
        "Download": "https://github.com/username/your-package/archive/refs/tags/v1.0.0.tar.gz",
        "Homepage": "https://github.com/wael-sudo2/facebook-page-info-scraper"
    },
    "split_keywords": [
        "facebook scraping",
        "scraping",
        "facebook crawler",
        "facebook page",
        "selenium",
        "crawler",
        "scraper",
        "facebook"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c3475b07f09fbf54f3f35d3a5d8e5a6e50d0967757c256da862715c7131821a9",
                "md5": "21b87a9d72b9d40c802a1630b57e3846",
                "sha256": "de2d14b8b2af25650ceab35d94639f36d5df7b98eb86ccf5466ce27bed10726e"
            },
            "downloads": -1,
            "filename": "facebook_page_info_scraper-1.1.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "21b87a9d72b9d40c802a1630b57e3846",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.10",
            "size": 8709,
            "upload_time": "2024-01-26T14:01:04",
            "upload_time_iso_8601": "2024-01-26T14:01:04.351483Z",
            "url": "https://files.pythonhosted.org/packages/c3/47/5b07f09fbf54f3f35d3a5d8e5a6e50d0967757c256da862715c7131821a9/facebook_page_info_scraper-1.1.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "920e63a1dc20460b35bebcd0e96fb68b02a19239207cdfda8dba79529a66c3d9",
                "md5": "85c0eb944441fb61a8a021fb4a1289a2",
                "sha256": "58e76223ddf48291245ce8a3dc2a9272b54a9d9d74c49f12ac420a10dcaea11a"
            },
            "downloads": -1,
            "filename": "facebook_page_info_scraper-1.1.2.tar.gz",
            "has_sig": false,
            "md5_digest": "85c0eb944441fb61a8a021fb4a1289a2",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 9580,
            "upload_time": "2024-01-26T14:01:06",
            "upload_time_iso_8601": "2024-01-26T14:01:06.028237Z",
            "url": "https://files.pythonhosted.org/packages/92/0e/63a1dc20460b35bebcd0e96fb68b02a19239207cdfda8dba79529a66c3d9/facebook_page_info_scraper-1.1.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-26 14:01:06",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "wael-sudo2",
    "github_project": "facebook-page-info-scraper",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "facebook-page-info-scraper"
}
        
Elapsed time: 0.18271s