Skip to content

Remesh/tweet-data

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 

Repository files navigation

Fake Tweet Data

The data json in this repo includes three different data structures:

  • Users
  • Hashtags
  • Tweets

This data is intentionally only partially normalized. The structures look like this:

"data": [
    "tweets": [
        {
            "id": 1,                         # The tweet id
            "user": 1,                       # Posting user's id
            "text": "Remesh is very cool",   # Text of the tweet
            "hashtags": [1, 2],              # ids of associated hashtags
            "retweet_id": null,              # id reference to the parent tweet if this is a retweet or null
            "likes": [1]                     # ids of users who liked this tweet
        }
    ],
    "hashtags": [
        {
            "id": 1,
            "name": "coffeelife"
        },
        { "id": 2, "name": "engineering" }
    ],
    "users": [
        {
            "id": 1,
            "username": "dangineer",
        }
    ]
]

While the content of these tweets are randomly generated, the data itself is not fully randomized. There are trends and relationships to find!

Good luck!

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published