Prefect integrations for interacting with Twitter.
Project description
prefect-twitter
Visit the full docs here to see additional examples and the API reference.
Prefect integrations for interacting with Twitter.
Resources
For more tips on how to use tasks and flows in a Collection, check out Using Collections!
Installation
Install prefect-twitter
with pip
:
pip install prefect-twitter
Requires an installation of Python 3.7+.
We recommend using a Python virtual environment manager such as pipenv, conda or virtualenv.
These tasks are designed to work with Prefect 2. For more information about how to use Prefect, please refer to the Prefect documentation.
Write and run a flow
Tweets an update with just text.
from prefect import flow
from prefect_twitter import TwitterCredentials
from prefect_twitter.tweets import update_status
@flow
def example_update_status_flow():
twitter_credentials = TwitterCredentials(
consumer_key="consumer_key",
consumer_secret="consumer_secret",
access_token="access_token",
access_token_secret="access_token_secret"
)
status_id = update_status(twitter_credentials, status="A Prefect Tweet!")
return status_id
example_update_status_flow()
Feedback
If you encounter and bugs while using prefect-twitter
, feel free to open an issue in the prefect-twitter repository.
If you have any questions or issues while using prefect-twitter
, you can find help in either the Prefect Discourse forum or the Prefect Slack community.
Feel free to star or watch prefect-twitter
for updates too!
Development
Contributing
If you'd like to help contribute to fix an issue or add a feature to prefect-twitter
, please propose changes through a pull request from a fork of the repository.
Here are the steps:
- Fork the repository
- Clone the forked repository
- Install the repository and its dependencies:
pip install -e ".[dev]"
- Make desired changes
- Add tests
- Insert an entry to CHANGELOG.md
- Install
pre-commit
to perform quality checks prior to commit:
pre-commit install
git commit
,git push
, and create a pull request
Project details
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 prefect-twitter-0.2.2.tar.gz
.
File metadata
- Download URL: prefect-twitter-0.2.2.tar.gz
- Upload date:
- Size: 32.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8ce1fb5477857cc238988637145cf025f427ffd83c47f6b9444f0e2660854d76 |
|
MD5 | 17dcc6dd5e5f26f50bb4e7e93877f9a6 |
|
BLAKE2b-256 | f367fed0a869ca1d32b3f18192b89a637f8dff857a8102da2ce5aef68dc0f345 |
File details
Details for the file prefect_twitter-0.2.2-py3-none-any.whl
.
File metadata
- Download URL: prefect_twitter-0.2.2-py3-none-any.whl
- Upload date:
- Size: 12.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9ea5066344e081754f54464d18835b45aaaa71f0ef0e63d0b4d70c2f284241aa |
|
MD5 | 22485f08db2783ea366f46d54c94ba55 |
|
BLAKE2b-256 | 6a2d9cbffd625c54a905f049387bd5bdd0dd8f4da1f12ed81b974f6aafbaf19d |