{ "info": { "author": "Brenden Matthews", "author_email": "brenden@diddyinc.com", "bugtrack_url": null, "classifiers": [ "License :: Public Domain", "Operating System :: OS Independent", "Programming Language :: Python :: 3" ], "description": "[![Build Status](https://travis-ci.org/brndnmtthws/tweet-delete.svg?branch=master)](https://travis-ci.org/brndnmtthws/tweet-delete) [![Maintainability](https://api.codeclimate.com/v1/badges/f50f5c31185dd44e5611/maintainability)](https://codeclimate.com/github/brndnmtthws/tweet-delete/maintainability) [![Test Coverage](https://api.codeclimate.com/v1/badges/f50f5c31185dd44e5611/test_coverage)](https://codeclimate.com/github/brndnmtthws/tweet-delete/test_coverage) [![PyPI version](https://badge.fury.io/py/tweet-delete.svg)](https://badge.fury.io/py/tweet-delete)\n\n# tweet-delete \ud83e\udd9c\ud83d\udd2b\n\n`tweet-delete` is a small Python tool for automatically deleting your tweets\nafter some specified amount of time. It is intended to be used to create\nself-destructing tweets. `tweet-delete` runs continuously, and will check\nyour timeline every hour to see if there are any new tweets which\nneed to be deleted. You may also specify a minimum engagement metric, which\nallows you to delete only the tweets that are junk \ud83d\uddd1.\n\nSelf-destructing tweets are the hippest, trendiest, coolest thing on\n[Twitter](https://twitter.com/) right now. Want to be cool and hip? You need\n`tweet-delete`. By creating artificial scarcity you can ten ex (10x) or\none-hundred ex (100x) your personal brand. \ud83d\ude0e\n\nIn spite of the low technical barrier to entry for using this Twitter bot (or\nany similar ones), it does require following some instructions, and the\nTwitter dev account approval process is long and arduous. In other words, you\nwill easily be in the top 0.1% of technically skilled Twitter users. You will\nbe _super extra hip and cool_, and in the upper echelons of thought\nleadership, simply by using this tool. Wear your badge of honour loud and\nproud. Perhaps write \"**These tweets self destruct.**\" in your bio?\n\n## Quickstart\n\n_NOTE: This tool will delete your tweets. Please do not use this tool if you\ndon't want your tweets to be deleted._\n\n### 1. Set up Twitter Dev account\n\nTo get started, you'll need to go to\n[https://developer.twitter.com/en/apps](https://developer.twitter.com/en/apps)\nand set up a Twitter developer account, and create an \"App\".\n\nOnce you're approved (after several days or weeks of waiting), move on to the\nnext step.\n\n### 2. Generate API access tokens\n\n[Follow the instructions\nhere](https://developer.twitter.com/en/docs/basics/authentication/guides/access-tokens)\nto generate your API access tokens. Save these somewhere, as you'll be\nneeding them later.\n\n### 3. Find a place to run the codes\n\nYou'll need a computer somehere, perhaps somewhere up in the clouds, to run\nthe codes. For your convenience, this repo includes a [Helm\nchart](https://helm.sh/) to run this tool on Kubernetes, which is extremely\nAI these days (if you hadn't heard).\n\n### 4. Install\n\nThis is a standard Python package, which can be installed using pip:\n\n```ShellSession\n$ pip install tweet-delete\n...\n```\n\nAlternatively, you can simply use the [pre-built Docker\nimage](https://hub.docker.com/r/brndnmtthws/tweet-delete) if you prefer.\n\n### 5. Run\n\nRun the script by passing it the API keys you generated above. It will run\ncontinuously, and tweet all tweets that are older than `--delete-older-than`\ndays starting on Jan 1, 2019.\n\n```ShellSession\n$ tweet-delete \\\n --consumer_key= \\\n --consumer_secret= \\\n --access_token_key= \\\n --access_token_secret= \\\n --delete_older_than=\"7 days\" \\\n --delete_everything_after=2019-01-01\n...\n```\n\nNow the script will run forever, and delete all of your tweets older than 7\ndays as long as it's running. Congratulations! \ud83c\udf89\ud83c\udf8a\ud83e\udd73\n\n## Performance\n\nThe script features an asynchronous, event-driven core, base on the excellent\n[gevent](http://www.gevent.org/) library. `tweet-delete` should have no\ndifficulty achieving a tweet deletes per second (TDPS) throughput well in\nexcess of 1,000 TDPS. However, practically speaking, you will likely hit the\nTwitter API rate limits long before hitting the script's limits.\n\n## Deployment with Helm\n\nThere's a [Helm](https://helm.sh/) chart included for your convenience. To use the chart, copy [helm/tweet-delete/values.yaml](helm/tweet-delete/values.yaml) somewhere, and install the chart:\n\nNow install the chart:\n\n```ShellSession\n$ cp helm/tweet-delete/values.yaml myvalues\n$ helm upgrade --install tweet-delete helm/tweet-delete -f myvalues.yaml\nRelease \"tweet-delete\" has been upgraded. Happy Helming!\nLAST DEPLOYED: Wed Mar 13 15:08:31 2019\nNAMESPACE: default\nSTATUS: DEPLOYED\n\nRESOURCES:\n==> v1/Deployment\nNAME READY UP-TO-DATE AVAILABLE AGE\ntweet-delete 0/1 1 0 46s\n\n==> v1/Pod(related)\nNAME READY STATUS RESTARTS AGE\ntweet-delete-79bdbd995b-2mrmj 0/1 ContainerCreating 0 0s\n```\n\nSweeeeeet \ud83d\ude0e\n\n## How can I recover deleted tweets?\n\nYou can't! They're gone!\n\nIf your account is public, it's possible that your tweets have been archived\nsomewhere. The internet is a semi-free and open place, so it's relatively\neasy to archive anything you find on it. For example, you may want to try\nrecovering your old tweets from\n[https://snapbird.org/](https://snapbird.org/).\n\n## Limitations\n\nTwitter does not let you retrieve more than 3,200 tweets from their public\nAPI, thus you cannot delete more than 3,200.\n\n## Tip jar\n\n- BTC: 3EEAE1oKEMnmHGU5Qxibv9mBQyNnes8j8N", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/brndnmtthws/tweet-delete", "keywords": "", "license": "", "maintainer": "", "maintainer_email": "", "name": "tweet-delete", "package_url": "https://pypi.org/project/tweet-delete/", "platform": "", "project_url": "https://pypi.org/project/tweet-delete/", "project_urls": { "Homepage": "https://github.com/brndnmtthws/tweet-delete" }, "release_url": "https://pypi.org/project/tweet-delete/0.1.13/", "requires_dist": null, "requires_python": ">=3.5", "summary": "Self-destructing Tweet tool", "version": "0.1.13" }, "last_serial": 4999626, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "c490ac674d274048877a134f52034d43", "sha256": "edb6a2e89314549b08582ddf1b630f1ff322a65ab9fe135783a87eed8b4325fe" }, "downloads": -1, "filename": "tweet-delete-0.1.0.tar.gz", "has_sig": false, "md5_digest": "c490ac674d274048877a134f52034d43", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 7276, "upload_time": "2019-03-13T20:06:29", "url": "https://files.pythonhosted.org/packages/54/84/2e2b199368106b93aa8235c51db05608f70de4e2fb034a3a26355fa2e1b9/tweet-delete-0.1.0.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "822a96443005072e950fbca6e982e465", "sha256": "61f22a2a518b5095affb89c9bed271e64dd070670a7c97cd558b9aea6e8f3488" }, "downloads": -1, "filename": "tweet-delete-0.1.1.tar.gz", "has_sig": false, "md5_digest": "822a96443005072e950fbca6e982e465", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 7914, "upload_time": "2019-03-13T22:51:15", "url": "https://files.pythonhosted.org/packages/0e/94/419a1b73acb7d97c91c32fc5c16930acb97acfbe61d504f9680efc83e3df/tweet-delete-0.1.1.tar.gz" } ], "0.1.10": [ { "comment_text": "", "digests": { "md5": "06d56e9d677d1b7f1db05028b4ffcd83", "sha256": "f4eb520e550e22f845cc6b95d874306b594cb237182550ede6eceadd541e4b4b" }, "downloads": -1, "filename": "tweet-delete-0.1.10.tar.gz", "has_sig": false, "md5_digest": "06d56e9d677d1b7f1db05028b4ffcd83", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 8949, "upload_time": "2019-03-14T21:17:21", "url": "https://files.pythonhosted.org/packages/93/63/73752bbc86873a751b8f1d93fac8515cf238aad4d0660450f6d211af374c/tweet-delete-0.1.10.tar.gz" } ], "0.1.11": [ { "comment_text": "", "digests": { "md5": "dac533c6b988355adc8f8f768ce60e70", "sha256": "0bdd3ceaa5c707eba9a6656c24c75801a60fa3690727b3c8c9193fa80e8c5e19" }, "downloads": -1, "filename": "tweet-delete-0.1.11.tar.gz", "has_sig": false, "md5_digest": "dac533c6b988355adc8f8f768ce60e70", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 11804, "upload_time": "2019-03-16T15:56:50", "url": "https://files.pythonhosted.org/packages/cd/1f/d20eb70fd775eecf2c93467253461a7ca129b4d3ed54ed3daf7978c3aed3/tweet-delete-0.1.11.tar.gz" } ], "0.1.12": [ { "comment_text": "", "digests": { "md5": "82f9caccdaa3570544028102ce2abb92", "sha256": "130947828bde038f8509890f1df72e8f3a083bf92f267d8b676f96324a0201b4" }, "downloads": -1, "filename": "tweet-delete-0.1.12.tar.gz", "has_sig": false, "md5_digest": "82f9caccdaa3570544028102ce2abb92", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 9316, "upload_time": "2019-03-27T12:32:58", "url": "https://files.pythonhosted.org/packages/da/e6/4bdb35e5895b48e20b5da2dccad58136c64f6b934ba3539611855dc54776/tweet-delete-0.1.12.tar.gz" } ], "0.1.13": [ { "comment_text": "", "digests": { "md5": "b734dd403bdc3b947ad091ce5feca196", "sha256": "4a79f9407b95db55dfc3ee927f3199894060b5e7233a203b8a0ec86abdd25c9e" }, "downloads": -1, "filename": "tweet-delete-0.1.13.tar.gz", "has_sig": false, "md5_digest": "b734dd403bdc3b947ad091ce5feca196", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 9306, "upload_time": "2019-03-28T18:31:12", "url": "https://files.pythonhosted.org/packages/93/8f/049c82d8fea06c776c726bb72329f8025d050e382cae9b4b1dd350fc1aa7/tweet-delete-0.1.13.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "b953f512022013d9b1cea3fd568dcba5", "sha256": "66e3b8138c717f315e918a21b9890ca800f14405aa86f1edd18de3b6b421ae5e" }, "downloads": -1, "filename": "tweet-delete-0.1.2.tar.gz", "has_sig": false, "md5_digest": "b953f512022013d9b1cea3fd568dcba5", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 7320, "upload_time": "2019-03-13T23:38:39", "url": "https://files.pythonhosted.org/packages/8e/22/bdc015b9fcf8f54a4adb0deac7b88c48ff0c355a839f14f1b3a1b65429f6/tweet-delete-0.1.2.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "db294d24c0f3358092541ab3ffa40a4d", "sha256": "2b6260894aafbe8084de524583993c7ed34c912c7dc7ab89e4ed993a376776b1" }, "downloads": -1, "filename": "tweet-delete-0.1.3.tar.gz", "has_sig": false, "md5_digest": "db294d24c0f3358092541ab3ffa40a4d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 7340, "upload_time": "2019-03-13T23:39:42", "url": "https://files.pythonhosted.org/packages/4d/ac/58a3f12dde5ebb8a13b0399e60538e67fff2a88ff2041dd7c04ee5247db8/tweet-delete-0.1.3.tar.gz" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "a4ac85935085fbef355c0fec152b7c39", "sha256": "03179d219c44785f41115be505c75751aacd0f9d7fc141b565b0f15cc3591571" }, "downloads": -1, "filename": "tweet-delete-0.1.4.tar.gz", "has_sig": false, "md5_digest": "a4ac85935085fbef355c0fec152b7c39", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 7245, "upload_time": "2019-03-14T01:00:53", "url": "https://files.pythonhosted.org/packages/99/f3/2adf8711fc28651f7466955b37d9f7fe95bbdbc8892bdd9469e5567c7a7e/tweet-delete-0.1.4.tar.gz" } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "d5561105a3611bc945d18d31ada55651", "sha256": "e9bb1d423a8d06cc02596ebf59570d314f3f0e962420a9385ffaecf8286b2948" }, "downloads": -1, "filename": "tweet-delete-0.1.5.tar.gz", "has_sig": false, "md5_digest": "d5561105a3611bc945d18d31ada55651", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 7354, "upload_time": "2019-03-14T01:59:32", "url": "https://files.pythonhosted.org/packages/87/d6/9ba436b3ef378b947138817e2dfbd5a26519b4a8ca3bb8dd7f41f91191c5/tweet-delete-0.1.5.tar.gz" } ], "0.1.7": [ { "comment_text": "", "digests": { "md5": "d14612c71f6eb83f5c3c0eec51869d41", "sha256": "7dfa50c676552540cce2e7d41a512c34c4fe8845ac0548411bc62c1e688cfaef" }, "downloads": -1, "filename": "tweet-delete-0.1.7.tar.gz", "has_sig": false, "md5_digest": "d14612c71f6eb83f5c3c0eec51869d41", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 7657, "upload_time": "2019-03-14T11:44:09", "url": "https://files.pythonhosted.org/packages/1a/96/d417c7ac14ec51b88967935d437bbaeb12542dddabd5ee804ae6fb05224f/tweet-delete-0.1.7.tar.gz" } ], "0.1.8": [ { "comment_text": "", "digests": { "md5": "e93ca7c2957fdc082345162d36c150ad", "sha256": "8192a1f0c6b0b7a7c6625365fde8f19a40bd525497dfc5ee505e197b07c9aa56" }, "downloads": -1, "filename": "tweet-delete-0.1.8.tar.gz", "has_sig": false, "md5_digest": "e93ca7c2957fdc082345162d36c150ad", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 8807, "upload_time": "2019-03-14T19:42:25", "url": "https://files.pythonhosted.org/packages/8c/06/764898b3da90dfd9947d1c2c4a016c6d4a0eee9bc1310810ad59409e7a90/tweet-delete-0.1.8.tar.gz" } ], "0.1.9": [ { "comment_text": "", "digests": { "md5": "8c2f1f103cccc245b81d5b3a99a59008", "sha256": "6e73ddc3f54753dfb93a8e240b24b6d43591aab2b19740cdbbc419eb53b48c81" }, "downloads": -1, "filename": "tweet-delete-0.1.9.tar.gz", "has_sig": false, "md5_digest": "8c2f1f103cccc245b81d5b3a99a59008", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 8897, "upload_time": "2019-03-14T20:50:14", "url": "https://files.pythonhosted.org/packages/38/30/d9edcafb435e64f62a6bdace97b995fce1b49ee1fda36d6edeea406a09e8/tweet-delete-0.1.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "b734dd403bdc3b947ad091ce5feca196", "sha256": "4a79f9407b95db55dfc3ee927f3199894060b5e7233a203b8a0ec86abdd25c9e" }, "downloads": -1, "filename": "tweet-delete-0.1.13.tar.gz", "has_sig": false, "md5_digest": "b734dd403bdc3b947ad091ce5feca196", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 9306, "upload_time": "2019-03-28T18:31:12", "url": "https://files.pythonhosted.org/packages/93/8f/049c82d8fea06c776c726bb72329f8025d050e382cae9b4b1dd350fc1aa7/tweet-delete-0.1.13.tar.gz" } ] }