├── .gitignore ├── conf ├── kinto_server └── paper ├── doc ├── mac_dev.md └── ubuntu_install.md ├── kinto_cli ├── message_tool.py └── readme.md ├── readme.md ├── redis_pub.py ├── redis_sub.py ├── testforum ├── .gitignore ├── attachments │ └── README.txt ├── avatar_store │ ├── README.txt │ ├── blank │ │ ├── 100.png │ │ ├── 150.png │ │ ├── 20.png │ │ ├── 200.png │ │ ├── 30.png │ │ ├── 50.png │ │ └── 64.png │ ├── c │ │ ├── 1 │ │ │ ├── 2_100.png │ │ │ ├── 2_150.png │ │ │ ├── 2_20.png │ │ │ ├── 2_200.png │ │ │ ├── 2_30.png │ │ │ ├── 2_400.png │ │ │ ├── 2_50.png │ │ │ └── 2_64.png │ │ └── c │ │ │ ├── 1_100.png │ │ │ ├── 1_150.png │ │ │ ├── 1_20.png │ │ │ ├── 1_200.png │ │ │ ├── 1_30.png │ │ │ ├── 1_400.png │ │ │ ├── 1_50.png │ │ │ └── 1_64.png │ └── e │ │ └── c │ │ ├── 3_100.png │ │ ├── 3_150.png │ │ ├── 3_20.png │ │ ├── 3_200.png │ │ ├── 3_30.png │ │ ├── 3_400.png │ │ ├── 3_50.png │ │ └── 3_64.png ├── cron.txt ├── manage.py ├── media │ ├── avatars │ │ ├── Nature │ │ │ ├── arctic_fox.jpg │ │ │ ├── baby_fox.jpg │ │ │ ├── blackbird.jpg │ │ │ ├── index.html │ │ │ ├── rabbit.jpg │ │ │ └── serval.jpg │ │ ├── Space │ │ │ ├── andromeda.jpg │ │ │ ├── antennae_galaxies.jpg │ │ │ ├── barred_spiral_galaxy.jpg │ │ │ ├── index.html │ │ │ ├── messier_74.jpg │ │ │ ├── ngc_1672.jpg │ │ │ └── ngc_4414.jpg │ │ ├── blank.png │ │ └── index.html │ ├── index.html │ ├── misago.png │ └── mred.png ├── readme.md ├── requirements.txt ├── testforum │ ├── __init__.py │ ├── local.example.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py └── theme │ ├── static │ └── README.txt │ └── templates │ └── README.txt ├── todo.md └── wechat_bot ├── __init__.py ├── connect_bot.py ├── forum_client.py ├── kinto_cli_cookie.json ├── localuser.py ├── message_tool_delete_after_read.py ├── message_tool_use_timestamp.py ├── paperweeklybot.py ├── paperweeklybot_3group.py ├── qa_bot.py ├── readme.md ├── requirements.txt ├── wx_itchat_test.py ├── wx_test.py └── wxbot.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/.gitignore -------------------------------------------------------------------------------- /conf/kinto_server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/conf/kinto_server -------------------------------------------------------------------------------- /conf/paper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/conf/paper -------------------------------------------------------------------------------- /doc/mac_dev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/doc/mac_dev.md -------------------------------------------------------------------------------- /doc/ubuntu_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/doc/ubuntu_install.md -------------------------------------------------------------------------------- /kinto_cli/message_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/kinto_cli/message_tool.py -------------------------------------------------------------------------------- /kinto_cli/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/kinto_cli/readme.md -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/readme.md -------------------------------------------------------------------------------- /redis_pub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/redis_pub.py -------------------------------------------------------------------------------- /redis_sub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/redis_sub.py -------------------------------------------------------------------------------- /testforum/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/testforum/.gitignore -------------------------------------------------------------------------------- /testforum/attachments/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/testforum/attachments/README.txt -------------------------------------------------------------------------------- /testforum/avatar_store/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/testforum/avatar_store/README.txt -------------------------------------------------------------------------------- /testforum/avatar_store/blank/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/testforum/avatar_store/blank/100.png -------------------------------------------------------------------------------- /testforum/avatar_store/blank/150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/testforum/avatar_store/blank/150.png -------------------------------------------------------------------------------- /testforum/avatar_store/blank/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/testforum/avatar_store/blank/20.png -------------------------------------------------------------------------------- /testforum/avatar_store/blank/200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/testforum/avatar_store/blank/200.png -------------------------------------------------------------------------------- /testforum/avatar_store/blank/30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/testforum/avatar_store/blank/30.png -------------------------------------------------------------------------------- /testforum/avatar_store/blank/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/testforum/avatar_store/blank/50.png -------------------------------------------------------------------------------- /testforum/avatar_store/blank/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/testforum/avatar_store/blank/64.png -------------------------------------------------------------------------------- /testforum/avatar_store/c/1/2_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/testforum/avatar_store/c/1/2_100.png -------------------------------------------------------------------------------- /testforum/avatar_store/c/1/2_150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/testforum/avatar_store/c/1/2_150.png -------------------------------------------------------------------------------- /testforum/avatar_store/c/1/2_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/testforum/avatar_store/c/1/2_20.png -------------------------------------------------------------------------------- /testforum/avatar_store/c/1/2_200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/testforum/avatar_store/c/1/2_200.png -------------------------------------------------------------------------------- /testforum/avatar_store/c/1/2_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/testforum/avatar_store/c/1/2_30.png -------------------------------------------------------------------------------- /testforum/avatar_store/c/1/2_400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/testforum/avatar_store/c/1/2_400.png -------------------------------------------------------------------------------- /testforum/avatar_store/c/1/2_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/testforum/avatar_store/c/1/2_50.png -------------------------------------------------------------------------------- /testforum/avatar_store/c/1/2_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/testforum/avatar_store/c/1/2_64.png -------------------------------------------------------------------------------- /testforum/avatar_store/c/c/1_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/testforum/avatar_store/c/c/1_100.png -------------------------------------------------------------------------------- /testforum/avatar_store/c/c/1_150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/testforum/avatar_store/c/c/1_150.png -------------------------------------------------------------------------------- /testforum/avatar_store/c/c/1_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/testforum/avatar_store/c/c/1_20.png -------------------------------------------------------------------------------- /testforum/avatar_store/c/c/1_200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/testforum/avatar_store/c/c/1_200.png -------------------------------------------------------------------------------- /testforum/avatar_store/c/c/1_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/testforum/avatar_store/c/c/1_30.png -------------------------------------------------------------------------------- /testforum/avatar_store/c/c/1_400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/testforum/avatar_store/c/c/1_400.png -------------------------------------------------------------------------------- /testforum/avatar_store/c/c/1_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/testforum/avatar_store/c/c/1_50.png -------------------------------------------------------------------------------- /testforum/avatar_store/c/c/1_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/testforum/avatar_store/c/c/1_64.png -------------------------------------------------------------------------------- /testforum/avatar_store/e/c/3_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/testforum/avatar_store/e/c/3_100.png -------------------------------------------------------------------------------- /testforum/avatar_store/e/c/3_150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/testforum/avatar_store/e/c/3_150.png -------------------------------------------------------------------------------- /testforum/avatar_store/e/c/3_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/testforum/avatar_store/e/c/3_20.png -------------------------------------------------------------------------------- /testforum/avatar_store/e/c/3_200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/testforum/avatar_store/e/c/3_200.png -------------------------------------------------------------------------------- /testforum/avatar_store/e/c/3_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/testforum/avatar_store/e/c/3_30.png -------------------------------------------------------------------------------- /testforum/avatar_store/e/c/3_400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/testforum/avatar_store/e/c/3_400.png -------------------------------------------------------------------------------- /testforum/avatar_store/e/c/3_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/testforum/avatar_store/e/c/3_50.png -------------------------------------------------------------------------------- /testforum/avatar_store/e/c/3_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/testforum/avatar_store/e/c/3_64.png -------------------------------------------------------------------------------- /testforum/cron.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testforum/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/testforum/manage.py -------------------------------------------------------------------------------- /testforum/media/avatars/Nature/arctic_fox.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/testforum/media/avatars/Nature/arctic_fox.jpg -------------------------------------------------------------------------------- /testforum/media/avatars/Nature/baby_fox.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/testforum/media/avatars/Nature/baby_fox.jpg -------------------------------------------------------------------------------- /testforum/media/avatars/Nature/blackbird.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/testforum/media/avatars/Nature/blackbird.jpg -------------------------------------------------------------------------------- /testforum/media/avatars/Nature/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testforum/media/avatars/Nature/rabbit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/testforum/media/avatars/Nature/rabbit.jpg -------------------------------------------------------------------------------- /testforum/media/avatars/Nature/serval.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/testforum/media/avatars/Nature/serval.jpg -------------------------------------------------------------------------------- /testforum/media/avatars/Space/andromeda.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/testforum/media/avatars/Space/andromeda.jpg -------------------------------------------------------------------------------- /testforum/media/avatars/Space/antennae_galaxies.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/testforum/media/avatars/Space/antennae_galaxies.jpg -------------------------------------------------------------------------------- /testforum/media/avatars/Space/barred_spiral_galaxy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/testforum/media/avatars/Space/barred_spiral_galaxy.jpg -------------------------------------------------------------------------------- /testforum/media/avatars/Space/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testforum/media/avatars/Space/messier_74.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/testforum/media/avatars/Space/messier_74.jpg -------------------------------------------------------------------------------- /testforum/media/avatars/Space/ngc_1672.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/testforum/media/avatars/Space/ngc_1672.jpg -------------------------------------------------------------------------------- /testforum/media/avatars/Space/ngc_4414.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/testforum/media/avatars/Space/ngc_4414.jpg -------------------------------------------------------------------------------- /testforum/media/avatars/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/testforum/media/avatars/blank.png -------------------------------------------------------------------------------- /testforum/media/avatars/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testforum/media/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testforum/media/misago.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/testforum/media/misago.png -------------------------------------------------------------------------------- /testforum/media/mred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/testforum/media/mred.png -------------------------------------------------------------------------------- /testforum/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/testforum/readme.md -------------------------------------------------------------------------------- /testforum/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/testforum/requirements.txt -------------------------------------------------------------------------------- /testforum/testforum/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testforum/testforum/local.example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/testforum/testforum/local.example.py -------------------------------------------------------------------------------- /testforum/testforum/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/testforum/testforum/settings.py -------------------------------------------------------------------------------- /testforum/testforum/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/testforum/testforum/urls.py -------------------------------------------------------------------------------- /testforum/testforum/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/testforum/testforum/wsgi.py -------------------------------------------------------------------------------- /testforum/theme/static/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/testforum/theme/static/README.txt -------------------------------------------------------------------------------- /testforum/theme/templates/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/testforum/theme/templates/README.txt -------------------------------------------------------------------------------- /todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/todo.md -------------------------------------------------------------------------------- /wechat_bot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wechat_bot/connect_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/wechat_bot/connect_bot.py -------------------------------------------------------------------------------- /wechat_bot/forum_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/wechat_bot/forum_client.py -------------------------------------------------------------------------------- /wechat_bot/kinto_cli_cookie.json: -------------------------------------------------------------------------------- 1 | {"lastest_thread_timestamp":0} 2 | -------------------------------------------------------------------------------- /wechat_bot/localuser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/wechat_bot/localuser.py -------------------------------------------------------------------------------- /wechat_bot/message_tool_delete_after_read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/wechat_bot/message_tool_delete_after_read.py -------------------------------------------------------------------------------- /wechat_bot/message_tool_use_timestamp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/wechat_bot/message_tool_use_timestamp.py -------------------------------------------------------------------------------- /wechat_bot/paperweeklybot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/wechat_bot/paperweeklybot.py -------------------------------------------------------------------------------- /wechat_bot/paperweeklybot_3group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/wechat_bot/paperweeklybot_3group.py -------------------------------------------------------------------------------- /wechat_bot/qa_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/wechat_bot/qa_bot.py -------------------------------------------------------------------------------- /wechat_bot/readme.md: -------------------------------------------------------------------------------- 1 | # wechat_bot 2 | 这一块应当独立成库,bot和forum是分开部署的 3 | 4 | 5 | # todo 6 | 改为message_bot 7 | -------------------------------------------------------------------------------- /wechat_bot/requirements.txt: -------------------------------------------------------------------------------- 1 | itchat==1.1.5 2 | requests==2.9.2 3 | kinto-http==6.2.1 4 | Pillow 5 | tinydb 6 | -------------------------------------------------------------------------------- /wechat_bot/wx_itchat_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/wechat_bot/wx_itchat_test.py -------------------------------------------------------------------------------- /wechat_bot/wx_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/wechat_bot/wx_test.py -------------------------------------------------------------------------------- /wechat_bot/wxbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/paperweekly_forum/HEAD/wechat_bot/wxbot.py --------------------------------------------------------------------------------