{ "info": { "author": "Facebook", "author_email": "", "bugtrack_url": null, "classifiers": [], "description": "# Facebook Business SDK for Python\n\n[![Build Status](https://travis-ci.org/facebook/facebook-python-business-sdk.svg)](https://travis-ci.org/facebook/facebook-python-business-sdk)\n\n### Introduction\n\nThe Facebook Business SDK is a one-stop shop to help our partners better serve their businesses. Partners are using multiple Facebook API's to server the needs of their clients. Adopting all these API's and keeping them up to date across the various platforms can be time consuming and ultimately prohibitive. For this reason Facebook has developed the Business SDK bundling many of its APIs into one SDK to ease implementation and upkeep. The Business SDK is an upgraded version of the Marketing API SDK that includes the Marketing API as well as many Facebook APIs from different platforms such as Pages, Business Manager, Instagram, etc.\n\n## Quick Start\n\nBusiness SDK Getting Started Guide\n\nPython is currently the most popular language for our third party developers. `facebook_business` is a Python package that provides an interface between your Python application and Facebook's APIs within the Business SDK. This tutorial covers the basic knowledge needed to use the SDK and provide some exercises for the reader.\n\n**NOTE**: ``facebook_business`` package is compatible with Python 2 and 3!\n\n## Pre-requisites\n\n### Register An App\n\nTo get started with the SDK, you must have an app\nregistered on developers.facebook.com.\n\nTo manage the Marketing API, please visit your\n/dashboard\"> App Dashboard \nand add the Marketing API product to your app.\n\n**IMPORTANT**: For security, it is recommended that you turn on 'App Secret\nProof for Server API calls' in your app's Settings->Advanced page.\n\n### Obtain An Access Token\n\nWhen someone connects with an app using Facebook Login and approves the request\nfor permissions, the app obtains an access token that provides temporary, secure\naccess to Facebook APIs.\n\nAn access token is an opaque string that identifies a User, app, or Page.\n\nFor example, to access the Marketing API, you need to generate a User access token\nfor your app and ask for the ``ads_management`` permission; to access Pages API,\nyou need to generate a Page access token for your app and ask for the ``manage_page`` permission.\n\nRefer to our\n\nAccess Token Guide to learn more.\n\nFor now, we can use the\nGraph Explorer\nto get an access token.\n\n## Install package\n\nThe easiest way to install the SDK is via ``pip`` in your shell.\n\n**NOTE**: For Python 3, use ``pip3`` and ``python3`` instead.\n\n**NOTE**: Use ``sudo`` if any of these complain about permissions. (This might\nhappen if you are using a system installed Python.)\n\nIf you don't have pip:\n\n```\neasy_install pip\n```\n\nNow execute when you have pip:\n\n```\npip install facebook_business\n```\n\nIf you care for the latest version instead of a possibly outdated version in the\npypi.python.org repository,\ncheck out the\nrepository from GitHub or download a release tarball. Once you've got the\npackage downloaded and unzipped, install it:\n\n```\npython setup.py install\n```\n\nGreat, now you are ready to use the SDK!\n\n## Bootstrapping\n\n### Create test.py\nCreate a test.py file with the contents below (assuming your system is using python 2.7 and installed under /opt/homebrew. Update to your proper python location.):\n\n```python\nimport sys\nsys.path.append('/opt/homebrew/lib/python2.7/site-packages') # Replace this with the place you installed facebookads using pip\nsys.path.append('/opt/homebrew/lib/python2.7/site-packages/facebook_business-3.0.0-py2.7.egg-info') # same as above\n\nfrom facebook_business.api import FacebookAdsApi\nfrom facebook_business.adobjects.adaccount import AdAccount\n\nmy_app_id = 'your-app-id'\nmy_app_secret = 'your-appsecret'\nmy_access_token = 'your-page-access-token'\nFacebookAdsApi.init(my_app_id, my_app_secret, my_access_token)\nmy_account = AdAccount('act_')\ncampaigns = my_account.get_campaigns()\nprint(campaigns)\n```\n\n### Test Your Install\nTest your install with the following command:\n```python\npython test.py\n```\nYou should see the result in your terminal window. If it complains about an expired token, repeat the process for requesting a Page Access Token described in the prerequisites section above.\n\n**NOTE**: We shall use the objects module throughout the rest of the tutorial. You can\nalso use the individual class files under adobjects directly.\n\n\n## Understanding CRUD\n\nThe SDK implements a CRUD (create, read, update, delete) design. Objects\nrelevant to exploring the graph are located in the objects module of the\nfacebook_business package.\n\nAll objects on the graph are instances of ``AbstractObject``. Some objects can\nbe directly queried and thus are instances of ``AbstractCrudObject`` (a subclass\nof ``AbstractObject``). Both these abstract classes are located in\n``facebook_business.adobjects``.\n\nThere is and additional folder ``adobjects`` under facebook_business. Under this you will see a file for every ad object\nin our Marketing API. These files are autogenerated from our API and therefore\nare close in parity with what API has to offer. Based on what CRUD operations can be\nperformed on each object, you will see the presence of the following methods in them:\n\n* ``api_get``\n* ``api_update``\n* ``api_delete``\n* ``create_xxx``\n* ``get_xxx``\n\nFor example, Campaign has all these methods but AdAccount does not. Read the\nMarketing API documentation for more information about\nhow different ad\nobjects are used.\n\nThere are some deprecated function in ``AbstractCrudObject``, like\n* ``remote_create``\n* ``remote_read``\n* ``remote_update``\n* ``remote_delete``\n\nPlease try to stop use them since we may plan to deprecated them soon.\n\n## Exploring the Graph\n\nThe way the SDK abstracts the API is by defining classes that represent objects\non the graph. These class definitions and their helpers are located in\n``facebook_business.adobjects``.\n\n### Initializing Objects\n\nLook at ``AbstractObject``'s and ``AbstractCrudObject``'s ``__init__`` method\nfor more information. Most objects on the graph subclass from one of the two.\n\nWhen instantiating an ad object, you can specify its id if it already exists by\ndefining ``fbid`` argument. Also, if you want to interact with the\nAPI using a specific api object instead of the default, you can specify the\n``api`` argument.\n\n### Edges\n\nLook at the methods of an object to see what associations over which we can\niterate. For example an ``AdUser`` object has a method ``get_ad_accounts`` which\nreturns an iterator of ``AdAccount`` objects.\n\n### Ad Account\n\nMost ad-related operations are in the context of an ad account. You can go to\nAds Manager to see accounts\nfor which you have permission. Most of you probably have a personal account.\n\nLet's get all the ad accounts for the user with the given access token. I only\nhave one account so the following is printed:\n\n```python\n>>> me = adobjects.AdUser(fbid='me')\n>>> my_accounts = list(me.get_ad_accounts())\n>>> print(my_accounts)\n[{ 'account_id': u'17842443', 'id': u'act_17842443'}]\n>>> type(my_accounts[0])\n\n```\n\n**WARNING**: We do not specify a keyword argument ``api=api`` when instantiating\nthe ``AdUser`` object here because we've already set the default api when\nbootstrapping.\n\n**NOTE**: We wrap the return value of ``get_ad_accounts`` with ``list()``\nbecause ``get_ad_accounts`` returns an ``EdgeIterator`` object (located in\n``facebook_business.adobjects``) and we want to get the full list right away instead of\nhaving the iterator lazily loading accounts.\n\nFor our purposes, we can just pick an account and do our experiments in its\ncontext:\n\n```python\n>>> my_account = my_accounts[0]\n```\n\nOr if you already know your account id:\n\n```python\n>>> my_account = adobjects.AdAccount('act_17842443')\n```\n\n## Create\n\nLet's create a campaign. It's in the context of the account, i.e. its parent\nshould be the account.\n\n```python\n\nfields = [\n]\nparams = {\n adobjects.Campaign.Field.name : 'Conversions Campaign',\n adobjects.Campaign.Field.configured_status: adobjects.Campaign.Status.paused,\n}\ncampaign = AdAccount(id).create_campaign(fields, params)\n```\n\nThen we specify some details about the campaign. To figure out what properties\nto define, you should look at the available fields of the object (located in\n``Campaign.Field``) and also look at the ad object's documentation (e.g.\n\nCampaign).\n\n**NOTE**: To find out the fields, look at the individual class file under adobjects\ndirectory.\n\nIf there's an error, an exception will be raised. Possible exceptions and their\ndescriptions are listed in ``facebook_business.exceptions``.\n\n## Read\n\nWe can also read properties of an object from the api assuming that the object\nis already created and has a node path. Accessing properties of an object is\nsimple since ``AbstractObject`` implements the ``collections.MutableMapping``.\nYou can access them just like accessing a key of a dictionary:\n\n```python\n>>> print(my_account)\n{'account_id': u'17842443', 'id': u'act_17842443'}\n>>> my_account = my_account.api_get(fields=[adobjects.AdAccount.Field.amount_spent])\n>>> print(my_account[adobjects.AdAccount.Field.amount_spent])\n{'amount_spent': 21167, 'account_id': u'17842443', 'id': u'act_17842443'}\n```\n\n## Update\n\nTo update an object, we can modify its properties and then call the\n``api_update`` method to sync the object with the server. Let's correct the\ntypo \"Campain\" to \"Campaign\":\n\n```python\n>>> campaign.api_update(fields=[], params={adobjects.Campaign.Field.name:\"Potato Campaign\"})\n```\n\nYou can see the results in ads manager.\n\n## Delete\n\nIf we decide we don't want the campaign we created anymore:\n\n```python\ncampaign.api_delete()\n```\n\n## Useful Arguments\n\n### MULTIPLE ACCESS TOKENS\n\nThroughout the docs, the method FacebookAdsApi.init is called before making any API calls. This\nmethod set up a default FacebookAdsApi object to be used everywhere. That simplifies the usage\nbut it's not feasible when a system using the SDK will make calls on behalf of multiple users.\n\nThe reason why this is not feasible is because each user should have its own FacebookSession, with its own\naccess token, rather than using the same session for every one. Each session should be used to create a\nseparate FacebookAdsApi object. See example below:\n\n\n```python\nmy_app_id = ''\nmy_app_secret = ''\nmy_access_token_1 = ''\nmy_access_token_2 = ''\nproxies = {'http': '', 'https': ''} # add proxies if needed\n\nsession1 = FacebookSession(\n my_app_id,\n my_app_secret,\n my_access_token_1,\n proxies,\n)\n\nsession2 = FacebookSession(\n my_app_id,\n my_app_secret,\n my_access_token_2,\n proxies,\n)\n\napi1 = FacebookAdsApi(session1)\napi2 = FacebookAdsApi(session2)\n```\nIn the SDK examples, we always set a single FacebookAdsApi object as the default one.\nHowever, working with multiples access_tokens, require us to use multiples apis. We may set a default\napi for a user, but, for the other users, we shall use its the api object as a param. In the example below,\nwe create two AdUsers, the first one using the default api and the second one using its api object:\n\n```python\nFacebookAdsApi.set_default_api(api1)\n\nme1 = AdUser(fbid='me')\nme2 = AdUser(fbid='me', api=api2)\n```\nAnother way to create the same objects from above would be:\n\n```python\nme1 = AdUser(fbid='me', api=api1)\nme2 = AdUser(fbid='me', api=api2)\n```\nFrom here, all the following workflow for these objects remains the same. The only exceptions are\nthe classmethods calls, where we now should pass the api we want to use as the last parameter\non every call. For instance, a call to the Aduser.get_by_ids method should be like this:\n\n```python\nsession = FacebookSession(\n my_app_id,\n my_app_secret,\n my_access_token_1,\n proxies,\n)\n\napi = FacebookAdsApi(session1)\nAduser.get_by_ids(ids=['', ''], api=api)\n```\n### CRUD\n\nAll CRUD calls support a ``params`` keyword argument which takes a dictionary\nmapping parameter names to values in case advanced modification is required. You\ncan find the list of parameter names as attributes of\n``{your object class}.Field``. Under the Field class there may be other classes\nwhich contain, as attributes, valid fields of the value of one of the parent\nproperties.\n\n``api_update`` and ``create_xxx`` support a ``files`` keyword argument\nwhich takes a dictionary mapping file reference names to binary opened file\nobjects.\n\n``api_get`` supports a ``fields`` keyword argument which is a convenient way\nof specifying the 'fields' parameter. ``fields`` takes a list of fields which\nshould be read during the call. The valid fields can be found as attributes of\nthe class Field.\n\n### Edges\n\nWhen initializing an ``EdgeIterator`` or when calling a method such as\n``AdAccount.get_ad_campaigns``:\n\n* You can specify a ``fields`` argument which takes a list of fields to read for\nthe objects being read.\n* You can specify a ``params`` argument that can help you specify or filter the\nedge more precisely.\n\n## Batch Calling\n\nIt is efficient to group together large numbers of calls into one http request.\nThe SDK makes this process simple. You can group together calls into an instance\nof ``FacebookAdsApiBatch`` (available in facebook_business.api). To easily get one\nfor your api instance:\n\n```python\nmy_api_batch = api.new_batch()\n```\n\nCalls can be added to the batch instead of being executed immediately:\n\n```python\ncampaign.api_delete(batch=my_api_batch)\n```\n\nOnce you're finished adding calls to the batch, you can send off the request:\n\n```python\nmy_api_batch.execute()\n```\n\nPlease follow \nbatch call guidelines in the Marketing API documentation. There are optimal\nnumbers of calls per batch. In addition, you may need to watch out that for rate\nlimiting as a batch call simply improves network performance and each call does\ncount individually towards rate limiting.\n\n## Exceptions\n\nSee ``facebook_business.exceptions`` for a list of exceptions which may be thrown by\nthe SDK.\n\n## Tests\n\n### Unit tests\n\nThe unit tests don't require an access token or network access. Run them\nwith your default installed Python as follows:\n\n```\npython -m facebook_business.test.unit\n```\n\nYou can also use tox to run the unit tests with multiple Python versions:\n\n```\nsudo apt-get install python-tox # Debian/Ubuntu\nsudo yum install python-tox # Fedora\ntox --skip-missing-interpreters\n```\n\nYou can increase interpreter coverage by installing additional versions of\nPython. On Ubuntu you can use the\n[deadsnakes PPA](https://launchpad.net/~fkrull/+archive/ubuntu/deadsnakes).\nOn other distributions you can\n[build from source](https://www.python.org/downloads/) and then use\n`sudo make altinstall` to avoid conflicts with your system-installed\nversion.\n\n## Examples\n\nExamples of usage are located in the ``examples/`` folder.\n\n\n## Debug\n\nIf this SDK is not working as expected, it may be either a SDK issue or API issue.\n\nThis can be identified by constructing a raw cURL request and seeing if the response is as expected\n\nfor example:\n\n```python\nfrom facebook_business.adobjects.page import Page\nfrom facebook_business.api import FacebookAdsApi\n\nFacebookAdsApi.init(access_token=access_token, debug=True)\npage = Page(page_id).api_get(fields=fields,params=params)\n```\n\nWhen running this code, this cURL request will be printed to the console as:\n```\ncurl -X 'GET' -H 'Accept: */*' -H 'Accept-Encoding: gzip, deflate' -H 'Connection: keep-alive' -H 'User-Agent: fbbizsdk-python-v3.3.1' 'https://graph.facebook.com/v3.3//?access_token=&fields=name%2Cbirthday%2Cphone'\n```\n\n## SDK Codegen\nOur SDK is autogenerated from [SDK Codegen](https://github.com/facebook/facebook-business-sdk-codegen). If you want to learn more about how our SDK code is generated, please check this repository.\n\n## Issue\nSince we want to handle bugs more efficiently, we've decided to close issue reporting in Github and move to our dedicated bug reporting channel.\nIf you encounter a bug with Business SDK (Python), please report the issue at [our developer bug reporting channel](https://developers.facebook.com/support/bugs/).\n\n## License\nFacebook Business SDK for Python is licensed under the LICENSE file in the root directory of this source tree.\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "https://github.com/facebook/facebook-python-business-sdk/tarball/13.0.0", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/facebook/facebook-python-business-sdk", "keywords": "", "license": "LICENSE.txt", "maintainer": "", "maintainer_email": "", "name": "facebook-business", "package_url": "https://pypi.org/project/facebook-business/", "platform": null, "project_url": "https://pypi.org/project/facebook-business/", "project_urls": { "Download": "https://github.com/facebook/facebook-python-business-sdk/tarball/13.0.0", "Homepage": "https://github.com/facebook/facebook-python-business-sdk" }, "release_url": "https://pypi.org/project/facebook-business/13.0.0/", "requires_dist": [ "requests (>=2.3.0)", "six (>=1.7.3)", "curlify (>=2.1.0)", "pycountry (>=19.8.18)", "enum34 ; python_version < \"3.4\"", "aiohttp ; python_version >= \"3.5.3\"" ], "requires_python": "", "summary": "Facebook Business SDK", "version": "13.0.0", "yanked": false, "yanked_reason": null }, "last_serial": 13393050, "releases": { "10.0.0": [ { "comment_text": "", "digests": { "md5": "df16a24a7e08bf4d169643d8ec4a655d", "sha256": "a984328256c4e1e4832bf70b6fef9433fef8aa8ec872b627ea6e32eafed9f435" }, "downloads": -1, "filename": "facebook_business-10.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "df16a24a7e08bf4d169643d8ec4a655d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1015034, "upload_time": "2021-03-02T21:49:05", "upload_time_iso_8601": "2021-03-02T21:49:05.616664Z", "url": "https://files.pythonhosted.org/packages/f7/4e/fa69da28cdbce0d1cc9bc104dfab619dbb77d26d3846700a6fde445d85d2/facebook_business-10.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "91465cabb6e5cfa2346dd2c5d3856f1f", "sha256": "8e49d3d3e8eb58d5fcf6586bca635b91f5b0c2961ca79d5f268a870078c7b3d8" }, "downloads": -1, "filename": "facebook_business-10.0.0.tar.gz", "has_sig": false, "md5_digest": "91465cabb6e5cfa2346dd2c5d3856f1f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 510419, "upload_time": "2021-03-02T21:49:07", "upload_time_iso_8601": "2021-03-02T21:49:07.175740Z", "url": "https://files.pythonhosted.org/packages/90/0b/050f5df38f107ac55a9d1e0884a24e2f356029daef013888bb8a5d45f70a/facebook_business-10.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "10.0.1": [ { "comment_text": "", "digests": { "md5": "ea8dce5d1f07537d1cafff6d7bc15aa2", "sha256": "adfb9d6b66bcd6a6ccb3a0a78aa121a05ba8e8a4c9feaf475485a2c2757c4613" }, "downloads": -1, "filename": "facebook_business-10.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "ea8dce5d1f07537d1cafff6d7bc15aa2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1027483, "upload_time": "2021-04-28T04:49:19", "upload_time_iso_8601": "2021-04-28T04:49:19.188229Z", "url": "https://files.pythonhosted.org/packages/5d/85/1729f33c3bdeae67aed37bbee0e124db53c53d489d59ead0a3516186fc5c/facebook_business-10.0.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3c391e770dfbcb953772235aaf4b6d7a", "sha256": "242dbbf21194cd4a1f5dee6b176b4d4e81430f06f75377b3b4794aacd4e99349" }, "downloads": -1, "filename": "facebook_business-10.0.1.tar.gz", "has_sig": false, "md5_digest": "3c391e770dfbcb953772235aaf4b6d7a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 522099, "upload_time": "2021-04-28T04:49:20", "upload_time_iso_8601": "2021-04-28T04:49:20.912338Z", "url": "https://files.pythonhosted.org/packages/42/01/5d83c43011d13c0a57908e2092f51bfa3a055f7f4376d7dd0828524edec1/facebook_business-10.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "11.0.0": [ { "comment_text": "", "digests": { "md5": "9cf3a7780b0122e2f0c922762663e83b", "sha256": "994c26268c52f6dfeecb0aa40b8edc3d1a66d26694156844f36e2e962d8fa0c0" }, "downloads": -1, "filename": "facebook_business-11.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "9cf3a7780b0122e2f0c922762663e83b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1033905, "upload_time": "2021-06-10T20:51:07", "upload_time_iso_8601": "2021-06-10T20:51:07.050616Z", "url": "https://files.pythonhosted.org/packages/e1/45/13e4cc251a2c3b5ee9a06bfa91a7e1cb46dae8311085de395f21d1d9fa88/facebook_business-11.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "56f83bc6b5cffdbaff97775f0fb3d565", "sha256": "94a6e43697c815edb2133e05d937b6e0eb13e5225c1ae48e88c40b33d18401ee" }, "downloads": -1, "filename": "facebook_business-11.0.0.tar.gz", "has_sig": false, "md5_digest": "56f83bc6b5cffdbaff97775f0fb3d565", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 525883, "upload_time": "2021-06-10T20:51:08", "upload_time_iso_8601": "2021-06-10T20:51:08.824133Z", "url": "https://files.pythonhosted.org/packages/ce/11/a676f744a08e8fc258506e035c7441ebb4a2b31ce67742b3d7132e7b2b5e/facebook_business-11.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "12.0.0": [ { "comment_text": "", "digests": { "md5": "744a6d32a8f5ab8d0a2b4f65425a27a8", "sha256": "61dc6180a6a3ca19e3e3c6210d168ac809d42bc91de0ba53402e3c0a6483699d" }, "downloads": -1, "filename": "facebook_business-12.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "744a6d32a8f5ab8d0a2b4f65425a27a8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1042500, "upload_time": "2021-09-16T02:52:50", "upload_time_iso_8601": "2021-09-16T02:52:50.124913Z", "url": "https://files.pythonhosted.org/packages/38/c5/2b94d98782417e983c774c12cc06a9ab0e64d0c409106092b555673d10dc/facebook_business-12.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5d647d2b5380018c0bee7b580aec5ee6", "sha256": "01b451613c9e8b7e12b3f08eafc4c12ca1206d97d6386b1421371b1b15e7214f" }, "downloads": -1, "filename": "facebook_business-12.0.0.tar.gz", "has_sig": false, "md5_digest": "5d647d2b5380018c0bee7b580aec5ee6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 524548, "upload_time": "2021-09-16T02:52:52", "upload_time_iso_8601": "2021-09-16T02:52:52.313404Z", "url": "https://files.pythonhosted.org/packages/e6/1c/0fb82483ee04e91792c617b53d075e036374caf14ed617606f409a3e24c8/facebook_business-12.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "12.0.1": [ { "comment_text": "", "digests": { "md5": "d8c733c099c419895d48998ffd188b04", "sha256": "0f49464b3eaf6d410f59c034216e79ae0939cc59174701dbd699771bbe3730e1" }, "downloads": -1, "filename": "facebook_business-12.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "d8c733c099c419895d48998ffd188b04", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1050794, "upload_time": "2021-10-26T05:11:28", "upload_time_iso_8601": "2021-10-26T05:11:28.426918Z", "url": "https://files.pythonhosted.org/packages/2b/49/82fd885e21d8f6139efd2b8f65880a1cd6c1b84e1f82968e8b70cb3a7e3b/facebook_business-12.0.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "43cf0d2cab13a0b78fc78057aefa91f2", "sha256": "1ef643f59f11bf5a91dc999b561e7adf9e5df3a5d870244798eb2ebbf6583424" }, "downloads": -1, "filename": "facebook_business-12.0.1.tar.gz", "has_sig": false, "md5_digest": "43cf0d2cab13a0b78fc78057aefa91f2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 530392, "upload_time": "2021-10-26T05:11:30", "upload_time_iso_8601": "2021-10-26T05:11:30.273847Z", "url": "https://files.pythonhosted.org/packages/79/c2/fd7e543f9ff8e5d9181b615ea1764422c87baa257f5c3d1885678209f178/facebook_business-12.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "13.0.0": [ { "comment_text": "", "digests": { "md5": "cf4e5bf3f633c335f93e0c0f5d8f78a7", "sha256": "d4a885bdbc8ba95b5256d221ff13d22e280d361797a902330c8425227099f669" }, "downloads": -1, "filename": "facebook_business-13.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "cf4e5bf3f633c335f93e0c0f5d8f78a7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1030102, "upload_time": "2022-04-03T16:03:11", "upload_time_iso_8601": "2022-04-03T16:03:11.967483Z", "url": "https://files.pythonhosted.org/packages/63/e4/e85c2e31a850e1963feab5b46350f8fb44ed8d7d18b9ba4d4e5a576fe8d6/facebook_business-13.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b34f52c07033a4d809bfdb1f03015267", "sha256": "3b72810e0af28e3e8d2bb2459669a253b86269abbedc6adcdca792c2f6f364e9" }, "downloads": -1, "filename": "facebook_business-13.0.0.tar.gz", "has_sig": false, "md5_digest": "b34f52c07033a4d809bfdb1f03015267", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 510227, "upload_time": "2022-04-03T16:03:14", "upload_time_iso_8601": "2022-04-03T16:03:14.057531Z", "url": "https://files.pythonhosted.org/packages/b5/69/929b7cffae4dc28956affbba40af985777996e56d4e166d38ffa2657bc89/facebook_business-13.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.12.1": [ { "comment_text": "", "digests": { "md5": "e6677814f7200538e6df9806e807b118", "sha256": "ab640108810b9e59df1e9988dd2578f0da48bb25ca956d9c9f3c2afb253bb59e" }, "downloads": -1, "filename": "facebook_business-2.12.1.tar.gz", "has_sig": false, "md5_digest": "e6677814f7200538e6df9806e807b118", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 298116, "upload_time": "2018-04-28T00:56:57", "upload_time_iso_8601": "2018-04-28T00:56:57.625791Z", "url": "https://files.pythonhosted.org/packages/0b/91/8fa29fd22a8e7c57c5a1c7ca7eb2e89ba57e2289d7ab95f1b3901cb77c68/facebook_business-2.12.1.tar.gz", "yanked": false, "yanked_reason": null } ], "2.12.2": [ { "comment_text": "", "digests": { "md5": "2b7b2654375dd6557f36a40de9be3e5c", "sha256": "ab943c768637d247c2c0ba34a5fb3a34d30aa2202dedc5def4950f8ffc76c539" }, "downloads": -1, "filename": "facebook_business-2.12.2.tar.gz", "has_sig": false, "md5_digest": "2b7b2654375dd6557f36a40de9be3e5c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 298094, "upload_time": "2018-04-28T01:06:27", "upload_time_iso_8601": "2018-04-28T01:06:27.688708Z", "url": "https://files.pythonhosted.org/packages/21/69/cf43ff30c0384a52339b2a8557b2fc8b327bdbe33f9bfa8bf51bab654da4/facebook_business-2.12.2.tar.gz", "yanked": false, "yanked_reason": null } ], "3.0.0": [ { "comment_text": "", "digests": { "md5": "be713a0f92123e9bd51d877a285e2066", "sha256": "981dbd0bc90458e3de4e2bd966ac70b8fb947945276084baa8b7a2132d727091" }, "downloads": -1, "filename": "facebook_business-3.0.0.tar.gz", "has_sig": false, "md5_digest": "be713a0f92123e9bd51d877a285e2066", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 351439, "upload_time": "2018-05-01T17:49:17", "upload_time_iso_8601": "2018-05-01T17:49:17.797474Z", "url": "https://files.pythonhosted.org/packages/d5/4d/98e6f05af0461cfdf7034cbebfcad735033f089325451b8d6397a85b4e60/facebook_business-3.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "3.0.1": [ { "comment_text": "", "digests": { "md5": "6107cc09b6f3f1227fa0f8600ebd4474", "sha256": "99b4e20acc62f99b9b1126b4e9963961cf16a19f1f1eed15d58ee723aad296da" }, "downloads": -1, "filename": "facebook_business-3.0.1.tar.gz", "has_sig": false, "md5_digest": "6107cc09b6f3f1227fa0f8600ebd4474", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 352137, "upload_time": "2018-06-18T21:32:37", "upload_time_iso_8601": "2018-06-18T21:32:37.950920Z", "url": "https://files.pythonhosted.org/packages/a4/ec/25891396a72273d587a10d83e55e903101129758387165edf5404cec831b/facebook_business-3.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "3.0.2": [ { "comment_text": "", "digests": { "md5": "200ad0121e10b5a33e7f9b2621a8869e", "sha256": "2832eed8a37f9dcbf86d2f8fd56905a1ba7af0cfcd496f4faa6f9aa65f904cea" }, "downloads": -1, "filename": "facebook_business-3.0.2.tar.gz", "has_sig": false, "md5_digest": "200ad0121e10b5a33e7f9b2621a8869e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 352361, "upload_time": "2018-06-21T22:52:59", "upload_time_iso_8601": "2018-06-21T22:52:59.021584Z", "url": "https://files.pythonhosted.org/packages/5a/bc/fca4abcb9135e86a087d2a2dba5d61bd814186876810d05b3e305e87030e/facebook_business-3.0.2.tar.gz", "yanked": false, "yanked_reason": null } ], "3.0.3": [ { "comment_text": "", "digests": { "md5": "ed6350778b241247f5130f0e911d4aa4", "sha256": "d119b852eade9ec1e18ff7f13cf4501128eb73693810a4632a5b24ffd26405ce" }, "downloads": -1, "filename": "facebook_business-3.0.3.tar.gz", "has_sig": false, "md5_digest": "ed6350778b241247f5130f0e911d4aa4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 352635, "upload_time": "2018-06-26T18:24:24", "upload_time_iso_8601": "2018-06-26T18:24:24.543682Z", "url": "https://files.pythonhosted.org/packages/7d/e3/e5edead61e4c5b63744e8017c023e10c5da64a8c4de0c22a0cdf33fa68dc/facebook_business-3.0.3.tar.gz", "yanked": false, "yanked_reason": null } ], "3.0.4": [ { "comment_text": "", "digests": { "md5": "c727cdb7445e70a41f1c7588a7a3fbf8", "sha256": "b95031fac8ba467ea82dfd10bb2052e9120dff8434045c5cb870abd9e78b69fb" }, "downloads": -1, "filename": "facebook_business-3.0.4.tar.gz", "has_sig": false, "md5_digest": "c727cdb7445e70a41f1c7588a7a3fbf8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 349467, "upload_time": "2018-07-13T11:01:39", "upload_time_iso_8601": "2018-07-13T11:01:39.762312Z", "url": "https://files.pythonhosted.org/packages/d6/29/716816b799d1dc364533cec8c4a0ca2ba54339dfc3dc9c97208c1f777976/facebook_business-3.0.4.tar.gz", "yanked": false, "yanked_reason": null } ], "3.0.5": [ { "comment_text": "", "digests": { "md5": "03b68259854e05e2c6fe3c59b996f493", "sha256": "d9b69b748580476f6c8595634cc5f809d25294ea301b4ef78d3f1cc866d5add0" }, "downloads": -1, "filename": "facebook_business-3.0.5.tar.gz", "has_sig": false, "md5_digest": "03b68259854e05e2c6fe3c59b996f493", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 349704, "upload_time": "2018-07-19T19:54:43", "upload_time_iso_8601": "2018-07-19T19:54:43.579591Z", "url": "https://files.pythonhosted.org/packages/8a/9f/0ed03f3f04fcbc39df7039adf5ac00fe4c90f845e5cb8107f287c19f08c4/facebook_business-3.0.5.tar.gz", "yanked": false, "yanked_reason": null } ], "3.1.1": [ { "comment_text": "", "digests": { "md5": "2d4e3b61256f24613758e562ee7472b9", "sha256": "d54cf3a6fadc061c0fe146e97e5c10c59943f9a9f1ba67457f6e4e06fa930857" }, "downloads": -1, "filename": "facebook_business-3.1.1.tar.gz", "has_sig": false, "md5_digest": "2d4e3b61256f24613758e562ee7472b9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 349441, "upload_time": "2018-07-28T00:29:25", "upload_time_iso_8601": "2018-07-28T00:29:25.452429Z", "url": "https://files.pythonhosted.org/packages/c9/97/c610fa1fdc61f030ca7eb1416b2a4e7f6e0b6760e8394a18a6d2d349b9e1/facebook_business-3.1.1.tar.gz", "yanked": false, "yanked_reason": null } ], "3.1.10": [ { "comment_text": "", "digests": { "md5": "a470d4bdd48cb7183d3f7e46ddb89d04", "sha256": "e58ed28ff12366ff13cfe2d26d3b4edf6b18a12aa8b4d0f4a580fa8210183c2f" }, "downloads": -1, "filename": "facebook_business-3.1.10.tar.gz", "has_sig": false, "md5_digest": "a470d4bdd48cb7183d3f7e46ddb89d04", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 481894, "upload_time": "2018-10-19T23:14:18", "upload_time_iso_8601": "2018-10-19T23:14:18.668633Z", "url": "https://files.pythonhosted.org/packages/9d/4a/48f5bb1d3d89e38c09fcf31dfd891f649ac603bc2b123620f6f50bd86ed0/facebook_business-3.1.10.tar.gz", "yanked": false, "yanked_reason": null } ], "3.1.2": [ { "comment_text": "", "digests": { "md5": "bb411441e5e73109a5d8636be2cf2b5c", "sha256": "c1c0dfd7f5c6f9955af32c778b2afe92b33f7a7ab818dafb2fdf41bc4ae0b67b" }, "downloads": -1, "filename": "facebook_business-3.1.2.tar.gz", "has_sig": false, "md5_digest": "bb411441e5e73109a5d8636be2cf2b5c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 359499, "upload_time": "2018-08-14T20:13:25", "upload_time_iso_8601": "2018-08-14T20:13:25.963358Z", "url": "https://files.pythonhosted.org/packages/bb/50/042287d8d0e4357a22eacaee9f5cef330beb88250e0c02c495af561b8b75/facebook_business-3.1.2.tar.gz", "yanked": false, "yanked_reason": null } ], "3.1.7": [ { "comment_text": "", "digests": { "md5": "daf8d109f8b1bec0b91d2e5298d2db11", "sha256": "10b0a8c8439bc9aca4bb3e1623fedbb3e766b61d7fd27c498461cc50946acca3" }, "downloads": -1, "filename": "facebook_business-3.1.7.tar.gz", "has_sig": false, "md5_digest": "daf8d109f8b1bec0b91d2e5298d2db11", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 517288, "upload_time": "2018-10-09T18:25:50", "upload_time_iso_8601": "2018-10-09T18:25:50.244920Z", "url": "https://files.pythonhosted.org/packages/c6/42/b61b817cf7c0456fd21256ad7d52b318f2cdc01a7b2d35f7296998c515e6/facebook_business-3.1.7.tar.gz", "yanked": false, "yanked_reason": null } ], "3.1.8": [ { "comment_text": "", "digests": { "md5": "4730b20790aa0624819b2330d6646c83", "sha256": "00d89ab8e0e3980a6252691b1d4fe1a3b3739221ec3b719af46ed4cc9c92b5b1" }, "downloads": -1, "filename": "facebook_business-3.1.8.tar.gz", "has_sig": false, "md5_digest": "4730b20790aa0624819b2330d6646c83", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 517291, "upload_time": "2018-10-09T20:41:38", "upload_time_iso_8601": "2018-10-09T20:41:38.218087Z", "url": "https://files.pythonhosted.org/packages/32/df/e71f7e6b952f1bf5d8fc906fc0884a8636c1276557b8b71966b960bd2e5c/facebook_business-3.1.8.tar.gz", "yanked": false, "yanked_reason": null } ], "3.1.9": [ { "comment_text": "", "digests": { "md5": "15140c34a25435c2204f1edc4cbe726f", "sha256": "f21aab25cf5c4ad939f164aa46e9bd5dde16c055f31a15ba7e07bc4970b9949b" }, "downloads": -1, "filename": "facebook_business-3.1.9.tar.gz", "has_sig": false, "md5_digest": "15140c34a25435c2204f1edc4cbe726f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 479735, "upload_time": "2018-10-10T06:13:23", "upload_time_iso_8601": "2018-10-10T06:13:23.530557Z", "url": "https://files.pythonhosted.org/packages/ce/18/55e4a30b943fddac9c481d0bd1573a92f4127a2548b2aead99d3a244003d/facebook_business-3.1.9.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.0": [ { "comment_text": "", "digests": { "md5": "cc445d3187c7b5cb7013592cb5006e5d", "sha256": "a8dee90a55ddf143595aa99f9f50f39b3317b98383644772e2d9f9129eaa7483" }, "downloads": -1, "filename": "facebook_business-3.2.0.tar.gz", "has_sig": false, "md5_digest": "cc445d3187c7b5cb7013592cb5006e5d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 482541, "upload_time": "2018-10-23T22:01:34", "upload_time_iso_8601": "2018-10-23T22:01:34.882030Z", "url": "https://files.pythonhosted.org/packages/ec/1d/0ac10aed67ccc868b2cba5460c2b89bf0b94169699acbea899a978656f27/facebook_business-3.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.1": [ { "comment_text": "", "digests": { "md5": "80d7742be78c35fbde94109536cff1fb", "sha256": "d8aa22523689d89b0269ccb3db235c8bddeb483e038b3b8a736427264fc396e0" }, "downloads": -1, "filename": "facebook_business-3.2.1.tar.gz", "has_sig": false, "md5_digest": "80d7742be78c35fbde94109536cff1fb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 487406, "upload_time": "2018-11-02T23:11:04", "upload_time_iso_8601": "2018-11-02T23:11:04.881458Z", "url": "https://files.pythonhosted.org/packages/cf/b6/135d042856eaff39a0638605f77442f2d1dbef56eec93da0735dc8cf58b3/facebook_business-3.2.1.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.10": [ { "comment_text": "", "digests": { "md5": "7eaa595bf250b07a820057beb107f62b", "sha256": "fc27fa86f0f6adef10cd7b4b32887ba93e968bfe3916712c8fac72d85efe965e" }, "downloads": -1, "filename": "facebook_business-3.2.10.tar.gz", "has_sig": false, "md5_digest": "7eaa595bf250b07a820057beb107f62b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 485533, "upload_time": "2019-03-14T05:11:41", "upload_time_iso_8601": "2019-03-14T05:11:41.137205Z", "url": "https://files.pythonhosted.org/packages/20/d4/3c20afa7341193b79b8a64401ae2f25ff40cee3aea965b75b0f9d0617e3c/facebook_business-3.2.10.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.11": [ { "comment_text": "", "digests": { "md5": "56f1cb1c2474eda00aef440b1a992907", "sha256": "0a12fad0e3358bdd1573334d84d318707b805f198592ab9f3d034115fa5fd97e" }, "downloads": -1, "filename": "facebook_business-3.2.11.tar.gz", "has_sig": false, "md5_digest": "56f1cb1c2474eda00aef440b1a992907", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 488640, "upload_time": "2019-03-27T23:12:26", "upload_time_iso_8601": "2019-03-27T23:12:26.430317Z", "url": "https://files.pythonhosted.org/packages/c9/9d/8052b0c8800b6e2af3d6bd480e8e14d46759f6eba7cc85e8f983574a4fbd/facebook_business-3.2.11.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.12": [ { "comment_text": "", "digests": { "md5": "883326ba7f0ce0aa8eead7324f081098", "sha256": "48478db60ca57ebeebd72492c9551c021527d415ab31266be6cfc3db396e6705" }, "downloads": -1, "filename": "facebook_business-3.2.12.tar.gz", "has_sig": false, "md5_digest": "883326ba7f0ce0aa8eead7324f081098", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 488371, "upload_time": "2019-03-29T17:20:06", "upload_time_iso_8601": "2019-03-29T17:20:06.098983Z", "url": "https://files.pythonhosted.org/packages/22/6e/95d46e9196f99f3de0d2003590f4752c7fe0776f200208ef8505ecc84bc6/facebook_business-3.2.12.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.13": [ { "comment_text": "", "digests": { "md5": "4918ed868c471f9da3da64b8ecdf60ae", "sha256": "0e14439da276afbe16e9e4b643b00e66f7386a6c70d9b17073c1bd5fb7eb06ae" }, "downloads": -1, "filename": "facebook_business-3.2.13.tar.gz", "has_sig": false, "md5_digest": "4918ed868c471f9da3da64b8ecdf60ae", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 487854, "upload_time": "2019-04-17T17:38:06", "upload_time_iso_8601": "2019-04-17T17:38:06.160228Z", "url": "https://files.pythonhosted.org/packages/86/86/2b6cbba946cae1f4e3feb72e8f815ac70c0d8d902f62daf1a7c316ea293f/facebook_business-3.2.13.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.2": [ { "comment_text": "", "digests": { "md5": "5d98654afeea2ae4af96628ffab91078", "sha256": "2d460ee45c4de768b5c2d8a60d92e14ac69236e7da735fd4eab109f80a93c350" }, "downloads": -1, "filename": "facebook_business-3.2.2.tar.gz", "has_sig": false, "md5_digest": "5d98654afeea2ae4af96628ffab91078", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 487046, "upload_time": "2018-11-04T02:20:48", "upload_time_iso_8601": "2018-11-04T02:20:48.715930Z", "url": "https://files.pythonhosted.org/packages/96/9d/9abcb0afad93ec0219e5e7191a8b0a588463a513efb7939ca08a00100298/facebook_business-3.2.2.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.3": [ { "comment_text": "", "digests": { "md5": "dbe75dfbfe302e5f5f628afdd70cb6f6", "sha256": "40f9259b68e7cca0d99df381ce6569bb1083b6eace1889cc123ad09c776f3d0e" }, "downloads": -1, "filename": "facebook_business-3.2.3.tar.gz", "has_sig": false, "md5_digest": "dbe75dfbfe302e5f5f628afdd70cb6f6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 487242, "upload_time": "2018-11-16T23:39:29", "upload_time_iso_8601": "2018-11-16T23:39:29.589109Z", "url": "https://files.pythonhosted.org/packages/b2/dd/cd36d2dd84467f718306103ba09c3d7090ba28c54ea511426d2a40d217ee/facebook_business-3.2.3.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.4": [ { "comment_text": "", "digests": { "md5": "8fb7ec2012eb3ea161132730e382468f", "sha256": "7795b811d5c0a7829d521ffee2a6b6323ffd092ae979ee3c81815822ddf38678" }, "downloads": -1, "filename": "facebook_business-3.2.4.tar.gz", "has_sig": false, "md5_digest": "8fb7ec2012eb3ea161132730e382468f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 487329, "upload_time": "2018-11-27T18:37:04", "upload_time_iso_8601": "2018-11-27T18:37:04.064820Z", "url": "https://files.pythonhosted.org/packages/3c/06/24b94a9c32e9a92502a78ee8593d33f3d72fc04fca13dcb8ce00e175cb96/facebook_business-3.2.4.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.5": [ { "comment_text": "", "digests": { "md5": "859f06a2158f62dd9b6de3f3b7996205", "sha256": "8ab69bbb0dd8992ff62129152493b3c1b4fc0d62df33c4ec99dd655bbf6891be" }, "downloads": -1, "filename": "facebook_business-3.2.5.tar.gz", "has_sig": false, "md5_digest": "859f06a2158f62dd9b6de3f3b7996205", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 491172, "upload_time": "2019-01-15T22:56:42", "upload_time_iso_8601": "2019-01-15T22:56:42.352278Z", "url": "https://files.pythonhosted.org/packages/e4/ea/66bf2eb3c0590b01ab2df2f5c456f6c1f7152e46835a93bdd33c5e7619f5/facebook_business-3.2.5.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.6": [ { "comment_text": "", "digests": { "md5": "5c7b5c1e31b48ab3f7f7573376c20e8d", "sha256": "efe0f08e3dbce515113529f6203994ad5e0a422ec996bd985f6317bcfe68122f" }, "downloads": -1, "filename": "facebook_business-3.2.6.tar.gz", "has_sig": false, "md5_digest": "5c7b5c1e31b48ab3f7f7573376c20e8d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 486045, "upload_time": "2019-01-29T23:03:02", "upload_time_iso_8601": "2019-01-29T23:03:02.128888Z", "url": "https://files.pythonhosted.org/packages/e0/ad/22bbb379cb4d2eabdc3bc53a076dce9f5e8269a999201195b672c9d6b77d/facebook_business-3.2.6.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.7": [ { "comment_text": "", "digests": { "md5": "aa61cefdd138313efda87e5d029fd9e2", "sha256": "b05b336a2ee7344cca6f2b41d56789801aef6f15c87f078bc64431ad32972db8" }, "downloads": -1, "filename": "facebook_business-3.2.7.tar.gz", "has_sig": false, "md5_digest": "aa61cefdd138313efda87e5d029fd9e2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 485459, "upload_time": "2019-02-12T03:33:49", "upload_time_iso_8601": "2019-02-12T03:33:49.790686Z", "url": "https://files.pythonhosted.org/packages/16/c3/591ece49e4e90c3f330f06f9332f1c08200356a49e14c2e116f921e0c884/facebook_business-3.2.7.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.8": [ { "comment_text": "", "digests": { "md5": "1fafde8a9954e581507255989c896abf", "sha256": "6e802927592150b52fe2dc1f552c0087c94373b66d7648d98e3cbbebbc6b939c" }, "downloads": -1, "filename": "facebook_business-3.2.8.tar.gz", "has_sig": false, "md5_digest": "1fafde8a9954e581507255989c896abf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 486832, "upload_time": "2019-02-26T01:08:43", "upload_time_iso_8601": "2019-02-26T01:08:43.633423Z", "url": "https://files.pythonhosted.org/packages/55/91/2ee6f918253807f91a177b2808c6f2b76c266ca9a88e3584d943817a6926/facebook_business-3.2.8.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.9": [ { "comment_text": "", "digests": { "md5": "8d3f932ba24b4c867e967e244a687bec", "sha256": "b086b765f4afaac7536540b76283e2ea766d44b072c9a74b4c876ed042058ff6" }, "downloads": -1, "filename": "facebook_business-3.2.9.tar.gz", "has_sig": false, "md5_digest": "8d3f932ba24b4c867e967e244a687bec", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 485852, "upload_time": "2019-03-11T23:17:32", "upload_time_iso_8601": "2019-03-11T23:17:32.468836Z", "url": "https://files.pythonhosted.org/packages/c7/ff/fe903b1d03beb7b8f817db99cbb9106249cb188430681deb85c5b3638e6f/facebook_business-3.2.9.tar.gz", "yanked": false, "yanked_reason": null } ], "3.3.0": [ { "comment_text": "", "digests": { "md5": "d86ff1317c75d5cfde0d2f7230b27246", "sha256": "306b5a3258bd5a258be7a842cb26b5b7d446cdb3754529052fd8a8b46ed7b57f" }, "downloads": -1, "filename": "facebook_business-3.3.0.tar.gz", "has_sig": false, "md5_digest": "d86ff1317c75d5cfde0d2f7230b27246", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 487014, "upload_time": "2019-04-30T18:14:01", "upload_time_iso_8601": "2019-04-30T18:14:01.338779Z", "url": "https://files.pythonhosted.org/packages/5a/b0/4bffafd3677cc7c8657598e891062c2142392491fd96188362b2231e1716/facebook_business-3.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "3.3.1": [ { "comment_text": "", "digests": { "md5": "10ce14ad1e7eb13838f88cab6b48e259", "sha256": "4d62fd05bebf03747072ebf4d2724d9a9884b53d7752d90eade9a95bd2806e39" }, "downloads": -1, "filename": "facebook_business-3.3.1.tar.gz", "has_sig": false, "md5_digest": "10ce14ad1e7eb13838f88cab6b48e259", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 486984, "upload_time": "2019-05-01T00:09:45", "upload_time_iso_8601": "2019-05-01T00:09:45.474777Z", "url": "https://files.pythonhosted.org/packages/96/35/65118be3edc7cc87a8e72862066770a51d8db181b07f83181f5b47794215/facebook_business-3.3.1.tar.gz", "yanked": false, "yanked_reason": null } ], "3.3.2": [ { "comment_text": "", "digests": { "md5": "647823e072e5ef5d7da730b62837cffa", "sha256": "c5678e6e990909b6d39976c6886fa0c9ff0817b299abcceb3c44d5bf80915eb5" }, "downloads": -1, "filename": "facebook_business-3.3.2.tar.gz", "has_sig": false, "md5_digest": "647823e072e5ef5d7da730b62837cffa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 453564, "upload_time": "2019-05-07T22:42:33", "upload_time_iso_8601": "2019-05-07T22:42:33.535947Z", "url": "https://files.pythonhosted.org/packages/a9/f1/2f62e1f970c810493f6a59d2889bd77e3b3ebc1f11df9836122f96e67ca9/facebook_business-3.3.2.tar.gz", "yanked": false, "yanked_reason": null } ], "4.0.1": [ { "comment_text": "", "digests": { "md5": "2cb7cc7198183d86f86ad1ccda3edb15", "sha256": "d73f3fe5a3292f74845ad451143018cfbd5567d5d1ac040a8ef1481d0ab9bd12" }, "downloads": -1, "filename": "facebook_business-4.0.1.tar.gz", "has_sig": false, "md5_digest": "2cb7cc7198183d86f86ad1ccda3edb15", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 463950, "upload_time": "2019-08-13T19:39:18", "upload_time_iso_8601": "2019-08-13T19:39:18.901152Z", "url": "https://files.pythonhosted.org/packages/93/cf/705517ac72f83309d1608c348655184ba6b365c98b15516d560ad62b33bb/facebook_business-4.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "4.0.2": [ { "comment_text": "", "digests": { "md5": "280efbaa602e920f1e05e479a23bbc4a", "sha256": "fce6b5d6923dce2349e01294b4fd26ef3a5af6aad7af6604010874077e6b5a26" }, "downloads": -1, "filename": "facebook_business-4.0.2.tar.gz", "has_sig": false, "md5_digest": "280efbaa602e920f1e05e479a23bbc4a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 467195, "upload_time": "2019-08-15T04:13:49", "upload_time_iso_8601": "2019-08-15T04:13:49.397563Z", "url": "https://files.pythonhosted.org/packages/7f/79/df94853573b6236dcb13f8c36bc5f5c6fbf1f24e4ce4f67093871732935d/facebook_business-4.0.2.tar.gz", "yanked": false, "yanked_reason": null } ], "4.0.3": [ { "comment_text": "", "digests": { "md5": "b359f74ecc1d56b477cdd2ba542c9e86", "sha256": "07d1eab2c53fbb80789654c5eda0f800ef165bf8896ddcfd11dbc85d566ff953" }, "downloads": -1, "filename": "facebook_business-4.0.3-py3-none-any.whl", "has_sig": false, "md5_digest": "b359f74ecc1d56b477cdd2ba542c9e86", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 984581, "upload_time": "2019-08-21T05:25:25", "upload_time_iso_8601": "2019-08-21T05:25:25.751460Z", "url": "https://files.pythonhosted.org/packages/00/b6/52268e7e72f970aeb0dabb1e6137d41aae65cd9228023bccff8770ae3371/facebook_business-4.0.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6bded381b3fc533afde7c1f793a5cf5a", "sha256": "78e55b8e9ab4dd8af1a7a27e0cb6267209efe91bb8ec48fe9fe5e7ae6e1d7bc4" }, "downloads": -1, "filename": "facebook_business-4.0.3.tar.gz", "has_sig": false, "md5_digest": "6bded381b3fc533afde7c1f793a5cf5a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 467542, "upload_time": "2019-08-21T05:25:27", "upload_time_iso_8601": "2019-08-21T05:25:27.962777Z", "url": "https://files.pythonhosted.org/packages/b1/9b/38ae0e86680862e4f91e4b0a84c5550a6631bf833a6c5ad5c8283fdb5649/facebook_business-4.0.3.tar.gz", "yanked": false, "yanked_reason": null } ], "4.0.4": [ { "comment_text": "", "digests": { "md5": "6f7ad17dfa899808cebae2cd7a3e0f60", "sha256": "802c71f7901d7f13948af204cb188ee7a3492079a1e3c0b6028e09b4ce5d8e60" }, "downloads": -1, "filename": "facebook_business-4.0.4-py3-none-any.whl", "has_sig": false, "md5_digest": "6f7ad17dfa899808cebae2cd7a3e0f60", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 987561, "upload_time": "2019-08-28T21:31:25", "upload_time_iso_8601": "2019-08-28T21:31:25.152363Z", "url": "https://files.pythonhosted.org/packages/b2/8e/40316d68476c110e0f93c2fcb70abfdcf0052c8db705bbb78a498bc2d831/facebook_business-4.0.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b1d923b3d6766767dd1a8a56efba42da", "sha256": "ea1519f20362e4da28a4c26b4d8bc5050fc178290eac54f2462fbe66bb36e01a" }, "downloads": -1, "filename": "facebook_business-4.0.4.tar.gz", "has_sig": false, "md5_digest": "b1d923b3d6766767dd1a8a56efba42da", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 468316, "upload_time": "2019-08-28T21:31:27", "upload_time_iso_8601": "2019-08-28T21:31:27.750784Z", "url": "https://files.pythonhosted.org/packages/a5/20/89d41752bfda6324b5a5c9b74b3ee8714f629def1522d44ead6d6bebb7ae/facebook_business-4.0.4.tar.gz", "yanked": false, "yanked_reason": null } ], "4.0.5": [ { "comment_text": "", "digests": { "md5": "2ba7777dee8ffa2215470e6b1dbc5e23", "sha256": "ba58f76ae1e99d18b5d27ef29d47c0abec9c64ee8eabcb3b957f970874005873" }, "downloads": -1, "filename": "facebook_business-4.0.5-py3-none-any.whl", "has_sig": false, "md5_digest": "2ba7777dee8ffa2215470e6b1dbc5e23", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 989771, "upload_time": "2019-09-11T20:40:20", "upload_time_iso_8601": "2019-09-11T20:40:20.054690Z", "url": "https://files.pythonhosted.org/packages/35/49/71d36ec0b085d033c1248df0150e17107db3a104c14d35f414dd59b08487/facebook_business-4.0.5-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "65c5efa1605a8c23152db1226b1e943e", "sha256": "273d964c289bbb81111038a52ccc938f1f4e6c71fcbead61cc1c9d00dc77092e" }, "downloads": -1, "filename": "facebook_business-4.0.5.tar.gz", "has_sig": false, "md5_digest": "65c5efa1605a8c23152db1226b1e943e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 469179, "upload_time": "2019-09-11T20:40:22", "upload_time_iso_8601": "2019-09-11T20:40:22.899761Z", "url": "https://files.pythonhosted.org/packages/76/f9/229fb67c2cff6375b327dd975891317e34d87ed1221d43b3ea7e80686e45/facebook_business-4.0.5.tar.gz", "yanked": false, "yanked_reason": null } ], "4.0.6": [ { "comment_text": "", "digests": { "md5": "b699b1e008dec8616cf09b233ed2f548", "sha256": "ab1a1effc3171e4b1cda51ded3708af7629eb8f77a3c249bf570b43d80371cae" }, "downloads": -1, "filename": "facebook_business-4.0.6-py3-none-any.whl", "has_sig": false, "md5_digest": "b699b1e008dec8616cf09b233ed2f548", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 990054, "upload_time": "2019-09-20T18:49:03", "upload_time_iso_8601": "2019-09-20T18:49:03.550563Z", "url": "https://files.pythonhosted.org/packages/90/0c/aafc7001ab1e9f49ac5083db430b84eac79bcab91b8b7fbe3d3c386e33e3/facebook_business-4.0.6-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "86539183f3ee5c1ea21107cb0d450ea5", "sha256": "ccd761f6c4cde486c3efd0d3e35e8bb84bf2be764078d9c2c40eae99efdd46b5" }, "downloads": -1, "filename": "facebook_business-4.0.6.tar.gz", "has_sig": false, "md5_digest": "86539183f3ee5c1ea21107cb0d450ea5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 471066, "upload_time": "2019-09-20T18:49:06", "upload_time_iso_8601": "2019-09-20T18:49:06.098779Z", "url": "https://files.pythonhosted.org/packages/8b/f0/1b5015c78fdce1cfbd1f1dae64f86b9063e9ebfcc1ce2a6134c2a36cd3ca/facebook_business-4.0.6.tar.gz", "yanked": false, "yanked_reason": null } ], "4.0.7": [ { "comment_text": "", "digests": { "md5": "d36b368899a55f2cf90402671922d72f", "sha256": "bec7780184245edef3e13cb908461552b724b85ee1e26dff650cd15bd33fb18b" }, "downloads": -1, "filename": "facebook_business-4.0.7-py3-none-any.whl", "has_sig": false, "md5_digest": "d36b368899a55f2cf90402671922d72f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 991538, "upload_time": "2019-10-11T04:54:15", "upload_time_iso_8601": "2019-10-11T04:54:15.155010Z", "url": "https://files.pythonhosted.org/packages/a1/30/fd57977f4b88dadcda1708001f6fa20f7968ad9e8586031a2978e02876dc/facebook_business-4.0.7-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "67550274dfd3cd363b41fe7ba696f089", "sha256": "561b2985f13b7f0c7235b38412fb1cebf76c2cd55378721dcc81093c8bfb6801" }, "downloads": -1, "filename": "facebook_business-4.0.7.tar.gz", "has_sig": false, "md5_digest": "67550274dfd3cd363b41fe7ba696f089", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 469749, "upload_time": "2019-10-11T04:54:28", "upload_time_iso_8601": "2019-10-11T04:54:28.430951Z", "url": "https://files.pythonhosted.org/packages/36/0b/6bb9834a9aad7657e6a5b45f87990b01f6ff08543577f2b7f1be7722baba/facebook_business-4.0.7.tar.gz", "yanked": false, "yanked_reason": null } ], "4.0.8": [ { "comment_text": "", "digests": { "md5": "54430e45d4d1c662bf7bd9ff5d4df401", "sha256": "d60a6110e0772491bae6f01e48e6d4ae2653310c77ad83b38c884d0acd70fff9" }, "downloads": -1, "filename": "facebook_business-4.0.8-py3-none-any.whl", "has_sig": false, "md5_digest": "54430e45d4d1c662bf7bd9ff5d4df401", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 993864, "upload_time": "2019-10-24T00:12:12", "upload_time_iso_8601": "2019-10-24T00:12:12.455511Z", "url": "https://files.pythonhosted.org/packages/da/d3/57e33b4a21834121939e8fd670f4c2fc30562886fd362f0ef3c44feedbd3/facebook_business-4.0.8-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "aaa93ee100af35433b9d0bbc350c2d81", "sha256": "69a058d934a057066699f33c5c5a1b7a04f9983490f4f59df8a0860eb8eeb10d" }, "downloads": -1, "filename": "facebook_business-4.0.8.tar.gz", "has_sig": false, "md5_digest": "aaa93ee100af35433b9d0bbc350c2d81", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 470537, "upload_time": "2019-10-24T00:12:14", "upload_time_iso_8601": "2019-10-24T00:12:14.512834Z", "url": "https://files.pythonhosted.org/packages/76/17/ac1db8c7bf5ca5e4c0a79b8e2230ddd62b70ef1b7296c79e1466aa2350cc/facebook_business-4.0.8.tar.gz", "yanked": false, "yanked_reason": null } ], "5.0.0": [ { "comment_text": "", "digests": { "md5": "59b48c8ae113ab454fc942fe73a3a9f2", "sha256": "80dbc88eee4b080c9fafa9144aebe0c07d50619790eaef4d8fcaa1f38e3fc92a" }, "downloads": -1, "filename": "facebook_business-5.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "59b48c8ae113ab454fc942fe73a3a9f2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 994641, "upload_time": "2019-10-29T22:40:02", "upload_time_iso_8601": "2019-10-29T22:40:02.525835Z", "url": "https://files.pythonhosted.org/packages/15/77/deb29f5c8c84b5d4faebf56e542e2552c201c4cf310ef5ca7fb1d09a43ae/facebook_business-5.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "92e2dfc5f851503dabb6289eec260d26", "sha256": "03ec442760fe8cb3571ff95219a8db0e8775669e76fba288f9c1d09148217c25" }, "downloads": -1, "filename": "facebook_business-5.0.0.tar.gz", "has_sig": false, "md5_digest": "92e2dfc5f851503dabb6289eec260d26", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 480010, "upload_time": "2019-10-29T22:40:04", "upload_time_iso_8601": "2019-10-29T22:40:04.936249Z", "url": "https://files.pythonhosted.org/packages/a3/9b/4a3ab963b19c055cd7384dd393a5cc8177ecd79a1410fce35e55d460d312/facebook_business-5.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "5.0.1": [ { "comment_text": "", "digests": { "md5": "af349156f6f228d5f41f6fb5e645393f", "sha256": "68d8d286cfbc38fb55dc6714566c6412b1244657108b05a68bd453f3a0bf6632" }, "downloads": -1, "filename": "facebook_business-5.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "af349156f6f228d5f41f6fb5e645393f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 995452, "upload_time": "2019-11-05T18:57:12", "upload_time_iso_8601": "2019-11-05T18:57:12.758587Z", "url": "https://files.pythonhosted.org/packages/a7/fb/5774f3757b4c16a314c943ea0471173c4507bf9112b101310d18b211fb05/facebook_business-5.0.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3f7e741fbb9a7d3bcc9bfcd097b1dc2b", "sha256": "bf0e3bbbac920664c8e5b25609f40166b18554cf8ce0b455066f65f1ba47d591" }, "downloads": -1, "filename": "facebook_business-5.0.1.tar.gz", "has_sig": false, "md5_digest": "3f7e741fbb9a7d3bcc9bfcd097b1dc2b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 483435, "upload_time": "2019-11-05T18:57:15", "upload_time_iso_8601": "2019-11-05T18:57:15.253919Z", "url": "https://files.pythonhosted.org/packages/fc/91/047fd21c950cbee5e1eb24d3077b5458da49b47b9cb7bbfd2ab48c60f65a/facebook_business-5.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "5.0.2": [ { "comment_text": "", "digests": { "md5": "c96eddfb3fe380907a5f8be3ebd23625", "sha256": "239a278052df3c112f02dbb40ffdfae5ad2dbe53abcb825165ca7ce0cdbc01dd" }, "downloads": -1, "filename": "facebook_business-5.0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "c96eddfb3fe380907a5f8be3ebd23625", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 995777, "upload_time": "2019-11-11T20:45:41", "upload_time_iso_8601": "2019-11-11T20:45:41.814466Z", "url": "https://files.pythonhosted.org/packages/d5/b2/ca67365777b6bde4e298575320bd7973f455b7fe1b3fc3f8990e87549cee/facebook_business-5.0.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "79a90faecb6f0b785d09172dcd3f7588", "sha256": "3379b232cc7fb7c436ce34cfcbf8a578969a3d60eb774421aaed2562fe2001cf" }, "downloads": -1, "filename": "facebook_business-5.0.2.tar.gz", "has_sig": false, "md5_digest": "79a90faecb6f0b785d09172dcd3f7588", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 491477, "upload_time": "2019-11-11T20:45:43", "upload_time_iso_8601": "2019-11-11T20:45:43.702779Z", "url": "https://files.pythonhosted.org/packages/f5/1d/eaf3a610770390c17776d3f25b8e205387278a890075400ed853cfef1645/facebook_business-5.0.2.tar.gz", "yanked": false, "yanked_reason": null } ], "5.0.3": [ { "comment_text": "", "digests": { "md5": "20a0bbc0a95a5ece65be439ee77e4f97", "sha256": "8a0398a90684f4c706694878e2c6cb7a6ed5639e1734d0fc4a0dbf2ce9778795" }, "downloads": -1, "filename": "facebook_business-5.0.3-py3-none-any.whl", "has_sig": false, "md5_digest": "20a0bbc0a95a5ece65be439ee77e4f97", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 995491, "upload_time": "2019-12-11T21:06:11", "upload_time_iso_8601": "2019-12-11T21:06:11.958609Z", "url": "https://files.pythonhosted.org/packages/7a/e0/23b519089dccba6b5bee6f2d55d605ba0666e66f3593ef7e88d3918b19e3/facebook_business-5.0.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3d5b871e47f726f8fcd210e71f8d880a", "sha256": "ea07b07067f2aeef353b134b0610e66b748c171e0823a5fb30ab79d54a0f7af6" }, "downloads": -1, "filename": "facebook_business-5.0.3.tar.gz", "has_sig": false, "md5_digest": "3d5b871e47f726f8fcd210e71f8d880a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 494458, "upload_time": "2019-12-11T21:06:14", "upload_time_iso_8601": "2019-12-11T21:06:14.330780Z", "url": "https://files.pythonhosted.org/packages/59/82/034af11f237b5beeba39f5cc3a057ef8498aeef4093e37063b64cf811446/facebook_business-5.0.3.tar.gz", "yanked": false, "yanked_reason": null } ], "5.0.4": [ { "comment_text": "", "digests": { "md5": "713a7b27fe6f38881b3675f533d0d39c", "sha256": "08eda909dadbe75bccd8333e42df0bca746e64a1bb48ce95258f3f6d4ab772bb" }, "downloads": -1, "filename": "facebook_business-5.0.4-py3-none-any.whl", "has_sig": false, "md5_digest": "713a7b27fe6f38881b3675f533d0d39c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1057790, "upload_time": "2020-01-07T20:33:56", "upload_time_iso_8601": "2020-01-07T20:33:56.042740Z", "url": "https://files.pythonhosted.org/packages/d8/23/4e29bc06d9f61f8e8c49453fedf705b4af1e2f4272fb4fdab1c91f6e83f5/facebook_business-5.0.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6e5965a398c7ac7c39feb3ea2f730508", "sha256": "8dd79789df67ca6b03f4b6772da284a6e83740e0bf050e894caa4cf7f714e4ea" }, "downloads": -1, "filename": "facebook_business-5.0.4.tar.gz", "has_sig": false, "md5_digest": "6e5965a398c7ac7c39feb3ea2f730508", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 521916, "upload_time": "2020-01-07T20:33:58", "upload_time_iso_8601": "2020-01-07T20:33:58.024726Z", "url": "https://files.pythonhosted.org/packages/49/40/2e6e2a5e2fd61563a5880d05107502582f2813fcc832189839f6a6337ae0/facebook_business-5.0.4.tar.gz", "yanked": false, "yanked_reason": null } ], "6.0.0": [ { "comment_text": "", "digests": { "md5": "332b2d6523c2999d3d2aede9e8d6e0bb", "sha256": "b0b67c8b78b1b9b65a903d6e11900f251bd971f1fc2ea901ca3f702660b7f8d8" }, "downloads": -1, "filename": "facebook_business-6.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "332b2d6523c2999d3d2aede9e8d6e0bb", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 997985, "upload_time": "2020-02-04T00:40:38", "upload_time_iso_8601": "2020-02-04T00:40:38.138480Z", "url": "https://files.pythonhosted.org/packages/a5/82/a0dae09f12d282d7cc3447003ed6da3f1ad17294adba0cd60b0607720cdb/facebook_business-6.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fde6b3ab956ca36bad7e0c6b168f0e99", "sha256": "26747baec207c0edd48a09db3295f886a3a4dd65fe9e804293e1c526bdda238a" }, "downloads": -1, "filename": "facebook_business-6.0.0.tar.gz", "has_sig": false, "md5_digest": "fde6b3ab956ca36bad7e0c6b168f0e99", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 487480, "upload_time": "2020-02-04T00:40:40", "upload_time_iso_8601": "2020-02-04T00:40:40.339388Z", "url": "https://files.pythonhosted.org/packages/0b/79/4d98fab7efa86120585a8023cfc633a3e10c4a528d40b85db7dcd4dde684/facebook_business-6.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "6.0.1": [ { "comment_text": "", "digests": { "md5": "8a8b3c14f79e732289ab68b82af15c8c", "sha256": "4e94e2ab3c7125ee228bc2ac2bfb740bb9985ca5a49788df838caedb776af4cb" }, "downloads": -1, "filename": "facebook_business-6.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "8a8b3c14f79e732289ab68b82af15c8c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1003093, "upload_time": "2020-03-05T05:05:55", "upload_time_iso_8601": "2020-03-05T05:05:55.636477Z", "url": "https://files.pythonhosted.org/packages/a5/30/fcd46e314ac0eb08d259dafbcfb0934f616eeced2620f037015ce015f950/facebook_business-6.0.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0facf5971b331cbfce67c369762b425d", "sha256": "daf33cf032d3eb8592505819c931c1d0cd9601f2067ea6b22939d4394bbdae2a" }, "downloads": -1, "filename": "facebook_business-6.0.1.tar.gz", "has_sig": false, "md5_digest": "0facf5971b331cbfce67c369762b425d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 480145, "upload_time": "2020-03-05T05:05:57", "upload_time_iso_8601": "2020-03-05T05:05:57.453861Z", "url": "https://files.pythonhosted.org/packages/86/e2/71492a653d23a7d7c786510b652446ff6a7afdfea27965647248d71ba762/facebook_business-6.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "6.0.2": [ { "comment_text": "", "digests": { "md5": "f3dbe4d5dfb496b1bf353d9ef6935237", "sha256": "e32333bd1dbddf11cbd33edeb97cc8d59167442b36d20ff7997d290db0a4cfb4" }, "downloads": -1, "filename": "facebook_business-6.0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "f3dbe4d5dfb496b1bf353d9ef6935237", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1008365, "upload_time": "2020-03-21T00:03:28", "upload_time_iso_8601": "2020-03-21T00:03:28.629383Z", "url": "https://files.pythonhosted.org/packages/0a/37/fee592dba5884fbfddd46dbd56a90e6f9d06fe885e4635662eb6a08af1d4/facebook_business-6.0.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5c01dd9d6ffa3ea40911cd5d66015795", "sha256": "b1168248ae24c38db28e95e627d00391d79945a5608a1819afce852b0425beae" }, "downloads": -1, "filename": "facebook_business-6.0.2.tar.gz", "has_sig": false, "md5_digest": "5c01dd9d6ffa3ea40911cd5d66015795", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 478586, "upload_time": "2020-03-21T00:03:30", "upload_time_iso_8601": "2020-03-21T00:03:30.307558Z", "url": "https://files.pythonhosted.org/packages/67/70/af92c345f386987cb8b970ed5a017ff122abebaa8187629cb0c64e16dbd7/facebook_business-6.0.2.tar.gz", "yanked": false, "yanked_reason": null } ], "6.0.3": [ { "comment_text": "", "digests": { "md5": "44ec60fc251234de831f8d074d8bed94", "sha256": "ffe1ddc976a1f929ff4c8bf8104f6ddf14be47f50f8e6cb4b6f22e59c88f7a73" }, "downloads": -1, "filename": "facebook_business-6.0.3-py3-none-any.whl", "has_sig": false, "md5_digest": "44ec60fc251234de831f8d074d8bed94", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1004461, "upload_time": "2020-04-08T06:49:51", "upload_time_iso_8601": "2020-04-08T06:49:51.797663Z", "url": "https://files.pythonhosted.org/packages/44/35/b48a457863c480af3cfed9018749c8826fede64f5e2538761cb3edb318a4/facebook_business-6.0.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9bdca53288fdb50bc26b4de63f3acd4e", "sha256": "8d09595e8b8c6db2c1fd00b9e9272df226017be4e0255890a32536e133e44409" }, "downloads": -1, "filename": "facebook_business-6.0.3.tar.gz", "has_sig": false, "md5_digest": "9bdca53288fdb50bc26b4de63f3acd4e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 478005, "upload_time": "2020-04-08T06:49:53", "upload_time_iso_8601": "2020-04-08T06:49:53.571148Z", "url": "https://files.pythonhosted.org/packages/29/75/7a8d115a3ecf838a8dbb97956ce355886ea8253ee6ea96ee5ce0441ac28b/facebook_business-6.0.3.tar.gz", "yanked": false, "yanked_reason": null } ], "6.0.4": [ { "comment_text": "", "digests": { "md5": "aead0e013a8f5a9558ab49ab9a9751f7", "sha256": "e46af831cb7c6331bef7344a414e1f6aad037a15abd2e8523614fe59c018503e" }, "downloads": -1, "filename": "facebook_business-6.0.4-py3-none-any.whl", "has_sig": false, "md5_digest": "aead0e013a8f5a9558ab49ab9a9751f7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1002625, "upload_time": "2020-04-28T17:43:28", "upload_time_iso_8601": "2020-04-28T17:43:28.929171Z", "url": "https://files.pythonhosted.org/packages/40/46/1291d0895fe24bc049fb8e98a7a22163fc78b154524d6d9ef088aef80eee/facebook_business-6.0.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a7bb6746dd5d31a5151b18fa95be352c", "sha256": "c418360bc629b62204f15944400167b476bf651f2b15432804005599b337f9d4" }, "downloads": -1, "filename": "facebook_business-6.0.4.tar.gz", "has_sig": false, "md5_digest": "a7bb6746dd5d31a5151b18fa95be352c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 478224, "upload_time": "2020-04-28T17:43:30", "upload_time_iso_8601": "2020-04-28T17:43:30.522778Z", "url": "https://files.pythonhosted.org/packages/d5/7b/e535d2818aa7c15124de20237e000857419b249e055630d943f489291eed/facebook_business-6.0.4.tar.gz", "yanked": false, "yanked_reason": null } ], "7.0.0": [ { "comment_text": "", "digests": { "md5": "506e5638764e724fe3b5c89003fc0640", "sha256": "625605b4cb87ca282018b7acff3137515670f88567f2432f9d6fd6a73e04b080" }, "downloads": -1, "filename": "facebook_business-7.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "506e5638764e724fe3b5c89003fc0640", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1005775, "upload_time": "2020-05-06T04:57:43", "upload_time_iso_8601": "2020-05-06T04:57:43.421852Z", "url": "https://files.pythonhosted.org/packages/96/26/b508dfc98f92d283e121adf6cc979184779690fde1754d7758faf6f283a2/facebook_business-7.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1192b477962a5955d9220baaacd99d32", "sha256": "f4f1a4bf884f234e44ecc202e5bcff2a23b27d85ac80d432ea9baadd16e09a14" }, "downloads": -1, "filename": "facebook_business-7.0.0.tar.gz", "has_sig": false, "md5_digest": "1192b477962a5955d9220baaacd99d32", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 478778, "upload_time": "2020-05-06T04:57:44", "upload_time_iso_8601": "2020-05-06T04:57:44.769634Z", "url": "https://files.pythonhosted.org/packages/9a/ef/4d0e92914d0137e04ed5696fdccdf72927baa36a7f84505df10b3607a688/facebook_business-7.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "7.0.1": [ { "comment_text": "", "digests": { "md5": "ff9c826cabc603a6980acbe05430537b", "sha256": "f01f4216f5f963f8fd2539e4f68bcc2729c51d02360f9721095ed7c1822c1082" }, "downloads": -1, "filename": "facebook_business-7.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "ff9c826cabc603a6980acbe05430537b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1005942, "upload_time": "2020-05-15T05:09:01", "upload_time_iso_8601": "2020-05-15T05:09:01.149836Z", "url": "https://files.pythonhosted.org/packages/8f/08/0273979001ef4b32b8c2125ecc44b5e9134680e614f7d87ce3a26929fbef/facebook_business-7.0.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4ec9b58604fa29779cabad58e2d77669", "sha256": "57575a329c791c1428cce12edfaa4db9b5ec2ca074846bf7a37bbce107cb169b" }, "downloads": -1, "filename": "facebook_business-7.0.1.tar.gz", "has_sig": false, "md5_digest": "4ec9b58604fa29779cabad58e2d77669", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 478928, "upload_time": "2020-05-15T05:09:02", "upload_time_iso_8601": "2020-05-15T05:09:02.619584Z", "url": "https://files.pythonhosted.org/packages/96/e1/66ce2fe97c277bcf0b4303af212657d8d6eaff95dff016caf21eb5607949/facebook_business-7.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "7.0.2": [ { "comment_text": "", "digests": { "md5": "87f9203db8d5995d4a6c70bc0782e4fa", "sha256": "fb9ddd48416b44bcc5669524db06ca0a77986d55b5d066a029d089b5e75a6d03" }, "downloads": -1, "filename": "facebook_business-7.0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "87f9203db8d5995d4a6c70bc0782e4fa", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1012336, "upload_time": "2020-06-03T21:50:11", "upload_time_iso_8601": "2020-06-03T21:50:11.841145Z", "url": "https://files.pythonhosted.org/packages/f7/60/2021eb6ff262d0379160fd6b6b53160990c508041395d62eceec4bc9fa5d/facebook_business-7.0.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "843bebd89f7717c3539849e5f13583aa", "sha256": "fc86fbd945a63a641a41a9f779f348036b5cf0c3acefa33458bd5e49375509b6" }, "downloads": -1, "filename": "facebook_business-7.0.2.tar.gz", "has_sig": false, "md5_digest": "843bebd89f7717c3539849e5f13583aa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 482103, "upload_time": "2020-06-03T21:50:13", "upload_time_iso_8601": "2020-06-03T21:50:13.224029Z", "url": "https://files.pythonhosted.org/packages/24/cb/2efcbf3cef80885d14695d1ee33ecb62c49c5ce7a21beb301d37ec45a76d/facebook_business-7.0.2.tar.gz", "yanked": false, "yanked_reason": null } ], "7.0.3": [ { "comment_text": "", "digests": { "md5": "c844c703e725f24d8a096edf2b46e706", "sha256": "888f613d362e9e7d40a5a7e4e8d4c7ed4eee531577eb50ec06064e3a92770b80" }, "downloads": -1, "filename": "facebook_business-7.0.3-py3-none-any.whl", "has_sig": false, "md5_digest": "c844c703e725f24d8a096edf2b46e706", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1012796, "upload_time": "2020-06-22T16:30:44", "upload_time_iso_8601": "2020-06-22T16:30:44.296042Z", "url": "https://files.pythonhosted.org/packages/b8/86/71b4b0903ea72336282e495fc4aac8a960d025d48b6e5535cfdf91f3a859/facebook_business-7.0.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e526480e1d2c7d59b045563481443120", "sha256": "021a5df857a6f44d8ae451b0869806fa93340e5fc5dd9a109c88b131d496539b" }, "downloads": -1, "filename": "facebook_business-7.0.3.tar.gz", "has_sig": false, "md5_digest": "e526480e1d2c7d59b045563481443120", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 482571, "upload_time": "2020-06-22T16:30:45", "upload_time_iso_8601": "2020-06-22T16:30:45.621833Z", "url": "https://files.pythonhosted.org/packages/39/bc/db75092361020bbcb1ff89b2a605f698948126a5009207ca0c40c4361b03/facebook_business-7.0.3.tar.gz", "yanked": false, "yanked_reason": null } ], "7.0.4": [ { "comment_text": "", "digests": { "md5": "e7ad0e2dd44ccba4b8d748ec8303b4e5", "sha256": "1cace1ee85ce05f5d4162b8ae47cb2e373175df846bb5e214156db4ce0f61430" }, "downloads": -1, "filename": "facebook_business-7.0.4-py3-none-any.whl", "has_sig": false, "md5_digest": "e7ad0e2dd44ccba4b8d748ec8303b4e5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1003424, "upload_time": "2020-08-01T01:09:42", "upload_time_iso_8601": "2020-08-01T01:09:42.855215Z", "url": "https://files.pythonhosted.org/packages/98/c2/78c07fc66e967e1c61509693c6d49346e9608b706887edbb5f3b09929537/facebook_business-7.0.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0397be6ca04d2e5d5346ea06317f6811", "sha256": "3f0f18bced8620aecb1d4cfcfcc1743903e7e94bb0a6d360ac7e2dee999f351c" }, "downloads": -1, "filename": "facebook_business-7.0.4.tar.gz", "has_sig": false, "md5_digest": "0397be6ca04d2e5d5346ea06317f6811", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 487402, "upload_time": "2020-08-01T01:09:44", "upload_time_iso_8601": "2020-08-01T01:09:44.214671Z", "url": "https://files.pythonhosted.org/packages/ee/4f/3a7f489046b7887f7e82f3147cc9d4191ffb54bb117c1a541013c827f5d7/facebook_business-7.0.4.tar.gz", "yanked": false, "yanked_reason": null } ], "8.0.0": [ { "comment_text": "", "digests": { "md5": "ad0a814e4a88757ea3120c97f1a4dc89", "sha256": "1031f4d7bcede6ad2e85386582fe65b0cbece615e7d62844a0f77b7595f325ad" }, "downloads": -1, "filename": "facebook_business-8.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "ad0a814e4a88757ea3120c97f1a4dc89", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 994262, "upload_time": "2020-08-05T06:49:59", "upload_time_iso_8601": "2020-08-05T06:49:59.733466Z", "url": "https://files.pythonhosted.org/packages/e2/11/5e50b3eb872bdb85836fac39b2c6c63732566eb9e4b86855fd5d797e58d8/facebook_business-8.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f1c426cfe3ac0e76b137f48f16940b3d", "sha256": "185e1da1355ad65d922d0a7cf90dfbd3074c924dc2f87a5d5798f3fae3bd2b3c" }, "downloads": -1, "filename": "facebook_business-8.0.0.tar.gz", "has_sig": false, "md5_digest": "f1c426cfe3ac0e76b137f48f16940b3d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 485863, "upload_time": "2020-08-05T06:50:01", "upload_time_iso_8601": "2020-08-05T06:50:01.294782Z", "url": "https://files.pythonhosted.org/packages/63/60/6bc6d8ca37069310b6c6c848e08e431e074f78e196cca9548a6af2961427/facebook_business-8.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "8.0.1": [ { "comment_text": "", "digests": { "md5": "5a2e8dcb85212e5f3558415c44646fe6", "sha256": "aad579fdbe11bc31304916f65d137331e3e3839d3b2ff37c426ac88a2dd5cee0" }, "downloads": -1, "filename": "facebook_business-8.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "5a2e8dcb85212e5f3558415c44646fe6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 994260, "upload_time": "2020-08-20T20:51:45", "upload_time_iso_8601": "2020-08-20T20:51:45.317162Z", "url": "https://files.pythonhosted.org/packages/ab/35/39c5d0f77cd4ea7192708de778261ed5a9b5e073bbdca7f4ce38ecb27a29/facebook_business-8.0.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c3ee8510ac31f79f9bffc4b9c8ac8296", "sha256": "f0122f38f4f3cbf58222de81d1f12bf0f49880b11e22f01c7158ea659f7262f9" }, "downloads": -1, "filename": "facebook_business-8.0.1.tar.gz", "has_sig": false, "md5_digest": "c3ee8510ac31f79f9bffc4b9c8ac8296", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 485905, "upload_time": "2020-08-20T20:51:47", "upload_time_iso_8601": "2020-08-20T20:51:47.083772Z", "url": "https://files.pythonhosted.org/packages/1a/b1/6aa5b9e06c8cbf2cda7c25d41d947225b169a35629a87bcf8faca79e3964/facebook_business-8.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "8.0.2": [ { "comment_text": "", "digests": { "md5": "b4b74ea6a644290bedf98f59bb44ea96", "sha256": "b35c72262c44f7d57e535e4202cf7a56359d54fef9b7136f9626f81d0a48dc06" }, "downloads": -1, "filename": "facebook_business-8.0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "b4b74ea6a644290bedf98f59bb44ea96", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1001558, "upload_time": "2020-08-26T06:49:42", "upload_time_iso_8601": "2020-08-26T06:49:42.726043Z", "url": "https://files.pythonhosted.org/packages/ed/0f/f7ec59cabf8cb73d944809171a47f6ff053e29b1a87d6ec9c9b013328cbf/facebook_business-8.0.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f231624c4fe9f32a904664a28cffc6c0", "sha256": "83159c182d7c55df767001fe385507cef7e95422452a11cc6a1accf887a9951c" }, "downloads": -1, "filename": "facebook_business-8.0.2.tar.gz", "has_sig": false, "md5_digest": "f231624c4fe9f32a904664a28cffc6c0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 490620, "upload_time": "2020-08-26T06:49:44", "upload_time_iso_8601": "2020-08-26T06:49:44.215961Z", "url": "https://files.pythonhosted.org/packages/15/9e/2f41da49f1c85a0277dfa32510fb371b56186685cfd2ba5d81d18d2a4bf4/facebook_business-8.0.2.tar.gz", "yanked": false, "yanked_reason": null } ], "8.0.3": [ { "comment_text": "", "digests": { "md5": "d232b07ce0fd003a784535c1726021d2", "sha256": "1e5987f756bb88ca6048731295a95454c1335bf8bf9571f71fa7ae1e702be07d" }, "downloads": -1, "filename": "facebook_business-8.0.3-py3-none-any.whl", "has_sig": false, "md5_digest": "d232b07ce0fd003a784535c1726021d2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1004343, "upload_time": "2020-09-14T21:30:10", "upload_time_iso_8601": "2020-09-14T21:30:10.003523Z", "url": "https://files.pythonhosted.org/packages/14/4a/28af57373ee23a092311771b61364d5c96ab99099560cac9dff8bf071b39/facebook_business-8.0.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1570e34ff258ec72f112ed33debc6817", "sha256": "08d07089da38a704a4bdfe42f88adf24853756573a3b8748c3c7e49560a4dc7c" }, "downloads": -1, "filename": "facebook_business-8.0.3.tar.gz", "has_sig": false, "md5_digest": "1570e34ff258ec72f112ed33debc6817", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 492052, "upload_time": "2020-09-14T21:30:11", "upload_time_iso_8601": "2020-09-14T21:30:11.332848Z", "url": "https://files.pythonhosted.org/packages/ef/b7/f1b3bc71bdcfcc41f7fb11e5f576422951147ac8d327bf7b77e7299fb1cf/facebook_business-8.0.3.tar.gz", "yanked": false, "yanked_reason": null } ], "8.0.4": [ { "comment_text": "", "digests": { "md5": "1eecc972a45311f849b4f138713bd893", "sha256": "69b8ef18ba6e5ccb3c8c4669e28ecda04b766da048b33d1203e58f8dfca229c9" }, "downloads": -1, "filename": "facebook_business-8.0.4-py3-none-any.whl", "has_sig": false, "md5_digest": "1eecc972a45311f849b4f138713bd893", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1007888, "upload_time": "2020-09-18T00:51:12", "upload_time_iso_8601": "2020-09-18T00:51:12.008921Z", "url": "https://files.pythonhosted.org/packages/0d/77/1e8b62759c16b4aa3814dec2f46335024bcd93d5182656efed6e6b755c0f/facebook_business-8.0.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "423271ad5ae31e8ea8e1b314b10f234b", "sha256": "2f138e3e36a6a03998b30db645be61dcc4e9aaed3380c79751d2739b96862310" }, "downloads": -1, "filename": "facebook_business-8.0.4.tar.gz", "has_sig": false, "md5_digest": "423271ad5ae31e8ea8e1b314b10f234b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 493278, "upload_time": "2020-09-18T00:51:13", "upload_time_iso_8601": "2020-09-18T00:51:13.144768Z", "url": "https://files.pythonhosted.org/packages/f8/87/9696eda8e9db21a7569fd49f54e532893e083e711defa2911f6fdc2df599/facebook_business-8.0.4.tar.gz", "yanked": false, "yanked_reason": null } ], "8.0.5": [ { "comment_text": "", "digests": { "md5": "ec9461273d74703b40e3c4f427b570a9", "sha256": "381c86b4678cb5ea14a37770f975ace937b04f1e56350f8c404fe3aacc1d8512" }, "downloads": -1, "filename": "facebook_business-8.0.5-py3-none-any.whl", "has_sig": false, "md5_digest": "ec9461273d74703b40e3c4f427b570a9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1012939, "upload_time": "2020-10-02T00:15:51", "upload_time_iso_8601": "2020-10-02T00:15:51.272730Z", "url": "https://files.pythonhosted.org/packages/0b/e8/a88b1a29bc946e9a7c9a7f5867d3b6557b29b69e949c94f7dff52f837b74/facebook_business-8.0.5-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0cc2e51274ea71a2e8aedd4507e0bbdf", "sha256": "0d900269b9f8ea4dd948e263ce4b77b1a4e62616b10dee4c690ad04bd6ab7d6c" }, "downloads": -1, "filename": "facebook_business-8.0.5.tar.gz", "has_sig": false, "md5_digest": "0cc2e51274ea71a2e8aedd4507e0bbdf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 495860, "upload_time": "2020-10-02T00:15:52", "upload_time_iso_8601": "2020-10-02T00:15:52.890022Z", "url": "https://files.pythonhosted.org/packages/4f/04/1d5d5d7c781f0fe9bded2843f592d5a58b3204a54ec485079b5252141629/facebook_business-8.0.5.tar.gz", "yanked": false, "yanked_reason": null } ], "8.0.6": [ { "comment_text": "", "digests": { "md5": "418823da097a835efc392df006a63101", "sha256": "715dfa475970a76c276fbb9c10139b458045c41be9259512aa08ec41f65c99bc" }, "downloads": -1, "filename": "facebook_business-8.0.6-py2-none-any.whl", "has_sig": false, "md5_digest": "418823da097a835efc392df006a63101", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 1013100, "upload_time": "2020-11-13T18:53:10", "upload_time_iso_8601": "2020-11-13T18:53:10.895092Z", "url": "https://files.pythonhosted.org/packages/e1/a2/0f01e6e72681a575a06df1813e62fc62af15c3bbb188169b04a3e1566465/facebook_business-8.0.6-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7acc6e93c58feb1af07f1043d6ba3ca6", "sha256": "fdea305262b00777575d2103a661dbe5502a97b0c60de223b9ef56cb2d1c67f1" }, "downloads": -1, "filename": "facebook_business-8.0.6.tar.gz", "has_sig": false, "md5_digest": "7acc6e93c58feb1af07f1043d6ba3ca6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 511311, "upload_time": "2020-11-13T18:53:13", "upload_time_iso_8601": "2020-11-13T18:53:13.355862Z", "url": "https://files.pythonhosted.org/packages/b4/c9/3a61f687b3072543a8adf093b1bf8bca23f14f7f9803cc53ffd3a930d563/facebook_business-8.0.6.tar.gz", "yanked": false, "yanked_reason": null } ], "9.0.0": [ { "comment_text": "", "digests": { "md5": "5448935323dc9636e007c51a7cc37889", "sha256": "a40db576c22f0fc60955e922772ceb4cd092cb5037e1ce9867b6718dc0894be7" }, "downloads": -1, "filename": "facebook_business-9.0.0-py2-none-any.whl", "has_sig": false, "md5_digest": "5448935323dc9636e007c51a7cc37889", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 1012926, "upload_time": "2020-11-16T22:42:37", "upload_time_iso_8601": "2020-11-16T22:42:37.276214Z", "url": "https://files.pythonhosted.org/packages/88/c8/80b5a4d47cbb591a43af86e1143dd3143620a236b5dd7b29e82643434815/facebook_business-9.0.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "57403e04a3b5ade050c349cb90dbce26", "sha256": "fd531ba91ac828ee6b4f64e93fa22c7708b52b8fb7b9eb03f86b5b4d87044456" }, "downloads": -1, "filename": "facebook_business-9.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "57403e04a3b5ade050c349cb90dbce26", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1012925, "upload_time": "2020-12-08T23:57:39", "upload_time_iso_8601": "2020-12-08T23:57:39.333070Z", "url": "https://files.pythonhosted.org/packages/0d/00/305d24b392040514b681788f0e97f085a5d3cdab0e4473290b88c3b8bf70/facebook_business-9.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "aec77d5382cb7fa88e5a3fccfe639ad1", "sha256": "3720744990951a81b9f192c5611d6fa7da646bbee697000e35004c9d8451e8e5" }, "downloads": -1, "filename": "facebook_business-9.0.0.tar.gz", "has_sig": false, "md5_digest": "aec77d5382cb7fa88e5a3fccfe639ad1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 511544, "upload_time": "2020-11-16T22:42:43", "upload_time_iso_8601": "2020-11-16T22:42:43.541166Z", "url": "https://files.pythonhosted.org/packages/f6/1d/660dd274f0d0f11f14e19c2b16751b93aa1d3e78af7d18577bcdf88e6251/facebook_business-9.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "9.0.1": [ { "comment_text": "", "digests": { "md5": "9576fe8ac1c79139e4190f4fb08331a8", "sha256": "854e79cf8812cff403ff52d037b38e52d0381d316282de913cd2594f0d6ae12f" }, "downloads": -1, "filename": "facebook_business-9.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "9576fe8ac1c79139e4190f4fb08331a8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1014426, "upload_time": "2020-12-16T19:23:47", "upload_time_iso_8601": "2020-12-16T19:23:47.279808Z", "url": "https://files.pythonhosted.org/packages/d4/87/8848716e1c5379547a57698c2625b41d9f1c41515eb639ae5c53a2efb3d6/facebook_business-9.0.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2a6c8e25ef3e1b71aa27a5a18ace4a3c", "sha256": "01bd5f968caeaed3e1a609cdd79e546fc9d77aefcc4ce6e53837d9058600a920" }, "downloads": -1, "filename": "facebook_business-9.0.1.tar.gz", "has_sig": false, "md5_digest": "2a6c8e25ef3e1b71aa27a5a18ace4a3c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 511083, "upload_time": "2020-12-16T19:23:48", "upload_time_iso_8601": "2020-12-16T19:23:48.694316Z", "url": "https://files.pythonhosted.org/packages/25/40/5b06b222a33781a3278a5f7c86ad3fe76c9a000bf523f30b74947915f76c/facebook_business-9.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "9.0.2": [ { "comment_text": "", "digests": { "md5": "4127770d86759797f95f3854f2be8a9c", "sha256": "f07ea5bbc54dc81ee5d92c35aff4958962664b4dbaed74c1725798daeec79b36" }, "downloads": -1, "filename": "facebook_business-9.0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "4127770d86759797f95f3854f2be8a9c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1009211, "upload_time": "2021-01-14T01:49:25", "upload_time_iso_8601": "2021-01-14T01:49:25.171807Z", "url": "https://files.pythonhosted.org/packages/3d/72/9ab7106cbaedee777b3be6d7f1e3b46af89d3501fd4470c06610950a1ccc/facebook_business-9.0.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3a851c582d53e7e07efd9fc05a48e956", "sha256": "3409103f0b66abc1e1b0d76679151672618dfdf0491223cd0e6a02ad59d43c9a" }, "downloads": -1, "filename": "facebook_business-9.0.2.tar.gz", "has_sig": false, "md5_digest": "3a851c582d53e7e07efd9fc05a48e956", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 506774, "upload_time": "2021-01-14T01:49:26", "upload_time_iso_8601": "2021-01-14T01:49:26.480925Z", "url": "https://files.pythonhosted.org/packages/9f/44/c5640486b76471a8a6161c5bdb22097949f4e87bfddb389d77f6c98dabbf/facebook_business-9.0.2.tar.gz", "yanked": false, "yanked_reason": null } ], "9.0.3": [ { "comment_text": "", "digests": { "md5": "344e0e5dfeb3b278fada73180a3f69fc", "sha256": "e7367d773875124d8ac3a0089588805f70b150895a625866975964d1331cb773" }, "downloads": -1, "filename": "facebook_business-9.0.3-py3-none-any.whl", "has_sig": false, "md5_digest": "344e0e5dfeb3b278fada73180a3f69fc", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1014779, "upload_time": "2021-02-16T23:49:29", "upload_time_iso_8601": "2021-02-16T23:49:29.416360Z", "url": "https://files.pythonhosted.org/packages/43/8f/039ca72c6969c38c38e24489ea70722b634e649d8f21716c40dc73743760/facebook_business-9.0.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9a058d51b47fc732bf2a8537f2372fee", "sha256": "507eed2fe6075dd6569a4305d0f7ddfbc4c342c84e4ec06ea99b4b7d09ba99c9" }, "downloads": -1, "filename": "facebook_business-9.0.3.tar.gz", "has_sig": false, "md5_digest": "9a058d51b47fc732bf2a8537f2372fee", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 510525, "upload_time": "2021-02-16T23:49:31", "upload_time_iso_8601": "2021-02-16T23:49:31.154193Z", "url": "https://files.pythonhosted.org/packages/5b/ff/da5d5f77ddd7df322d027a0958314ec539591508f5b5ad02ed9db6de26bd/facebook_business-9.0.3.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "cf4e5bf3f633c335f93e0c0f5d8f78a7", "sha256": "d4a885bdbc8ba95b5256d221ff13d22e280d361797a902330c8425227099f669" }, "downloads": -1, "filename": "facebook_business-13.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "cf4e5bf3f633c335f93e0c0f5d8f78a7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1030102, "upload_time": "2022-04-03T16:03:11", "upload_time_iso_8601": "2022-04-03T16:03:11.967483Z", "url": "https://files.pythonhosted.org/packages/63/e4/e85c2e31a850e1963feab5b46350f8fb44ed8d7d18b9ba4d4e5a576fe8d6/facebook_business-13.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b34f52c07033a4d809bfdb1f03015267", "sha256": "3b72810e0af28e3e8d2bb2459669a253b86269abbedc6adcdca792c2f6f364e9" }, "downloads": -1, "filename": "facebook_business-13.0.0.tar.gz", "has_sig": false, "md5_digest": "b34f52c07033a4d809bfdb1f03015267", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 510227, "upload_time": "2022-04-03T16:03:14", "upload_time_iso_8601": "2022-04-03T16:03:14.057531Z", "url": "https://files.pythonhosted.org/packages/b5/69/929b7cffae4dc28956affbba40af985777996e56d4e166d38ffa2657bc89/facebook_business-13.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }