Skip to main content

Astrodetection

Astrodetection is a Python library designed for detecting astroturfing clues from lists of posts (mainly on X up to now, but not exclusively)

Installation

Pip

pip install "astrodetection[standard]"

or

pip install "astrodetection[light]"

Conda

  1. Use the YAML file to configure the environment with conda:

    conda create -n astrodetection_env
    conda activate astrodetection_env
    conda env update -f environment_standard.yml
    

Note: the environment_standard.yml configuration file uses FAISS and Fasttext libraries for VIGINUM D3LTA implementation

**If you have compatibility issues, prefer environment_light.yml and use astrodetection_light module

Usage

You can import directly the main functions:

from astrodetection import semantic_faiss, prepare_input_data, compute_bot_likelihood_metrics, create_network, copypasta_score_hub

Or use them directly:

import glob
import pandas as pd
import os
import numpy as np
import astrodetection

# Load a single JSON file into a DataFrame
file = "file_path"  # Select the first file
df = pd.read_json(file)
df.index = df.index.astype(str)  # Compatibility with d3lta

# Preprocess the DataFrame
df = df[df['tweet'].str.len() > 100]
df = df[df['username'] != 'grok']
df.index = df.index.astype(str)

# Compute matches and scores
df_filtered, df_emb = astrodetection.prepare_input_data(df, embeddings=df['emb'])

matches, df_cluster = astrodetection.semantic_faiss(
    df_filtered.rename(columns={'tweet': 'original'}),
    min_size_txt=0,
    df_embeddings_use=df_emb,
    threshold_grapheme=0.8,
    threshold_language=0.715,
    threshold_semantic=0.9
) #function taken from D3LTA 

# Create the raw post-similarity network and measure its largest component
network = astrodetection.create_network(matches, df, return_sigma=False)
copypasta_hub = astrodetection.copypasta_score_hub(network, df)

# The same indicator is also available in the combined metrics
scores = astrodetection.compute_bot_likelihood_metrics(
    df,
    matches=matches,
    G_copypasta=network,
)

# Create the interactive visualization when needed
network_viz = astrodetection.create_network(matches, df)

New changes

  1. semantic_faiss function can now take detect only copypastas based on levenshtein distance, ignoring embeddings, if "skip" is passed as argument in df_embeddings_use field.

  2. compute_bot_likelihood_metrics function can now take columns' names as arguments for more customization

  3. compute_bot_likelihood_metrics now returns high_following_followers_ratio (%), the share of rows whose following/followers ratio exceeds fw_ratio_threshold (default 10).

  4. copypasta_score_hub returns the percentage of all original posts belonging to the largest connected component of a post-similarity network. By default it retains every duplicate type and every edge already present in the network.

Release files for astrodetection 0.3.1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for astrodetection 0.3.1
File Size Uploaded
astrodetection-0.3.1.tar.gz 58.9 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for astrodetection 0.3.1
File Interpreter ABI Platform
astrodetection-0.3.1-py3-none-any.whl Python 3 none any Details

Total release size: 119.4 kB

Release files / astrodetection-0.3.1.tar.gz

Download URL astrodetection-0.3.1.tar.gz
Size 58.9 kB
Tags Source
SHA-256 checksum
How to use checksums
af634204a632eaca33d7aee639472e9cdb5759a9ef7cf858fe8a429938aeb00a
BLAKE2b-256 checksum
How to use checksums
755f507ba15df1be4f85e5d8f2e6898a7b582215960d8537cc2c8ae7287b43ba
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.11

Release files / astrodetection-0.3.1-py3-none-any.whl

Download URL astrodetection-0.3.1-py3-none-any.whl
Size 60.5 kB
Tags Python 3
SHA-256 checksum
How to use checksums
43ae2539254785040727f55eab62d5babbe84234f6775c0b94e3b3bf9b4d23e1
BLAKE2b-256 checksum
How to use checksums
9b7a1da009a97d7af3dbefa4856d3ebd8c239788c92de3af851ce12e66624574
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.11

Release history Release notifications | RSS feed

0.3.2

2 release files

This release

0.3.1 This release

2 release files

0.3.0

2 release files

0.2.8

2 release files

0.2.7

2 release files

0.2.6

2 release files

0.2.5

2 release files

0.2.4

2 release files

0.2.3

2 release files

0.2.2

2 release files

0.2.1

2 release files

0.2.0

2 release files

0.1.9

2 release files

0.1.8

2 release files

0.1.7

2 release files

0.1.6

2 release files

0.1.5

2 release files

0.1.4

2 release files

0.1.3

2 release files

0.1.2

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page