Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 18 additions & 1 deletion tweets/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
- `haoel.csv`: [@haoel](https://twitter.com/haoel) 发表的所有 tweets.

Copied from https://github.com/yihong0618/twint . Thanks [@yihong0618](https://github.com/yihong0618).
Copied from https://github.com/yihong0618/twint . Thanks [@yihong0618](https://github.com/yihong0618).

- `haoel.db`: 已格式化并转换为 SQLite 数据库的同一份数据

Schema:

```sqlite
CREATE TABLE "tweets" (
"id" INTEGER NOT NULL UNIQUE, -- Snowflake ID
"timestamp" INTEGER NOT NULL, -- Unix timestamp
"likes_count" INTEGER NOT NULL,
"retweet_count" INTEGER NOT NULL,
"reply_count" INTEGER NOT NULL,
"content" TEXT NOT NULL -- 已解析 HTML entities 和 t.co 短链
);
```

Note: 可使用 <https://github.com/wangfenjin/simple> 进行全文索引。
Binary file added tweets/haoel.db
Binary file not shown.