Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
d60 authored Apr 20, 2024
1 parent 5abcf09 commit 8091a4b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 39 deletions.
2 changes: 1 addition & 1 deletion twikit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
A Python library for interacting with the Twitter API.
"""

__version__ = '1.5.3'
__version__ = '1.5.4'

from .client import Client
from .community import (Community, CommunityCreator, CommunityMember,
Expand Down
20 changes: 1 addition & 19 deletions twikit/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -940,25 +940,7 @@ def create_tweet(
If this option is set to True, tweets longer than 280 characters
can be posted (Twitter Premium only).
richtext_options : list[:class:`dict`], default=None
Options for decorating text (Twitter Premium only). Example:
.. code-block:: python
[
{
'from_index': 1,
'to_index': 3,
'richtext_types': [
'Bold',
]
},
{
'from_index': 4,
'to_index': 6,
'richtext_types': [
'Bold',
'Italic'
]
}
]
Options for decorating text (Twitter Premium only).
edit_tweet_id : :class:`str` | None, default=None
ID of the tweet to edit (Twitter Premium only).
Expand Down
20 changes: 1 addition & 19 deletions twikit/twikit_async/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -954,25 +954,7 @@ async def create_tweet(
If this option is set to True, tweets longer than 280 characters
can be posted (Twitter Premium only).
richtext_options : list[:class:`dict`], default=None
Options for decorating text (Twitter Premium only). Example:
.. code-block:: python
[
{
'from_index': 1,
'to_index': 3,
'richtext_types': [
'Bold',
]
},
{
'from_index': 4,
'to_index': 6,
'richtext_types': [
'Bold',
'Italic'
]
}
]
Options for decorating text (Twitter Premium only).
edit_tweet_id : :class:`str` | None, default=None
ID of the tweet to edit (Twitter Premium only).
Expand Down

0 comments on commit 8091a4b

Please sign in to comment.