-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaggregate.py
171 lines (146 loc) · 4.41 KB
/
aggregate.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
from atproto import Client, models
import atproto
import os
from dotenv import load_dotenv
import openai
import time
import sqlite3
from tqdm import tqdm
import inspect
connection = sqlite3.connect("bluesky.db")
cur = connection.cursor()
cur.execute("""
CREATE TABLE IF NOT EXISTS users
(id INTEGER PRIMARY KEY AUTOINCREMENT,
did TEXT,
handle TEXT,
displayName TEXT,
indexed_at DATETIME,
updated_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP
)
""")
cur.execute("""
CREATE TABLE IF NOT EXISTS posts
(id INTEGER PRIMARY KEY AUTOINCREMENT,
did TEXT,
count INTEGER,
created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP
)
""")
cur.execute("""
CREATE TRIGGER IF NOT EXISTS update_timestamp
AFTER UPDATE ON users
FOR EACH ROW
BEGIN
UPDATE users SET updated_at = CURRENT_TIMESTAMP WHERE id = OLD.id;
END;
""")
connection.commit()
dotenv_path = os.path.join(os.path.dirname(__file__), ".env")
load_dotenv(dotenv_path)
username = os.environ.get("BOT_HANDLE")
password = os.environ.get("BOT_PASSWORD")
client = Client()
def login(username, password):
profile = client.login(username, password)
return profile
def get_follow(actor, cursor):
response = None
try:
response = client.bsky.graph.get_follows(
{"actor": actor, "cursor": cursor, "limit": 100}
)
except atproto.exceptions.RequestException as e:
print(actor)
print(e)
if e.args[0].content.error == 'ExpiredToken':
login(username, password)
try:
response = get_follow(actor, cursor)
except atproto.exceptions.RequestException as e:
print(e)
return response
def get_profile_detail(actor):
profile = None
while True and profile is None:
try:
profile = client.bsky.actor.get_profile({"actor": actor})
except atproto.exceptions.RequestException as e:
print(actor)
print(e)
if e.args[0].content.error == 'ExpiredToken':
login(username, password)
try:
profile = get_profile_detail(actor)
except atproto.exceptions.RequestException as e:
print(e)
break
except atproto.exceptions.InvokeTimeoutError as e:
print(e)
break
return profile
profile = login(username, password)
actor = "kojira.bsky.social"
# actor = "masonicursa.bsky.social"
# actor = "peelingoranges.bsky.social"
cursor = None
member_index = 0
cur.execute("SELECT * FROM users ORDER BY RANDOM()")
rows = cur.fetchall()
columns = [column[0] for column in cur.description]
all_members = [dict(zip(columns, row)) for row in rows]
prev_actor = None
while True:
if actor != prev_actor:
profile = get_profile_detail(actor)
if profile:
print(f"{profile.displayName}@{profile.handle}")
sql = "INSERT INTO posts (did, count) VALUES (?, ?)"
cur.execute(sql, (profile.did, profile.postsCount, ))
connection.commit()
response = get_follow(actor, cursor)
if response:
follows = response.follows
members = [{"did": follow.did,
"handle": follow.handle,
"displayName": follow.displayName,
"indexed_at": follow.indexedAt}
for follow in follows
if all(item["did"] != follow.did for item in all_members)
]
print(len(members))
all_members.extend(members)
sql = """
INSERT INTO users (did, handle, displayName, indexed_at)
VALUES (:did, :handle, :displayName, :indexed_at)
"""
cur.executemany(sql, members)
connection.commit()
prev_actor = actor
if response.cursor is None:
cursor = None
if member_index > (len(all_members) - 1):
member_index = 0
actor = all_members[member_index]["handle"]
member_index += 1
print("all:", len(all_members))
else:
# print("cursor:", response.cursor)
cursor = response.cursor
else:
if member_index > (len(all_members) - 1):
member_index = 0
actor = all_members[member_index]["handle"]
member_index += 1
print("all:", len(all_members))
else:
if member_index > (len(all_members) - 1):
member_index = 0
actor = all_members[member_index]["handle"]
member_index += 1
print("all:", len(all_members))
time.sleep(0.05)
# params = models.AppBskyActorGetProfile.Params("kojira.bsky.social")
# print(follow)
# print(client.com.atproto.identity.resolve_handle(params))
# client.send_post(text="Hello World!")