File size: 5,044 Bytes
ed24632
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
{
 "cells": [
  {
   "cell_type": "code",
   "execution_count": 2,
   "id": "d4446340-954b-45de-ba6f-dc5dd37009a0",
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "{\"id\":8349918,\"filename\":\"8349918.jpg\",\"mimetype\":\"image\\/jpeg\",\"extension\":\"jpg\",\"width\":6912,\"height\":3888,\"rating\":\"g\",\"file_url\":\"https:\\/\\/cdn.donmai.us\\/original\\/1b\\/1e\\/1b1ee17dcc1ea8bc4782b6099c1ef502.jpg\",\"created_at\":\"2024-10-27T16:21:20.845-04:00\",\"uploader_id\":1130070,\"score\":1,\"source\":\"https:\\/\\/i.pximg.net\\/img-original\\/img\\/2024\\/10\\/28\\/04\\/09\\/23\\/123746649_p0.jpg\",\"md5\":\"1b1ee17dcc1ea8bc4782b6099c1ef502\",\"last_comment_bumped_at\":null,\"image_width\":6912,\"image_height\":3888,\"tag_string\":\"1girl absurdres highres jinhsi_(wuthering_waves) nznzn solo wuthering_waves\",\"fav_count\":1,\"file_ext\":\"jpg\",\"last_noted_at\":null,\"parent_id\":null,\"has_children\":false,\"approver_id\":null,\"tag_count_general\":2,\"tag_count_artist\":1,\"tag_count_character\":1,\"tag_count_copyright\":1,\"file_size\":14139658,\"up_score\":1,\"down_score\":0,\"is_pending\":true,\"is_flagged\":false,\"is_deleted\":false,\"tag_count\":7,\"updated_at\":\"2024-10-27T16:21:20.845-04:00\",\"is_banned\":false,\"pixiv_id\":123746649.0,\"last_commented_at\":null,\"has_active_children\":false,\"bit_flags\":0,\"tag_count_meta\":2,\"has_large\":true,\"has_visible_children\":false,\"tag_string_general\":\"1girl solo\",\"tag_string_character\":\"jinhsi_(wuthering_waves)\",\"tag_string_copyright\":\"wuthering_waves\",\"tag_string_artist\":\"nznzn\",\"tag_string_meta\":\"absurdres highres\",\"large_file_url\":\"https:\\/\\/cdn.donmai.us\\/sample\\/1b\\/1e\\/sample-1b1ee17dcc1ea8bc4782b6099c1ef502.jpg\",\"preview_file_url\":\"https:\\/\\/cdn.donmai.us\\/180x180\\/1b\\/1e\\/1b1ee17dcc1ea8bc4782b6099c1ef502.jpg\"}\n",
      "{\"id\":8349917,\"filename\":\"8349917.jpg\",\"mimetype\":\"image\\/jpeg\",\"extension\":\"jpg\",\"width\":1488,\"height\":1366,\"rating\":\"g\",\"file_url\":\"https:\\/\\/cdn.donmai.us\\/original\\/7c\\/10\\/7c10b9ca22389e70ee940416ec54ded1.jpg\",\"created_at\":\"2024-10-27T16:20:26.211-04:00\",\"uploader_id\":1191549,\"score\":0,\"source\":\"https:\\/\\/twitter.com\\/Nk7ss\\/status\\/1850512063711609184\",\"md5\":\"7c10b9ca22389e70ee940416ec54ded1\",\"last_comment_bumped_at\":null,\"image_width\":1488,\"image_height\":1366,\"tag_string\":\"1girl :o bare_shoulders blush bracelet commentary_request detached_sleeves genshin_impact gold_trim gradient_hair green_eyes green_hair green_sleeves hair_between_eyes hair_ornament highres jewelry leaf_hair_ornament long_hair looking_at_viewer multicolored_hair nahida_(genshin_impact) nk7ss open_mouth pointy_ears side_ponytail simple_background sleeveless solo star-shaped_pupils star_(symbol) symbol-shaped_pupils upper_body white_background white_hair\",\"fav_count\":0,\"file_ext\":\"jpg\",\"last_noted_at\":null,\"parent_id\":null,\"has_children\":false,\"approver_id\":null,\"tag_count_general\":30,\"tag_count_artist\":1,\"tag_count_character\":1,\"tag_count_copyright\":1,\"file_size\":300531,\"up_score\":0,\"down_score\":0,\"is_pending\":false,\"is_flagged\":false,\"is_deleted\":false,\"tag_count\":35,\"updated_at\":\"2024-10-27T16:20:26.211-04:00\",\"is_banned\":false,\"pixiv_id\":null,\"last_commented_at\":null,\"has_active_children\":false,\"bit_flags\":0,\"tag_count_meta\":2,\"has_large\":true,\"has_visible_children\":false,\"tag_string_general\":\"1girl :o bare_shoulders blush bracelet detached_sleeves gold_trim gradient_hair green_eyes green_hair green_sleeves hair_between_eyes hair_ornament jewelry leaf_hair_ornament long_hair looking_at_viewer multicolored_hair open_mouth pointy_ears side_ponytail simple_background sleeveless solo star-shaped_pupils star_(symbol) symbol-shaped_pupils upper_body white_background white_hair\",\"tag_string_character\":\"nahida_(genshin_impact)\",\"tag_string_copyright\":\"genshin_impact\",\"tag_string_artist\":\"nk7ss\",\"tag_string_meta\":\"commentary_request highres\",\"large_file_url\":\"https:\\/\\/cdn.donmai.us\\/sample\\/7c\\/10\\/sample-7c10b9ca22389e70ee940416ec54ded1.jpg\",\"preview_file_url\":\"https:\\/\\/cdn.donmai.us\\/180x180\\/7c\\/10\\/7c10b9ca22389e70ee940416ec54ded1.jpg\"}\n"
     ]
    }
   ],
   "source": [
    "file_path = \"table.json\"\n",
    "lines_to_read = 2\n",
    "\n",
    "with open(file_path, 'r', encoding='utf-8') as file:\n",
    "    for i in range(lines_to_read):\n",
    "        print(file.readline().strip())\n"
   ]
  }
 ],
 "metadata": {
  "kernelspec": {
   "display_name": "Python 3",
   "language": "python",
   "name": "python3"
  },
  "language_info": {
   "codemirror_mode": {
    "name": "ipython",
    "version": 3
   },
   "file_extension": ".py",
   "mimetype": "text/x-python",
   "name": "python",
   "nbconvert_exporter": "python",
   "pygments_lexer": "ipython3",
   "version": "3.10.10"
  }
 },
 "nbformat": 4,
 "nbformat_minor": 5
}