CoolFace
Datasetpublic

trentmkelly/scored_co_2025

Scored.co 2025 scrape This dataset is a full scrape of public content from Scored.co, a right-wing Reddit-style social media site. It contains 73,045,361 rows of posts and comments, stored as parquet. The dataset is intended for research into online communities, political discussion, social media moderation, misinformation, platform migration, network dynamics, and large-scale text analysis. Data format The main dataset is partitioned by entity type:… See the full description on the dataset page: https://huggingface.co/datasets/trentmkelly/scored_co_2025.

sourceHugging Facecc-by-sa-4.0updated 5mo agoView on Hugging Face
0likes357downloads
Dataset Card

Scored.co 2025 scrape

This dataset is a full scrape of public content from Scored.co, a right-wing Reddit-style social media site. It contains 73,045,361 rows of posts and comments, stored as parquet.

The dataset is intended for research into online communities, political discussion, social media moderation, misinformation, platform migration, network dynamics, and large-scale text analysis.

Data format

The main dataset is partitioned by entity type:

  • —entity_type=post/: post records
  • —entity_type=comment/: comment records

Hugging Face also provides converted parquet shards on the refs/convert/parquet branch, which can be useful for lightweight inspection or streaming workflows without downloading the full dataset.

Example:

python
from datasets import load_dataset

# Streams records without downloading the full dataset first.
ds = load_dataset(
    "trentmkelly/scored_co_2025",
    split="train",
    streaming=True,
)

for row in ds.take(3):
    print(row)

You can also work directly with parquet URLs or the hf:// filesystem interface if using tools such as DuckDB, Polars, PyArrow, or pandas.

Columns

A sample shard from refs/convert/parquet had the following fields:

ColumnDescription
post_idNumeric Scored.co post ID.
post_uuidScored.co post UUID/string identifier.
comment_idNumeric comment ID, when the row is a comment.
comment_uuidComment UUID/string identifier, when available.
parent_idParent post or comment identifier.
authorPublic username associated with the record.
communityScored.co community name.
titlePost title. For comments, this may repeat the parent post title.
bodyPlain-text body/content extracted from the record.
created_msCreation timestamp in Unix milliseconds.
created_isoCreation timestamp as an ISO-8601 UTC string.
scoreTotal score.
score_upUpvote score/count, when available.
score_downDownvote score/count, when available.
comments_totalTotal comment count for post rows, when available.
top_level_commentsTop-level comment count for post rows, when available.
depthComment nesting depth, when available.
is_deletedWhether the item was marked deleted.
is_removedWhether the item was marked removed.
is_nsfwWhether the item was marked NSFW.
is_imageWhether the item is an image post.
is_videoWhether the item is a video post.
vote_stateVote-state value from the source record.
pro_tierSource account/profile tier value.
linkLinked URL for link posts, when present.
domainDomain extracted from link, when present.
source_fileOriginal scrape/source JSON filename.
raw_jsonRaw source JSON payload retained as a string.

Some fields are entity-specific and may be null for posts or comments.

Notes and limitations

  • —This is scraped public web data and may include offensive, hateful, explicit, false, or otherwise sensitive content.
  • —Usernames and other public identifiers are included. Handle the data carefully and avoid attempts to identify, contact, harass, or profile individual users.
  • —Text may contain HTML-derived artifacts, links, markdown, quoted material, deleted/removed content markers, or source-platform metadata.
  • —The dataset reflects what was available to the scraper at collection time; it should not be treated as a complete or current representation of Scored.co.

Citation

If you use this dataset, cite the Hugging Face dataset repository:

bibtex
@dataset{kelly_scored_co_2025,
  author = {Kelly, Trent M.},
  title = {Scored.co 2025 scrape},
  year = {2025},
  publisher = {Hugging Face},
  url = {https://huggingface.co/datasets/trentmkelly/scored_co_2025}
}
trentmkelly/scored_co_2025 · CoolFace