tweetinstone


Nametweetinstone JSON
Version 1.0.1 PyPI version JSON
download
home_pageNone
SummaryA CLI and GUI tool to automate the capture of tweets in the form they are actually displayed
upload_time2024-07-23 16:29:18
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseNone
keywords archive ffmpeg screenshot tweet twitter
VCS
bugtrack_url
requirements configobj ffmpeg_python Pillow playwright yt-dlp PySide6 pytest-playwright lxml beautifulsoup4
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # tweetinstone

Toolset to automate screenshot archival of tweets in their most original/canonical presentation at the time of capture

## Table of Contents

- [Design Intent](#design-intent)
- [Installation](#installation)
- [Usage](#usage)
- [Configuration](#configuration)
- [Considerations](#considerations)
- [Known issues](#known-issues)
- [Credit](#credit)

### Design Intent

The goal of this project is to take screenshots and additional metadata from tweets in an automated fashion. This is pretty typical behavior if you want to reference a tweet in some other medium where you can't simply embed (such as editing a video) or where embedding a link is insufficient for full context (such as posting on discord). It is also important for archiving a tweet in case it is deleted, the user is banned/deleted/goes private, or twitter explodes/has an outage which would essentially lose that tweet to time like tears in the rain.

The internet is (for better and worse) ephemeral, so I want to empower those who have tweets that they enjoy to be able to save them. Not just save them as data or a rough screeNshot, but in high resolution as they would be seen (more or less) at the time of reference, with all associated images and video that the tweet contains in its highest possible quality. 

If you are someone who likes to have local copies of tweets for whatever reason, I hope that this tool lets the computer do the work instead of you, giving you more time to do real human things. That's the reason this exists.

*-Max*

### Installation

You can install a pre-built version with PIP or build it manually on your local system.

This tool was built and tested entirely on Ubuntu running via WSL2. On Windows 10 the GUI had some issues (the window didn't generate a title bar to control from) however on Windows 11 WSL the title bars work fine. I doubt you'll have problems like that if you're running linux natively. I have not attempted to install this with Python on Windows because that would probably break and suck and I don't think anyone should try running python on Windows when this is the 2020s and WSL exists and lets you do it seamlessly in linux with a better user experience.

If you are in the worst case compatibility scenario, or if you're as rightfully cautious about installing software from a stranger online as you probably should be, you could always just run this in a linux VM if you really wanted to. Or if you're extra spooked, run this on a cloud server. While I do think that running the GUI on your desktop environment offers the best user experience because it can actually show you the output in real time (which is great for catching errors or copying the image to your clipboard) I encourage you to run software safely and responsibly!

#### Install Via PIP (Recommended)

To maximize ease of use and the rollout of updates, I've published this to PyPI. You can install tweetinstone with
```bash
pip3 install tweetinstone
```

#### Install Manually (Tinkerers Only)

This tool was built and tested on WSL, but given it's python it should be highly portable. Presuming you have a working python and pip installation, it should be as simple as installing the requirement packages, setting up Playwright and running the script from the command line.

After cloning this repository or downloading and extracting the release zip, you can run the following from inside the project folder:
```bash
pip3 install -r requirements.txt
```

##### Important Note:

Playwright requires additional setup to install the web browsers it uses. Don't worry, these won't overwrite any settings of your existing web browsers you've installed.
```bash
playwright install
playwright install-deps
``` 

### Usage

On installation via PIP, there are two commands: `tis` and `tis-gui`. Running `tis` will run the command line version and `tis-gui` will default to a GUI for ease of use. The help page that displays when you run `tis` without any command line arguments will list what each argument does, but the simple version is this:

1. Specify a search target (either an individual url or a file containing a list of urls)
2. Run!

The nuance is with the different search modes. If you don't specify a cookie file, tweetinstone can only see the single tweet you link, even if it is a reply or in a thread. If you specify a cookie file, tweetinstone will default to grabbing the tweet specified and any tweets preceding it, and concatenate them together. When you have cookies, you can also attemp the 'thread' search mode which will keep looking for tweets by the first user until they stop, but this is broken right now.

An important note is that ***sometimes*, software is unreliable** and both tweetinstone and twitter could fuck up and not save the right thing that you wanted. If you want to be sure it archived the tweet properly, DOUBLE CHECK THE SAVED FILES. Some tweets may break or not save perfectly. In those edge cases, you may want to screenshot the tweet manually yourself if tweetinstone isnt getting the output you want. If you run into such edge cases, feel free to bring them up in Github Issues and (no promises) perhaps I will see it and use it as a test case to improve a future version of tweetinstone.

Sometimes though, just trying the search again can fix it. Often times there are some problems with grabbing large batches, potentially due to rate limiting or just plain old probability.

##### Video Capture

If a tweet has a single video, tweetinstone will download it and create a new video that composites the video inside of an image of the tweet using ffmpeg. Multi-video download is not supported right now since it's a huge pain in the ass.

##### Image Capture

Tweetinstone will attempt to download the highest quality version of any images attached to the tweet.

#### Command Line Arguments

##### General Options

| Argument | Shorthand | Effect | Example |
| :---: | :---: | :--- | :--- |
| --help | -h | Display help menu |  |
| --verbose | -v | Displays extra debug information |  |
| --cookies | -c | Input a cookie file | `tis -c ./cookie.txt https://twitter.com/` |
| ~~--no-cookies~~ | ~~-n~~ | ~~Disregard default cookie file~~ | |
| --version |  | Display version number |  |

##### Input Options

There are two modes of input: urls as command line arguments, and urls inside of a text file.

| Input method | Argument | Shorthand | Input | Example |
| :---: | :---: | :---: | :--- | :--- |
| URL | \[url\] |  | a single URL or multiple, space-separated urls | `tis https://twitter.com/atomicthumbs/status/1649952816268742656` |
| Text file | --input | -i | A text file containing line-separate tweet urls. See [demo.txt](tests/demo.txt) for an example | `tis -i tweets.txt` |

##### Scope Options

There are multiple modes to tweak the output tweetinstone collects. By default, for each tweet that is input, it grabs that tweet and any tweets it is replying to. Each of these tweets will be saved to a subfolder of the .zip archive, and at the root of the archive will be a concatenation of all these tweets into a single image.

##### Important Note:

Due to modern twitter policy, the default capture of replies and the option to capture the thread will **not** work unless user session cookies are imported.

| Argument | Shorthand | Effect |
| :---: | :--- | :--- |
| --only | -o | Only get the singular tweet that's specified in the url |
| --thread | -t | Get each tweet in the user's thread (everything before the tweet and after the tweet by the original user) |

##### Customization Options

These allow you to customize the appearance of the tweets with web browser settings. For localization reasons and such.

| Argument | Shorthand | Effect | Default Value |
| :---: | :--- | :--- | :---: |
| --color |  | Set browser color scheme (`dark` or `light`) | dark |
| --scale | -s | Set DPI scaling factor | 4 |
| --locale | -l | Set browser locale | en-US |
| --timezone |  | Set time zone | America/New_York |

### Configuration

You can import cookies into tweetinstone to allow the script to view twitter as your account. 

The only cookie it cares about is the `auth_token` cookie, a string of characters that is effectively your secret random password that tells the twitter servers that your web browser is 'you'. When you log in, this session token cookie is what lets twitter 'remember' that you are logged in on that web browser. Some behavior such as changing passwords, logging out, or logging out of all sessions, will invalidate the session token and force you to use it again.

##### ***!!!WARNING WARNING WARNING!!!***

Your session token allows tweetinstone to view twitter as your account. This means that if it is acquired by malicious actors or used by other programs, *they* could view twitter as your account and thus could cause problems for your account. It is also unclear if twitter would at some point do a reprisal for using a session token in this way and assume that tweetinstone is malicious.

- *Copy and store your session token cookie at your own risk*
- ***NEVER** reveal your session token in screenshots, video, or text, especially not when attempting to get support for tweetinstone*
- *If you believe your session has been compromised, change your password and use twitter settings to log out of your account on all devices*

#####  ***!!!WARNING WARNING WARNING!!!***

#### Finding Your Auth Token

You can export cookies with browser extensions such as those recommended by [other tools](https://github.com/mikf/gallery-dl#cookies) however since tweetinstone only cares about one specific cookie, the simplest way to view it is to use your browsers developers tools when logged in to twitter.

##### Firefox

In firefox, open the dev tools with `f12` and then click the [storage](https://firefox-source-docs.mozilla.org/devtools-user/storage_inspector/index.html) tab. Click on the cookie with the name 'auth_token'. A window will pop up on the right that has the cookie's data. Right click where it says 'auth_token' and select 'copy'. 

##### ~~Chrome~~

~~TODO~~

#### Create cookie file 

Now that you have the `auth_token` value in your clipboard, you can create your cookie file in two ways:
1. (CLI Method) Run `tis --generate cookie.txt` (or whatever filename you want). When it prompts you for your auth_token value, paste it.
2. (GUI Method) Run `tis-gui`. In the "Cookies" submenu click "Generate Cookies" and follow the instructions to paste the value and save to a file.

#### ~~Simplified Auth Token Config (NOT FUNCTIONAL)~~

~~For simplicity's sake, since cookies are so key to extended functionality, by default, tweetinstone will look for a file named `auth.txt` in the current directory. If you save your cookie to this filename, you won't need to use `--cookie` option every time.~~

##### ~~Note:~~

~~Default cookie file usage can be disabled with the `-n` option~~

### Considerations
Twitter's behavior has been a bit wonky as of the time of writing. Some changes in Summer 2023 have been problamatic. Because of new policies where only logged in users can see replies to tweets, if you do not have an `auth_token` cookie for tweetinstone to log yourself in, tweetinstone will only be able to grab the single tweet in the url, and may have limited functionality or unexpected behavior.

Changes twitter makes that cause upstream issues in `youtube-dl` may require updating your `youtube-dl` library's version when workarounds have been implemented in `youtube-dl`.

Lastly, any use of tweetinstone carries no obligation of support, regardless of how timely or untimely. This is something I built in my free time because I wanted it to exist so I could use it myself, but that I am allowing the public to use for free. However, if you play nice I do appreciate reports of problems (preferably via github issues) because I have no chance of fixing problems I cannot see.

### Known Issues

In the interest of getting a working build out there and actually semi-finishing a project, tweetinstone has released in an imperfect state. Here is a list of known issues:
 - Thread traversal is broken and won't grab the entire thread
 - Video capture is broken after the latest twitter domain changes on older yt-dlp versions
 - Default cookie support has not been added

### Credit
 - [@atomicthumbs for the idea](https://twitter.com/atomicthumbs/status/1649952816268742656)
 - Playwright for making programmatically interacting with web browsers easy
 - ffmpeg for being awesome (plus the person who made an awesome python wrapper for it)
 - Various helpful posts I've given kudos to in the code where appropriate

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "tweetinstone",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "archive, ffmpeg, screenshot, tweet, twitter",
    "author": null,
    "author_email": "Max <tweetinstone@protonmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/2f/1b/a228a5e76921fe5f5a0dacdf96bbe7dda21b40d55470ed0d7eb2b61ced49/tweetinstone-1.0.1.tar.gz",
    "platform": null,
    "description": "# tweetinstone\n\nToolset to automate screenshot archival of tweets in their most original/canonical presentation at the time of capture\n\n## Table of Contents\n\n- [Design Intent](#design-intent)\n- [Installation](#installation)\n- [Usage](#usage)\n- [Configuration](#configuration)\n- [Considerations](#considerations)\n- [Known issues](#known-issues)\n- [Credit](#credit)\n\n### Design Intent\n\nThe goal of this project is to take screenshots and additional metadata from tweets in an automated fashion. This is pretty typical behavior if you want to reference a tweet in some other medium where you can't simply embed (such as editing a video) or where embedding a link is insufficient for full context (such as posting on discord). It is also important for archiving a tweet in case it is deleted, the user is banned/deleted/goes private, or twitter explodes/has an outage which would essentially lose that tweet to time like tears in the rain.\n\nThe internet is (for better and worse) ephemeral, so I want to empower those who have tweets that they enjoy to be able to save them. Not just save them as data or a rough screeNshot, but in high resolution as they would be seen (more or less) at the time of reference, with all associated images and video that the tweet contains in its highest possible quality. \n\nIf you are someone who likes to have local copies of tweets for whatever reason, I hope that this tool lets the computer do the work instead of you, giving you more time to do real human things. That's the reason this exists.\n\n*-Max*\n\n### Installation\n\nYou can install a pre-built version with PIP or build it manually on your local system.\n\nThis tool was built and tested entirely on Ubuntu running via WSL2. On Windows 10 the GUI had some issues (the window didn't generate a title bar to control from) however on Windows 11 WSL the title bars work fine. I doubt you'll have problems like that if you're running linux natively. I have not attempted to install this with Python on Windows because that would probably break and suck and I don't think anyone should try running python on Windows when this is the 2020s and WSL exists and lets you do it seamlessly in linux with a better user experience.\n\nIf you are in the worst case compatibility scenario, or if you're as rightfully cautious about installing software from a stranger online as you probably should be, you could always just run this in a linux VM if you really wanted to. Or if you're extra spooked, run this on a cloud server. While I do think that running the GUI on your desktop environment offers the best user experience because it can actually show you the output in real time (which is great for catching errors or copying the image to your clipboard) I encourage you to run software safely and responsibly!\n\n#### Install Via PIP (Recommended)\n\nTo maximize ease of use and the rollout of updates, I've published this to PyPI. You can install tweetinstone with\n```bash\npip3 install tweetinstone\n```\n\n#### Install Manually (Tinkerers Only)\n\nThis tool was built and tested on WSL, but given it's python it should be highly portable. Presuming you have a working python and pip installation, it should be as simple as installing the requirement packages, setting up Playwright and running the script from the command line.\n\nAfter cloning this repository or downloading and extracting the release zip, you can run the following from inside the project folder:\n```bash\npip3 install -r requirements.txt\n```\n\n##### Important Note:\n\nPlaywright requires additional setup to install the web browsers it uses. Don't worry, these won't overwrite any settings of your existing web browsers you've installed.\n```bash\nplaywright install\nplaywright install-deps\n``` \n\n### Usage\n\nOn installation via PIP, there are two commands: `tis` and `tis-gui`. Running `tis` will run the command line version and `tis-gui` will default to a GUI for ease of use. The help page that displays when you run `tis` without any command line arguments will list what each argument does, but the simple version is this:\n\n1. Specify a search target (either an individual url or a file containing a list of urls)\n2. Run!\n\nThe nuance is with the different search modes. If you don't specify a cookie file, tweetinstone can only see the single tweet you link, even if it is a reply or in a thread. If you specify a cookie file, tweetinstone will default to grabbing the tweet specified and any tweets preceding it, and concatenate them together. When you have cookies, you can also attemp the 'thread' search mode which will keep looking for tweets by the first user until they stop, but this is broken right now.\n\nAn important note is that ***sometimes*, software is unreliable** and both tweetinstone and twitter could fuck up and not save the right thing that you wanted. If you want to be sure it archived the tweet properly, DOUBLE CHECK THE SAVED FILES. Some tweets may break or not save perfectly. In those edge cases, you may want to screenshot the tweet manually yourself if tweetinstone isnt getting the output you want. If you run into such edge cases, feel free to bring them up in Github Issues and (no promises) perhaps I will see it and use it as a test case to improve a future version of tweetinstone.\n\nSometimes though, just trying the search again can fix it. Often times there are some problems with grabbing large batches, potentially due to rate limiting or just plain old probability.\n\n##### Video Capture\n\nIf a tweet has a single video, tweetinstone will download it and create a new video that composites the video inside of an image of the tweet using ffmpeg. Multi-video download is not supported right now since it's a huge pain in the ass.\n\n##### Image Capture\n\nTweetinstone will attempt to download the highest quality version of any images attached to the tweet.\n\n#### Command Line Arguments\n\n##### General Options\n\n| Argument | Shorthand | Effect | Example |\n| :---: | :---: | :--- | :--- |\n| --help | -h | Display help menu |  |\n| --verbose | -v | Displays extra debug information |  |\n| --cookies | -c | Input a cookie file | `tis -c ./cookie.txt https://twitter.com/` |\n| ~~--no-cookies~~ | ~~-n~~ | ~~Disregard default cookie file~~ | |\n| --version |  | Display version number |  |\n\n##### Input Options\n\nThere are two modes of input: urls as command line arguments, and urls inside of a text file.\n\n| Input method | Argument | Shorthand | Input | Example |\n| :---: | :---: | :---: | :--- | :--- |\n| URL | \\[url\\] |  | a single URL or multiple, space-separated urls | `tis https://twitter.com/atomicthumbs/status/1649952816268742656` |\n| Text file | --input | -i | A text file containing line-separate tweet urls. See [demo.txt](tests/demo.txt) for an example | `tis -i tweets.txt` |\n\n##### Scope Options\n\nThere are multiple modes to tweak the output tweetinstone collects. By default, for each tweet that is input, it grabs that tweet and any tweets it is replying to. Each of these tweets will be saved to a subfolder of the .zip archive, and at the root of the archive will be a concatenation of all these tweets into a single image.\n\n##### Important Note:\n\nDue to modern twitter policy, the default capture of replies and the option to capture the thread will **not** work unless user session cookies are imported.\n\n| Argument | Shorthand | Effect |\n| :---: | :--- | :--- |\n| --only | -o | Only get the singular tweet that's specified in the url |\n| --thread | -t | Get each tweet in the user's thread (everything before the tweet and after the tweet by the original user) |\n\n##### Customization Options\n\nThese allow you to customize the appearance of the tweets with web browser settings. For localization reasons and such.\n\n| Argument | Shorthand | Effect | Default Value |\n| :---: | :--- | :--- | :---: |\n| --color |  | Set browser color scheme (`dark` or `light`) | dark |\n| --scale | -s | Set DPI scaling factor | 4 |\n| --locale | -l | Set browser locale | en-US |\n| --timezone |  | Set time zone | America/New_York |\n\n### Configuration\n\nYou can import cookies into tweetinstone to allow the script to view twitter as your account. \n\nThe only cookie it cares about is the `auth_token` cookie, a string of characters that is effectively your secret random password that tells the twitter servers that your web browser is 'you'. When you log in, this session token cookie is what lets twitter 'remember' that you are logged in on that web browser. Some behavior such as changing passwords, logging out, or logging out of all sessions, will invalidate the session token and force you to use it again.\n\n##### ***!!!WARNING WARNING WARNING!!!***\n\nYour session token allows tweetinstone to view twitter as your account. This means that if it is acquired by malicious actors or used by other programs, *they* could view twitter as your account and thus could cause problems for your account. It is also unclear if twitter would at some point do a reprisal for using a session token in this way and assume that tweetinstone is malicious.\n\n- *Copy and store your session token cookie at your own risk*\n- ***NEVER** reveal your session token in screenshots, video, or text, especially not when attempting to get support for tweetinstone*\n- *If you believe your session has been compromised, change your password and use twitter settings to log out of your account on all devices*\n\n#####  ***!!!WARNING WARNING WARNING!!!***\n\n#### Finding Your Auth Token\n\nYou can export cookies with browser extensions such as those recommended by [other tools](https://github.com/mikf/gallery-dl#cookies) however since tweetinstone only cares about one specific cookie, the simplest way to view it is to use your browsers developers tools when logged in to twitter.\n\n##### Firefox\n\nIn firefox, open the dev tools with `f12` and then click the [storage](https://firefox-source-docs.mozilla.org/devtools-user/storage_inspector/index.html) tab. Click on the cookie with the name 'auth_token'. A window will pop up on the right that has the cookie's data. Right click where it says 'auth_token' and select 'copy'. \n\n##### ~~Chrome~~\n\n~~TODO~~\n\n#### Create cookie file \n\nNow that you have the `auth_token` value in your clipboard, you can create your cookie file in two ways:\n1. (CLI Method) Run `tis --generate cookie.txt` (or whatever filename you want). When it prompts you for your auth_token value, paste it.\n2. (GUI Method) Run `tis-gui`. In the \"Cookies\" submenu click \"Generate Cookies\" and follow the instructions to paste the value and save to a file.\n\n#### ~~Simplified Auth Token Config (NOT FUNCTIONAL)~~\n\n~~For simplicity's sake, since cookies are so key to extended functionality, by default, tweetinstone will look for a file named `auth.txt` in the current directory. If you save your cookie to this filename, you won't need to use `--cookie` option every time.~~\n\n##### ~~Note:~~\n\n~~Default cookie file usage can be disabled with the `-n` option~~\n\n### Considerations\nTwitter's behavior has been a bit wonky as of the time of writing. Some changes in Summer 2023 have been problamatic. Because of new policies where only logged in users can see replies to tweets, if you do not have an `auth_token` cookie for tweetinstone to log yourself in, tweetinstone will only be able to grab the single tweet in the url, and may have limited functionality or unexpected behavior.\n\nChanges twitter makes that cause upstream issues in `youtube-dl` may require updating your `youtube-dl` library's version when workarounds have been implemented in `youtube-dl`.\n\nLastly, any use of tweetinstone carries no obligation of support, regardless of how timely or untimely. This is something I built in my free time because I wanted it to exist so I could use it myself, but that I am allowing the public to use for free. However, if you play nice I do appreciate reports of problems (preferably via github issues) because I have no chance of fixing problems I cannot see.\n\n### Known Issues\n\nIn the interest of getting a working build out there and actually semi-finishing a project, tweetinstone has released in an imperfect state. Here is a list of known issues:\n - Thread traversal is broken and won't grab the entire thread\n - Video capture is broken after the latest twitter domain changes on older yt-dlp versions\n - Default cookie support has not been added\n\n### Credit\n - [@atomicthumbs for the idea](https://twitter.com/atomicthumbs/status/1649952816268742656)\n - Playwright for making programmatically interacting with web browsers easy\n - ffmpeg for being awesome (plus the person who made an awesome python wrapper for it)\n - Various helpful posts I've given kudos to in the code where appropriate\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "A CLI and GUI tool to automate the capture of tweets in the form they are actually displayed",
    "version": "1.0.1",
    "project_urls": {
        "Documentation": "https://github.com/maxdelayer/tweetinstone/README.md",
        "Homepage": "https://tweetinstone.com",
        "Issues": "https://github.com/maxdelayer/tweetinstone/issues",
        "Repository": "https://github.com/maxdelayer/tweetinstone",
        "Tip Jar": "https://paypal.me/tweetinstone"
    },
    "split_keywords": [
        "archive",
        " ffmpeg",
        " screenshot",
        " tweet",
        " twitter"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c2e4b540e9b6251bffc48cb40d5939a095ba79d8ace76650bd8311c1ca643034",
                "md5": "de3dcba1b654f04128ff02bd18a19bb3",
                "sha256": "80bfaa0f84c7d9c2a56ef88abdbf5c43128019577c7aa5e78fa95dd4b6def4aa"
            },
            "downloads": -1,
            "filename": "tweetinstone-1.0.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "de3dcba1b654f04128ff02bd18a19bb3",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 63229,
            "upload_time": "2024-07-23T16:29:14",
            "upload_time_iso_8601": "2024-07-23T16:29:14.955372Z",
            "url": "https://files.pythonhosted.org/packages/c2/e4/b540e9b6251bffc48cb40d5939a095ba79d8ace76650bd8311c1ca643034/tweetinstone-1.0.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2f1ba228a5e76921fe5f5a0dacdf96bbe7dda21b40d55470ed0d7eb2b61ced49",
                "md5": "4e2046126e8e592740ca90980a22fffa",
                "sha256": "bc2b8780e7d5a6488eb5dc9ca3f5affc0ffc2f0c966c59ad997cdd46832b9926"
            },
            "downloads": -1,
            "filename": "tweetinstone-1.0.1.tar.gz",
            "has_sig": false,
            "md5_digest": "4e2046126e8e592740ca90980a22fffa",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 55680,
            "upload_time": "2024-07-23T16:29:18",
            "upload_time_iso_8601": "2024-07-23T16:29:18.512331Z",
            "url": "https://files.pythonhosted.org/packages/2f/1b/a228a5e76921fe5f5a0dacdf96bbe7dda21b40d55470ed0d7eb2b61ced49/tweetinstone-1.0.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-07-23 16:29:18",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "maxdelayer",
    "github_project": "tweetinstone",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [
        {
            "name": "configobj",
            "specs": [
                [
                    ">=",
                    "5.0.6"
                ]
            ]
        },
        {
            "name": "ffmpeg_python",
            "specs": [
                [
                    ">=",
                    "0.2.0"
                ]
            ]
        },
        {
            "name": "Pillow",
            "specs": [
                [
                    ">=",
                    "10.0.0"
                ]
            ]
        },
        {
            "name": "playwright",
            "specs": [
                [
                    ">=",
                    "1.33.0"
                ]
            ]
        },
        {
            "name": "yt-dlp",
            "specs": [
                [
                    ">=",
                    "2023.7.6"
                ]
            ]
        },
        {
            "name": "PySide6",
            "specs": [
                [
                    ">=",
                    "6.2.4"
                ]
            ]
        },
        {
            "name": "pytest-playwright",
            "specs": [
                [
                    ">=",
                    "0.3.3"
                ]
            ]
        },
        {
            "name": "lxml",
            "specs": [
                [
                    ">=",
                    "4.9.3"
                ]
            ]
        },
        {
            "name": "beautifulsoup4",
            "specs": [
                [
                    ">=",
                    "4.12.2"
                ]
            ]
        }
    ],
    "lcname": "tweetinstone"
}
        
Elapsed time: 2.70478s