Schedules tweets using TweetDeck
Project description
Automated tweet scheduling using TweetDeck. Uses Selenium to spawn a browser, log in to TweetDeck with your credentials, and schedule a tweet on your behalf by clicking on things in the app.
Installation
Install geckodriver. On macOS with Homebrew you can use brew install geckodriver. Then…
..code:: shell
$ pip install schedule_tweet
Only Python 3.6 and higher is supported.
Usage
..code:: python
>>> import os >>> from datetime import datetime, timedelta >>> >>> import schedule_tweet >>> >>> username = 'schedule_tw' >>> password = os.getenv('PASSWORD') >>> now_dt = datetime.now() >>> >>> with schedule_tweet.session(username, password) as session: ... dt = now_dt + timedelta(minutes=2) ... session.tweet(dt, f'First Tweet 🚀 {dt.isoformat()}') ... ... dt = now_dt + timedelta(minutes=3) ... session.tweet(dt, f'Second Tweet 💥 {dt.isoformat()}')
Tests
Obviously, TweetDeck authors can change anything anytime, which may or may not break this tool. That’s why it is tested by a regular nightly Travis CI build. If it’s able to schedule a tweet in the sample @schedule_tw <https://twitter.com/schedule_tw>_ account, it assumes the tool still works and the build will pass. If the build badge is red, it means the tool doesn’t work anymore and it needs to be updated.
Why
Twitter doesn’t provide scheduling tweets in their API. It is provided only as a feature of TweetDeck, their advanced official client. Unlike other clients which support scheduling tweets, TweetDeck is free of charge, it is an official tool made by Twitter themselves, and it supports teams.
The schedule-tweet tool was originally built to save precious volunteering time of the PyCon CZ 2017 social media team.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file schedule_tweet-1.0.0.tar.gz
.
File metadata
- Download URL: schedule_tweet-1.0.0.tar.gz
- Upload date:
- Size: 6.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f5cd9756301337450d183b1b93971c7887f5fbc4239959f0135c00a8de364d9d |
|
MD5 | 63b383df5d581af9a8f3b1850c2f0d7e |
|
BLAKE2b-256 | f607f19186daae4d49e352c9bc4290d73e42b665a0851d08102c9864bc2c1339 |
File details
Details for the file schedule_tweet-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: schedule_tweet-1.0.0-py3-none-any.whl
- Upload date:
- Size: 8.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 663616d882c7aa1c3850e5225d90aeb7bf9824bebc04f4c969fd6011543f9cad |
|
MD5 | 3bd7cbe3149da42913e07cb93b8a2f23 |
|
BLAKE2b-256 | ac53384b05858236534e00e9e5c78c32da718e6d61b01210ac31e9d27260d0a0 |