{ "info": { "author": "Viktor Krasheninnikov", "author_email": "krasherspost@gmail.com", "bugtrack_url": null, "classifiers": [], "description": "Copyright (c) 2019 Viktor Krasheninnikov\nhttps://github.com/VikGit/byebyebots-instagram.git\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\nDescription: # ByeByeBots for Instagram\n Unsubscribe Instagram accounts who follows to more than _N_ (e.g. 1500) accounts, because they are not only don't see your posts, but also reduce your stats.\n \n ## Long story short\n Say goodbye to all Internet-shops, follow4follow, and automatically subscribed to you Instagram accounts.\n \n ## Long story long\n In 2018, Instagram has changed the algorithm and there\u2019s no question about it, Instagram posts are no longer getting the amount of exposure they used to. Now, it\u2019s estimated that only **10%** of your audience is actually seeing your posts.\n This can be extremely frustrating for users who aren\u2019t seeing their friends and family\u2019s posts, businesses hoping to reach new customers, and even worse for influencers whose business model depends on their followers seeing their content.\n \n Since the original shift from a chronological feed, we\u2019ve known the Instagram algorithm is mainly based on engagement. This includes number of likes, comments, video views, saves, shared posts, DM\u2019s and any other type of interactions a post gets. More info in the [original post](https://later.com/blog/how-instagram-algorithm-works/).\n \n Imagine you have 150 followers, and average amount of likes on your photos is 50. Having that, Instagram thinks that your posts are interested to only 33% of your followers. Then imagine that 50 of your 150 followers are not real people - bussines accounts, Internet-shops etc. Those accounts are only interested in you seeing them, they are not insterested in your life or posts - we can easily unsubscribe them from us. Thus, you'll have 100 followers and your 50 likes becomes 50% instead of 33%! This will give the instagram a sign that your posts engage more people in activity, and it will more recommend your account for viewing to other people.\n \n ## Logic\n The tool combines both BeautifulSoup response parsing and unofficial Instagram API developed by [LevPasha](https://github.com/LevPasha/Instagram-API-python). This hepls to reduce number of [429 HTTP responces](https://stackoverflow.com/questions/49606300/instagram-api-request-limit-max-200-only-2018-april) during processing.\n \n To detect who is bot and who's not is pretty complicated nowaday, often bots put a few random likes or comments, to simulate users activity. We can suppose that if account is subscribed to 1500+ accounts - it's a bot-like. With new Instagram alghoritm, this account will see only the top-rated post, and if your are not super star, your posts most probably won't even shown to them. \n \n The logic is straighforward:\n 1. Get accounts subscribed to you\n 2. Take away accounts to which you are subscribed\n 3. Unsubscribe from you accounts with more than _N_ subscriptions\n \n ## Installation\n The tool was developed and tested with Python 3.7.1, but it should be fine with any 3.x.x. \n To install the package from PyPi run:\n ```\n pip3 install byebyebots\n ```\n \n Alternatively, you can install it from source:\n ```\n git clone git@github.com:VikGit/byebyebots-instagram.git\n cd byebyebots-instagram\n python3 setup.py install\n ```\n \n ## Usage\n ```\n usage: byebyebots [-h] [-u USER] [-p PASSWORD] [-l LIMIT]\n [--email_sender_user EMAIL_SENDER_USER]\n [--email_sender_password EMAIL_SENDER_PASSWORD]\n [--email_recipient EMAIL_RECIPIENT] [--yes] [--dryrun]\n \n Unsubscribe user with unrealistic number of followings\n \n optional arguments:\n -h, --help show this help message and exit\n -u USER, --user USER Username fot the Instagram account\n -p PASSWORD, --password PASSWORD\n Password fot the Instagram account\n -l LIMIT, --limit LIMIT\n Number of followings which can be considered\n unrealistic\n --email_sender_user EMAIL_SENDER_USER\n Email of service user to deliver notifications\n --email_sender_password EMAIL_SENDER_PASSWORD\n Password of service user to deliver notifications\n --email_recipient EMAIL_RECIPIENT\n Password of service user to deliver notifications\n --yes Proceed without manul approving of unsubscribe action\n --dryrun Replace unsubscribe action with a safe one, for\n testing purposes\n ```\n \n ## Examples\n Run in interactove dryrun mode to see how many potential bots are going to be unsubscribed. You will be asked to authenticate to Instagram account:\n ```\n byebyebots --dryrun\n ```\n \n Run in non-interactive mode. Remove `--dryrun` option to proceed with unsubscribing. \n ```\n goodbyebots -u instagram_login -p instagram_password --yes --dryrun\n ```\n In case you decide to run this tool by schedule, it supports email notifications. First, you'll need to create a mailbox for service user - from who you'll receive notifications. If you select Gmail, you'll probably need to [allow this script](https://support.google.com/accounts/answer/6010255) to use that mailbox. \n When done, pass service-user credentials to the script and specify your own email - to which you'll send notifications. Remove `--dryrun` option to proceed with unsubscribing.\n ```\n goodbyebots --email_sender_user sender_login@gmail.com --email_sender_pass sender_pass --email_recipient myemail@gmail.com -u instagram_login -p instagram_password --yes --dryrun\n ```\n \nKeywords: instagram bots unsubscribe\nPlatform: UNKNOWN\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/VikGit/byebyebots-instagram.git", "keywords": "", "license": "MIT License", "maintainer": "", "maintainer_email": "", "name": "byebyebots", "package_url": "https://pypi.org/project/byebyebots/", "platform": "", "project_url": "https://pypi.org/project/byebyebots/", "project_urls": { "Homepage": "https://github.com/VikGit/byebyebots-instagram.git" }, "release_url": "https://pypi.org/project/byebyebots/0.1.0/", "requires_dist": [ "InstagramApi (==1.0.2)", "bs4 (==0.0.1)" ], "requires_python": "", "summary": "Unsubscribe bot-like users from the Instagram account", "version": "0.1.0" }, "last_serial": 4779744, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "7f3b127764403f5b211b022bce811bb8", "sha256": "931260a7769dfae98128dd610059dc1d75a01f897378596b09b66d15975328b1" }, "downloads": -1, "filename": "byebyebots-0.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "7f3b127764403f5b211b022bce811bb8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 9598, "upload_time": "2019-02-03T10:16:48", "url": "https://files.pythonhosted.org/packages/51/77/dedab17be403c628e79b090155a26e22c5472f2331535db33a8b5a422203/byebyebots-0.0.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b04ccec774fb3c06859135225790dab4", "sha256": "8c2e93c47d94ae0a2d6d2564e5b858dea4a0137c6f43fe6dfc420811ea7d684a" }, "downloads": -1, "filename": "byebyebots-0.0.1.tar.gz", "has_sig": false, "md5_digest": "b04ccec774fb3c06859135225790dab4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8380, "upload_time": "2019-02-03T10:16:50", "url": "https://files.pythonhosted.org/packages/4c/ab/ab37f57dc9e89069027ab4ebc0d122352c64e8d6356480fbe56968719b2f/byebyebots-0.0.1.tar.gz" } ], "0.0.2": [ { "comment_text": "", "digests": { "md5": "eeaa669cc5c280f0b0d08e848c3beed1", "sha256": "b32e46c611c375b204165fb2a5a9aa61991babb68922d022bf1a11b28c349147" }, "downloads": -1, "filename": "byebyebots-0.0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "eeaa669cc5c280f0b0d08e848c3beed1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 5068, "upload_time": "2019-02-03T10:51:18", "url": "https://files.pythonhosted.org/packages/1e/a9/93b8b117d5bac2e3282acf5ad3a1d5646b9966c08eb59f0f734eb00e45e7/byebyebots-0.0.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "51efcb3db284c008b9db4ff80818174c", "sha256": "ed6de5b34b8934bd147ad687ca00a6ddfbcf84b1ea1c66c0744c08b101788fef" }, "downloads": -1, "filename": "byebyebots-0.0.2.tar.gz", "has_sig": false, "md5_digest": "51efcb3db284c008b9db4ff80818174c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4293, "upload_time": "2019-02-03T10:51:19", "url": "https://files.pythonhosted.org/packages/ed/88/618679257a33d973b5169613b1458a90e7cde5613f09d290b4219d7fb118/byebyebots-0.0.2.tar.gz" } ], "0.0.3": [ { "comment_text": "", "digests": { "md5": "bcc6e30a726df16f1fa23136656914a7", "sha256": "7438cc42b851204d2df4da1513f402a116377fbc9e400dc97613564b4bb8c4db" }, "downloads": -1, "filename": "byebyebots-0.0.3-py3-none-any.whl", "has_sig": false, "md5_digest": "bcc6e30a726df16f1fa23136656914a7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 9856, "upload_time": "2019-02-03T10:57:28", "url": "https://files.pythonhosted.org/packages/7f/9a/bb32ee20bd1632f7433a495fddc928ce6cf2175f29a1e9a4c3e489478f58/byebyebots-0.0.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "424a53dd307a6d5cf5856adfd5c559ab", "sha256": "fa074d694b06868e119fca917993b919e66d89904cbc703488480f4dd3a772ae" }, "downloads": -1, "filename": "byebyebots-0.0.3.tar.gz", "has_sig": false, "md5_digest": "424a53dd307a6d5cf5856adfd5c559ab", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8471, "upload_time": "2019-02-03T10:57:30", "url": "https://files.pythonhosted.org/packages/a6/74/9d036ea99fd82efc76adc4d14a84467c322812c135ea5cbad427db1e9f0d/byebyebots-0.0.3.tar.gz" } ], "0.0.4": [ { "comment_text": "", "digests": { "md5": "b877e53341252ce35147b3311604a5a6", "sha256": "61d6c178089d7d2770d4657f5a0b5d00cac05427d27869b51e1fa35078714fb9" }, "downloads": -1, "filename": "byebyebots-0.0.4-py3-none-any.whl", "has_sig": false, "md5_digest": "b877e53341252ce35147b3311604a5a6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 9865, "upload_time": "2019-02-03T11:00:36", "url": "https://files.pythonhosted.org/packages/28/18/c688e2d063080cf296fcdeb8a2c5ca4d62a6b6e35ec7f8b4c18d2a8d87a2/byebyebots-0.0.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a53ef2d8a0045ce68261ec50083f8f96", "sha256": "e0c064a0075ef2520df3fe51b3c136ab79ad369effa1a937b0cd20a84c1f0bf1" }, "downloads": -1, "filename": "byebyebots-0.0.4.tar.gz", "has_sig": false, "md5_digest": "a53ef2d8a0045ce68261ec50083f8f96", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8478, "upload_time": "2019-02-03T11:00:38", "url": "https://files.pythonhosted.org/packages/aa/6d/cfa704965ffef3d1353ac6aa60e19bbda6c869cce1008ea6e84156196329/byebyebots-0.0.4.tar.gz" } ], "0.0.5": [ { "comment_text": "", "digests": { "md5": "b1fc2f917e58db7dcbcc84690e8a81cd", "sha256": "72b8f2a44a5af24078ce4bcc83caa378bcb03f8a443f3def380da35e0ff88cea" }, "downloads": -1, "filename": "byebyebots-0.0.5-py3-none-any.whl", "has_sig": false, "md5_digest": "b1fc2f917e58db7dcbcc84690e8a81cd", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 5061, "upload_time": "2019-02-03T11:11:19", "url": "https://files.pythonhosted.org/packages/94/4b/e28e979887ff4d51c24937ddd4707ee76c3bef740ed12d75b5d937188880/byebyebots-0.0.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f7b616dc62e317b13bf57e80eb2e7850", "sha256": "b2fef0505c129dd48e33d65789aa7a0253ba7dba822815036903bcbb93714631" }, "downloads": -1, "filename": "byebyebots-0.0.5.tar.gz", "has_sig": false, "md5_digest": "f7b616dc62e317b13bf57e80eb2e7850", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4318, "upload_time": "2019-02-03T11:11:21", "url": "https://files.pythonhosted.org/packages/16/d1/731225aadd8d71f02d1a92e5777549c683ef9053d070ff06fee4415b9a5d/byebyebots-0.0.5.tar.gz" } ], "0.0.6": [ { "comment_text": "", "digests": { "md5": "626b33711b99e1420480e819a4b355a9", "sha256": "68fb2bbd9233fb108cad5f4b8a40b2399a5a501fdce4d4ca5fd3724068c91cd3" }, "downloads": -1, "filename": "byebyebots-0.0.6-py3-none-any.whl", "has_sig": false, "md5_digest": "626b33711b99e1420480e819a4b355a9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 9866, "upload_time": "2019-02-03T11:17:39", "url": "https://files.pythonhosted.org/packages/37/ce/6b55eca8cf6987240696d9ac3e7c1bae96b1d2ade5384cb8904d2869a983/byebyebots-0.0.6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a8d0a14b0bc84b096f3c52fa8ccb3718", "sha256": "4cac42666a222446bd8758323331dc796c8759813eefa6fb0aa6e61fd1923b0c" }, "downloads": -1, "filename": "byebyebots-0.0.6.tar.gz", "has_sig": false, "md5_digest": "a8d0a14b0bc84b096f3c52fa8ccb3718", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8488, "upload_time": "2019-02-03T11:17:40", "url": "https://files.pythonhosted.org/packages/9b/0d/5933c2a6ee8ed90633d673719034ea28659c91938e5e37f13ffcf658b9d1/byebyebots-0.0.6.tar.gz" } ], "0.0.7": [ { "comment_text": "", "digests": { "md5": "3cfa5713f885c6521d4184201219f8ee", "sha256": "beb1fc8ce1626e97e404f80b50831c21caf6cc1ad05a3461879eb6f057240d5a" }, "downloads": -1, "filename": "byebyebots-0.0.7-py3-none-any.whl", "has_sig": false, "md5_digest": "3cfa5713f885c6521d4184201219f8ee", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 9867, "upload_time": "2019-02-03T11:19:46", "url": "https://files.pythonhosted.org/packages/63/54/d9e29269fd4a6d72f1e1dd0b572e7c26be9597e03e5dacb8ca9176cabc94/byebyebots-0.0.7-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cc6fc39b79ebb9743f810696b68d56dc", "sha256": "fb1c27517a9dffc7a909699c57ceb5b2ed2152ecda70743774ce906e89409f09" }, "downloads": -1, "filename": "byebyebots-0.0.7.tar.gz", "has_sig": false, "md5_digest": "cc6fc39b79ebb9743f810696b68d56dc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8483, "upload_time": "2019-02-03T11:19:47", "url": "https://files.pythonhosted.org/packages/08/73/8b5d8a3b9881825ca4bd6ff110a4e856733500411d2178aa02939ae75522/byebyebots-0.0.7.tar.gz" } ], "0.0.8": [ { "comment_text": "", "digests": { "md5": "e28de64b7bd9658fc1247717187ba723", "sha256": "b64c2195177b056b1ad56ce1e72ce902f5d88c61aad541d9499d463797e53a85" }, "downloads": -1, "filename": "byebyebots-0.0.8-py3-none-any.whl", "has_sig": false, "md5_digest": "e28de64b7bd9658fc1247717187ba723", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 9873, "upload_time": "2019-02-03T13:49:33", "url": "https://files.pythonhosted.org/packages/08/3a/71ff1f08c9761146757684da1f3c023354ee37adc7d3fd5f8f1ec1fccc4f/byebyebots-0.0.8-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e65e95c7f7b0c1311a00b4f750736cce", "sha256": "bb31eed08a35cf85deac3492b5c7c105447af578e7706ffd79b2b7f580215801" }, "downloads": -1, "filename": "byebyebots-0.0.8.tar.gz", "has_sig": false, "md5_digest": "e65e95c7f7b0c1311a00b4f750736cce", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8481, "upload_time": "2019-02-03T13:49:34", "url": "https://files.pythonhosted.org/packages/b3/ff/67f10a8d768e8e6dbe38e978ab00c196636e172003e63089caa93c95cd53/byebyebots-0.0.8.tar.gz" } ], "0.0.9": [ { "comment_text": "", "digests": { "md5": "e785329ede9b972f0140e0e6f71ba196", "sha256": "19c30278d3aa0dc4fb414fc55c6d3b4fd4c3d4d2ce9785463a80bfc2e61eb8cc" }, "downloads": -1, "filename": "byebyebots-0.0.9-py3-none-any.whl", "has_sig": false, "md5_digest": "e785329ede9b972f0140e0e6f71ba196", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 9913, "upload_time": "2019-02-04T21:52:34", "url": "https://files.pythonhosted.org/packages/9c/b2/1fa2a27e73ec04baa98962f6870453c0f2665370971ad30f33faf9b34647/byebyebots-0.0.9-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "568853075229a7362b0af07075188773", "sha256": "e51bbe614d05122f7b2796b2679914746454d8d10d78ee04a284294b8e6cf26e" }, "downloads": -1, "filename": "byebyebots-0.0.9.tar.gz", "has_sig": false, "md5_digest": "568853075229a7362b0af07075188773", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8527, "upload_time": "2019-02-04T21:52:35", "url": "https://files.pythonhosted.org/packages/f4/f4/5ea8936147f180d364310efc8f4c1efe5e72698e983e00d952d43e81dcc2/byebyebots-0.0.9.tar.gz" } ], "0.1.0": [ { "comment_text": "", "digests": { "md5": "880f0c21e6bb94572b22553091aaa4ba", "sha256": "242ce1cc1404379561996f3125a4bf862abeb9ecad30a39d435089bed6313f41" }, "downloads": -1, "filename": "byebyebots-0.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "880f0c21e6bb94572b22553091aaa4ba", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 9912, "upload_time": "2019-02-04T22:00:10", "url": "https://files.pythonhosted.org/packages/dc/6f/3ae16797e6b96704e42f87db169e9f8be61694b13d32c3d1510de34f48f5/byebyebots-0.1.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e2a1c058474bd7dba745fc61851dbe68", "sha256": "1c94c94e1c64daa0394255b7ca7133989361b597abb2f3aba45e467029b75085" }, "downloads": -1, "filename": "byebyebots-0.1.0.tar.gz", "has_sig": false, "md5_digest": "e2a1c058474bd7dba745fc61851dbe68", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8531, "upload_time": "2019-02-04T22:00:12", "url": "https://files.pythonhosted.org/packages/ba/7a/8772e5639f416db81aef646f4ee9c75fc80acae88562156516e0ab99dfd6/byebyebots-0.1.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "880f0c21e6bb94572b22553091aaa4ba", "sha256": "242ce1cc1404379561996f3125a4bf862abeb9ecad30a39d435089bed6313f41" }, "downloads": -1, "filename": "byebyebots-0.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "880f0c21e6bb94572b22553091aaa4ba", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 9912, "upload_time": "2019-02-04T22:00:10", "url": "https://files.pythonhosted.org/packages/dc/6f/3ae16797e6b96704e42f87db169e9f8be61694b13d32c3d1510de34f48f5/byebyebots-0.1.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e2a1c058474bd7dba745fc61851dbe68", "sha256": "1c94c94e1c64daa0394255b7ca7133989361b597abb2f3aba45e467029b75085" }, "downloads": -1, "filename": "byebyebots-0.1.0.tar.gz", "has_sig": false, "md5_digest": "e2a1c058474bd7dba745fc61851dbe68", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8531, "upload_time": "2019-02-04T22:00:12", "url": "https://files.pythonhosted.org/packages/ba/7a/8772e5639f416db81aef646f4ee9c75fc80acae88562156516e0ab99dfd6/byebyebots-0.1.0.tar.gz" } ] }