You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Comments on Instagram that include mentions with periods are currently truncated on advertools.__version__ = 0.14.2.
Example: @elias.dabbas -> [@elias]
I propose adding adding a . to the MENTIONS in the REGEX module.
MENTION=re.compile(
r"""(?i) # case-insensitive (?<!\w) # word character doesn't precede mention ([@@] # either of two @ signs [a-z0-9_.]+) # A to Z, numbers and underscores AND PERIODS only \b # end with a word boundary """, re.VERBOSE)
This change works for me, but I haven't tested edge cases or other social media platforms.
The text was updated successfully, but these errors were encountered:
Hi Elias,
Comments on Instagram that include mentions with periods are currently truncated on
advertools.__version__ = 0.14.2
.Example:
@elias.dabbas -> [@elias]
I propose adding adding a
.
to the MENTIONS in the REGEX module.This change works for me, but I haven't tested edge cases or other social media platforms.
The text was updated successfully, but these errors were encountered: