An automated alias fingerprinting system that:
| Metric | Value | |--------|-------| | Followers | [e.g., 1,245] | | Following | [e.g., 312] | | Total Tweets | [e.g., 5,632] | | Likes Received | [optional, if you can calculate] | | Lists | [Number of public lists the account appears on] | | Engagement Rate | [e.g., average likes + retweets per tweet ÷ followers] | | Average Tweets per Day | [e.g., 2.4] | | Most Recent Tweet Date | [e.g., 2026‑04‑12] | AyoCrot -crot-ayo - Twitter Profile - Sotwe
Twitter’s native search is notoriously weak for exact username lookups, especially if the account is inactive, suspended, or has changed handles. Sotwe offers: An automated alias fingerprinting system that: | Metric
If you’re searching for “AyoCrot -crot-ayo,” you’re likely a researcher, a moderator, or someone trying to reconnect with an old mutual. Twitter’s native search is notoriously weak for exact
| Tool / Method | What It Gives You | How to Access |
|---------------|-------------------|----------------|
| Twitter Web UI | Followers, bio, latest tweets, likes/retweets per tweet (visible on the tweet card). | Open the profile in a browser. |
| Twitter Advanced Search | Ability to filter tweets by date range, keyword, or hashtag. | https://twitter.com/search‑advanced |
| Twitter API v2 (Academic/Essential) | Full tweet objects, metrics, follower list, user metrics, and timeline data. | Register for a developer account → Create a project → Use the users/by/username/:username endpoint and the tweets endpoint. |
| Third‑party analytics (e.g., TweetDeck, Hootsuite, SocialBlade) | Summarized follower growth, engagement trends, post‑frequency charts. | Sign up for a free tier; connect the handle. |
| Python libraries (tweepy, snscrape) | Scrape recent tweets without needing API limits (scrape for public data only). | pip install tweepy or snscrape and run a small script. |
| Twitter Analytics (owner only) | In‑depth audience demographics, impressions, link clicks. | Only viewable by the account owner (login to the account). |
Quick Python example (snscrape, no API key needed)
import snscrape.modules.twitter as sntwitter username = "crot_ayo" tweets = [] for i, tweet in enumerate(sntwitter.TwitterUserScraper(username).get_items()): if i >= 20: # grab the most recent 20 tweets break tweets.append( "date": tweet.date, "content": tweet.content, "likes": tweet.likeCount, "retweets": tweet.retweetCount, "replies": tweet.replyCount, "media": tweet.media ) # Now you can format `tweets` into the table above.(Run locally; respect Twitter’s Terms of Service.)
|
|
Największy serwis z tekstami piosenek w Polsce. Każdy może znaleźć u nas teksty piosenek, teledyski oraz tłumaczenia swoich ulubionych utworów.
Zachęcamy wszystkich użytkowników do dodawania nowych tekstów, tłumaczeń i teledysków!