├── .github └── workflows │ └── python-publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── WeiboBot ├── __init__.py ├── action │ └── __init__.py ├── bot.py ├── comment │ └── __init__.py ├── const │ └── __init__.py ├── exception │ └── __init__.py ├── log │ └── __init__.py ├── message │ ├── __init__.py │ ├── chat.py │ └── message.py ├── net_tool.py ├── user │ └── __init__.py ├── util.py └── weibo │ └── __init__.py ├── requirements.txt └── setup.py /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- 1 | # This workflow will upload a Python Package using Twine when a release is created 2 | # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python#publishing-to-package-registries 3 | 4 | # This workflow uses actions that are not certified by GitHub. 5 | # They are provided by a third-party and are governed by 6 | # separate terms of service, privacy policy, and support 7 | # documentation. 8 | 9 | name: Upload Python Package 10 | 11 | on: 12 | release: 13 | types: [published] 14 | 15 | permissions: 16 | contents: read 17 | 18 | jobs: 19 | deploy: 20 | 21 | runs-on: ubuntu-latest 22 | 23 | steps: 24 | - uses: actions/checkout@v3 25 | - name: Set up Python 26 | uses: actions/setup-python@v3 27 | with: 28 | python-version: '3.x' 29 | - name: Install dependencies 30 | run: | 31 | python -m pip install --upgrade pip 32 | pip install build 33 | - name: Build package 34 | run: python -m build 35 | - name: Publish package 36 | uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29 37 | with: 38 | user: __token__ 39 | password: ${{ secrets.PYPI_API_TOKEN }} 40 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | *.py[cod] 4 | *$py.class 5 | 6 | # C extensions 7 | *.so 8 | 9 | # Distribution / packaging 10 | .Python 11 | build/ 12 | develop-eggs/ 13 | dist/ 14 | downloads/ 15 | eggs/ 16 | .eggs/ 17 | lib/ 18 | lib64/ 19 | parts/ 20 | sdist/ 21 | var/ 22 | wheels/ 23 | pip-wheel-metadata/ 24 | share/python-wheels/ 25 | *.egg-info/ 26 | .installed.cfg 27 | *.egg 28 | MANIFEST 29 | build.bat 30 | 31 | # PyInstaller 32 | # Usually these files are written by a python script from a template 33 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 34 | *.manifest 35 | *.spec 36 | 37 | # Installer logs 38 | pip-log.txt 39 | pip-delete-this-directory.txt 40 | 41 | # Unit test / coverage reports 42 | htmlcov/ 43 | .tox/ 44 | .nox/ 45 | .coverage 46 | .coverage.* 47 | .cache 48 | nosetests.xml 49 | coverage.xml 50 | *.cover 51 | *.py,cover 52 | .hypothesis/ 53 | .pytest_cache/ 54 | 55 | # Translations 56 | *.mo 57 | *.pot 58 | 59 | # Django stuff: 60 | *.log 61 | local_settings.py 62 | db.sqlite3 63 | db.sqlite3-journal 64 | 65 | # Flask stuff: 66 | instance/ 67 | .webassets-cache 68 | 69 | # Scrapy stuff: 70 | .scrapy 71 | 72 | # Sphinx documentation 73 | docs/_build/ 74 | 75 | # PyBuilder 76 | target/ 77 | 78 | # Jupyter Notebook 79 | .ipynb_checkpoints 80 | 81 | # IPython 82 | profile_default/ 83 | ipython_config.py 84 | 85 | # pyenv 86 | .python-version 87 | 88 | # pipenv 89 | # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. 90 | # However, in case of collaboration, if having platform-specific dependencies or dependencies 91 | # having no cross-platform support, pipenv may install dependencies that don't work, or not 92 | # install all needed dependencies. 93 | #Pipfile.lock 94 | 95 | # PEP 582; used by e.g. github.com/David-OConnor/pyflow 96 | __pypackages__/ 97 | 98 | # Celery stuff 99 | celerybeat-schedule 100 | celerybeat.pid 101 | 102 | # SageMath parsed files 103 | *.sage.py 104 | 105 | # Environments 106 | .env 107 | .venv 108 | env/ 109 | venv/ 110 | ENV/ 111 | env.bak/ 112 | venv.bak/ 113 | 114 | # Spyder project settings 115 | .spyderproject 116 | .spyproject 117 | 118 | # Rope project settings 119 | .ropeproject 120 | 121 | # mkdocs documentation 122 | /site 123 | 124 | # mypy 125 | .mypy_cache/ 126 | .dmypy.json 127 | dmypy.json 128 | 129 | # Pyre type checker 130 | .pyre/ 131 | 132 | # Temp files / directories 133 | .temp/ 134 | **temp** 135 | tmp/ 136 | *.tmp 137 | *.temp 138 | 139 | # IDE Directories 140 | .vscode/ 141 | .idea/ 142 | 143 | #cofig json 144 | *.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU AFFERO GENERAL PUBLIC LICENSE 2 | Version 3, 19 November 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU Affero General Public License is a free, copyleft license for 11 | software and other kinds of works, specifically designed to ensure 12 | cooperation with the community in the case of network server software. 13 | 14 | The licenses for most software and other practical works are designed 15 | to take away your freedom to share and change the works. By contrast, 16 | our General Public Licenses are intended to guarantee your freedom to 17 | share and change all versions of a program--to make sure it remains free 18 | software for all its users. 19 | 20 | When we speak of free software, we are referring to freedom, not 21 | price. Our General Public Licenses are designed to make sure that you 22 | have the freedom to distribute copies of free software (and charge for 23 | them if you wish), that you receive source code or can get it if you 24 | want it, that you can change the software or use pieces of it in new 25 | free programs, and that you know you can do these things. 26 | 27 | Developers that use our General Public Licenses protect your rights 28 | with two steps: (1) assert copyright on the software, and (2) offer 29 | you this License which gives you legal permission to copy, distribute 30 | and/or modify the software. 31 | 32 | A secondary benefit of defending all users' freedom is that 33 | improvements made in alternate versions of the program, if they 34 | receive widespread use, become available for other developers to 35 | incorporate. Many developers of free software are heartened and 36 | encouraged by the resulting cooperation. However, in the case of 37 | software used on network servers, this result may fail to come about. 38 | The GNU General Public License permits making a modified version and 39 | letting the public access it on a server without ever releasing its 40 | source code to the public. 41 | 42 | The GNU Affero General Public License is designed specifically to 43 | ensure that, in such cases, the modified source code becomes available 44 | to the community. It requires the operator of a network server to 45 | provide the source code of the modified version running there to the 46 | users of that server. Therefore, public use of a modified version, on 47 | a publicly accessible server, gives the public access to the source 48 | code of the modified version. 49 | 50 | An older license, called the Affero General Public License and 51 | published by Affero, was designed to accomplish similar goals. This is 52 | a different license, not a version of the Affero GPL, but Affero has 53 | released a new version of the Affero GPL which permits relicensing under 54 | this license. 55 | 56 | The precise terms and conditions for copying, distribution and 57 | modification follow. 58 | 59 | TERMS AND CONDITIONS 60 | 61 | 0. Definitions. 62 | 63 | "This License" refers to version 3 of the GNU Affero General Public License. 64 | 65 | "Copyright" also means copyright-like laws that apply to other kinds of 66 | works, such as semiconductor masks. 67 | 68 | "The Program" refers to any copyrightable work licensed under this 69 | License. Each licensee is addressed as "you". "Licensees" and 70 | "recipients" may be individuals or organizations. 71 | 72 | To "modify" a work means to copy from or adapt all or part of the work 73 | in a fashion requiring copyright permission, other than the making of an 74 | exact copy. The resulting work is called a "modified version" of the 75 | earlier work or a work "based on" the earlier work. 76 | 77 | A "covered work" means either the unmodified Program or a work based 78 | on the Program. 79 | 80 | To "propagate" a work means to do anything with it that, without 81 | permission, would make you directly or secondarily liable for 82 | infringement under applicable copyright law, except executing it on a 83 | computer or modifying a private copy. Propagation includes copying, 84 | distribution (with or without modification), making available to the 85 | public, and in some countries other activities as well. 86 | 87 | To "convey" a work means any kind of propagation that enables other 88 | parties to make or receive copies. Mere interaction with a user through 89 | a computer network, with no transfer of a copy, is not conveying. 90 | 91 | An interactive user interface displays "Appropriate Legal Notices" 92 | to the extent that it includes a convenient and prominently visible 93 | feature that (1) displays an appropriate copyright notice, and (2) 94 | tells the user that there is no warranty for the work (except to the 95 | extent that warranties are provided), that licensees may convey the 96 | work under this License, and how to view a copy of this License. If 97 | the interface presents a list of user commands or options, such as a 98 | menu, a prominent item in the list meets this criterion. 99 | 100 | 1. Source Code. 101 | 102 | The "source code" for a work means the preferred form of the work 103 | for making modifications to it. "Object code" means any non-source 104 | form of a work. 105 | 106 | A "Standard Interface" means an interface that either is an official 107 | standard defined by a recognized standards body, or, in the case of 108 | interfaces specified for a particular programming language, one that 109 | is widely used among developers working in that language. 110 | 111 | The "System Libraries" of an executable work include anything, other 112 | than the work as a whole, that (a) is included in the normal form of 113 | packaging a Major Component, but which is not part of that Major 114 | Component, and (b) serves only to enable use of the work with that 115 | Major Component, or to implement a Standard Interface for which an 116 | implementation is available to the public in source code form. A 117 | "Major Component", in this context, means a major essential component 118 | (kernel, window system, and so on) of the specific operating system 119 | (if any) on which the executable work runs, or a compiler used to 120 | produce the work, or an object code interpreter used to run it. 121 | 122 | The "Corresponding Source" for a work in object code form means all 123 | the source code needed to generate, install, and (for an executable 124 | work) run the object code and to modify the work, including scripts to 125 | control those activities. However, it does not include the work's 126 | System Libraries, or general-purpose tools or generally available free 127 | programs which are used unmodified in performing those activities but 128 | which are not part of the work. For example, Corresponding Source 129 | includes interface definition files associated with source files for 130 | the work, and the source code for shared libraries and dynamically 131 | linked subprograms that the work is specifically designed to require, 132 | such as by intimate data communication or control flow between those 133 | subprograms and other parts of the work. 134 | 135 | The Corresponding Source need not include anything that users 136 | can regenerate automatically from other parts of the Corresponding 137 | Source. 138 | 139 | The Corresponding Source for a work in source code form is that 140 | same work. 141 | 142 | 2. Basic Permissions. 143 | 144 | All rights granted under this License are granted for the term of 145 | copyright on the Program, and are irrevocable provided the stated 146 | conditions are met. This License explicitly affirms your unlimited 147 | permission to run the unmodified Program. The output from running a 148 | covered work is covered by this License only if the output, given its 149 | content, constitutes a covered work. This License acknowledges your 150 | rights of fair use or other equivalent, as provided by copyright law. 151 | 152 | You may make, run and propagate covered works that you do not 153 | convey, without conditions so long as your license otherwise remains 154 | in force. You may convey covered works to others for the sole purpose 155 | of having them make modifications exclusively for you, or provide you 156 | with facilities for running those works, provided that you comply with 157 | the terms of this License in conveying all material for which you do 158 | not control copyright. Those thus making or running the covered works 159 | for you must do so exclusively on your behalf, under your direction 160 | and control, on terms that prohibit them from making any copies of 161 | your copyrighted material outside their relationship with you. 162 | 163 | Conveying under any other circumstances is permitted solely under 164 | the conditions stated below. Sublicensing is not allowed; section 10 165 | makes it unnecessary. 166 | 167 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 168 | 169 | No covered work shall be deemed part of an effective technological 170 | measure under any applicable law fulfilling obligations under article 171 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 172 | similar laws prohibiting or restricting circumvention of such 173 | measures. 174 | 175 | When you convey a covered work, you waive any legal power to forbid 176 | circumvention of technological measures to the extent such circumvention 177 | is effected by exercising rights under this License with respect to 178 | the covered work, and you disclaim any intention to limit operation or 179 | modification of the work as a means of enforcing, against the work's 180 | users, your or third parties' legal rights to forbid circumvention of 181 | technological measures. 182 | 183 | 4. Conveying Verbatim Copies. 184 | 185 | You may convey verbatim copies of the Program's source code as you 186 | receive it, in any medium, provided that you conspicuously and 187 | appropriately publish on each copy an appropriate copyright notice; 188 | keep intact all notices stating that this License and any 189 | non-permissive terms added in accord with section 7 apply to the code; 190 | keep intact all notices of the absence of any warranty; and give all 191 | recipients a copy of this License along with the Program. 192 | 193 | You may charge any price or no price for each copy that you convey, 194 | and you may offer support or warranty protection for a fee. 195 | 196 | 5. Conveying Modified Source Versions. 197 | 198 | You may convey a work based on the Program, or the modifications to 199 | produce it from the Program, in the form of source code under the 200 | terms of section 4, provided that you also meet all of these conditions: 201 | 202 | a) The work must carry prominent notices stating that you modified 203 | it, and giving a relevant date. 204 | 205 | b) The work must carry prominent notices stating that it is 206 | released under this License and any conditions added under section 207 | 7. This requirement modifies the requirement in section 4 to 208 | "keep intact all notices". 209 | 210 | c) You must license the entire work, as a whole, under this 211 | License to anyone who comes into possession of a copy. This 212 | License will therefore apply, along with any applicable section 7 213 | additional terms, to the whole of the work, and all its parts, 214 | regardless of how they are packaged. This License gives no 215 | permission to license the work in any other way, but it does not 216 | invalidate such permission if you have separately received it. 217 | 218 | d) If the work has interactive user interfaces, each must display 219 | Appropriate Legal Notices; however, if the Program has interactive 220 | interfaces that do not display Appropriate Legal Notices, your 221 | work need not make them do so. 222 | 223 | A compilation of a covered work with other separate and independent 224 | works, which are not by their nature extensions of the covered work, 225 | and which are not combined with it such as to form a larger program, 226 | in or on a volume of a storage or distribution medium, is called an 227 | "aggregate" if the compilation and its resulting copyright are not 228 | used to limit the access or legal rights of the compilation's users 229 | beyond what the individual works permit. Inclusion of a covered work 230 | in an aggregate does not cause this License to apply to the other 231 | parts of the aggregate. 232 | 233 | 6. Conveying Non-Source Forms. 234 | 235 | You may convey a covered work in object code form under the terms 236 | of sections 4 and 5, provided that you also convey the 237 | machine-readable Corresponding Source under the terms of this License, 238 | in one of these ways: 239 | 240 | a) Convey the object code in, or embodied in, a physical product 241 | (including a physical distribution medium), accompanied by the 242 | Corresponding Source fixed on a durable physical medium 243 | customarily used for software interchange. 244 | 245 | b) Convey the object code in, or embodied in, a physical product 246 | (including a physical distribution medium), accompanied by a 247 | written offer, valid for at least three years and valid for as 248 | long as you offer spare parts or customer support for that product 249 | model, to give anyone who possesses the object code either (1) a 250 | copy of the Corresponding Source for all the software in the 251 | product that is covered by this License, on a durable physical 252 | medium customarily used for software interchange, for a price no 253 | more than your reasonable cost of physically performing this 254 | conveying of source, or (2) access to copy the 255 | Corresponding Source from a network server at no charge. 256 | 257 | c) Convey individual copies of the object code with a copy of the 258 | written offer to provide the Corresponding Source. This 259 | alternative is allowed only occasionally and noncommercially, and 260 | only if you received the object code with such an offer, in accord 261 | with subsection 6b. 262 | 263 | d) Convey the object code by offering access from a designated 264 | place (gratis or for a charge), and offer equivalent access to the 265 | Corresponding Source in the same way through the same place at no 266 | further charge. You need not require recipients to copy the 267 | Corresponding Source along with the object code. If the place to 268 | copy the object code is a network server, the Corresponding Source 269 | may be on a different server (operated by you or a third party) 270 | that supports equivalent copying facilities, provided you maintain 271 | clear directions next to the object code saying where to find the 272 | Corresponding Source. Regardless of what server hosts the 273 | Corresponding Source, you remain obligated to ensure that it is 274 | available for as long as needed to satisfy these requirements. 275 | 276 | e) Convey the object code using peer-to-peer transmission, provided 277 | you inform other peers where the object code and Corresponding 278 | Source of the work are being offered to the general public at no 279 | charge under subsection 6d. 280 | 281 | A separable portion of the object code, whose source code is excluded 282 | from the Corresponding Source as a System Library, need not be 283 | included in conveying the object code work. 284 | 285 | A "User Product" is either (1) a "consumer product", which means any 286 | tangible personal property which is normally used for personal, family, 287 | or household purposes, or (2) anything designed or sold for incorporation 288 | into a dwelling. In determining whether a product is a consumer product, 289 | doubtful cases shall be resolved in favor of coverage. For a particular 290 | product received by a particular user, "normally used" refers to a 291 | typical or common use of that class of product, regardless of the status 292 | of the particular user or of the way in which the particular user 293 | actually uses, or expects or is expected to use, the product. A product 294 | is a consumer product regardless of whether the product has substantial 295 | commercial, industrial or non-consumer uses, unless such uses represent 296 | the only significant mode of use of the product. 297 | 298 | "Installation Information" for a User Product means any methods, 299 | procedures, authorization keys, or other information required to install 300 | and execute modified versions of a covered work in that User Product from 301 | a modified version of its Corresponding Source. The information must 302 | suffice to ensure that the continued functioning of the modified object 303 | code is in no case prevented or interfered with solely because 304 | modification has been made. 305 | 306 | If you convey an object code work under this section in, or with, or 307 | specifically for use in, a User Product, and the conveying occurs as 308 | part of a transaction in which the right of possession and use of the 309 | User Product is transferred to the recipient in perpetuity or for a 310 | fixed term (regardless of how the transaction is characterized), the 311 | Corresponding Source conveyed under this section must be accompanied 312 | by the Installation Information. But this requirement does not apply 313 | if neither you nor any third party retains the ability to install 314 | modified object code on the User Product (for example, the work has 315 | been installed in ROM). 316 | 317 | The requirement to provide Installation Information does not include a 318 | requirement to continue to provide support service, warranty, or updates 319 | for a work that has been modified or installed by the recipient, or for 320 | the User Product in which it has been modified or installed. Access to a 321 | network may be denied when the modification itself materially and 322 | adversely affects the operation of the network or violates the rules and 323 | protocols for communication across the network. 324 | 325 | Corresponding Source conveyed, and Installation Information provided, 326 | in accord with this section must be in a format that is publicly 327 | documented (and with an implementation available to the public in 328 | source code form), and must require no special password or key for 329 | unpacking, reading or copying. 330 | 331 | 7. Additional Terms. 332 | 333 | "Additional permissions" are terms that supplement the terms of this 334 | License by making exceptions from one or more of its conditions. 335 | Additional permissions that are applicable to the entire Program shall 336 | be treated as though they were included in this License, to the extent 337 | that they are valid under applicable law. If additional permissions 338 | apply only to part of the Program, that part may be used separately 339 | under those permissions, but the entire Program remains governed by 340 | this License without regard to the additional permissions. 341 | 342 | When you convey a copy of a covered work, you may at your option 343 | remove any additional permissions from that copy, or from any part of 344 | it. (Additional permissions may be written to require their own 345 | removal in certain cases when you modify the work.) You may place 346 | additional permissions on material, added by you to a covered work, 347 | for which you have or can give appropriate copyright permission. 348 | 349 | Notwithstanding any other provision of this License, for material you 350 | add to a covered work, you may (if authorized by the copyright holders of 351 | that material) supplement the terms of this License with terms: 352 | 353 | a) Disclaiming warranty or limiting liability differently from the 354 | terms of sections 15 and 16 of this License; or 355 | 356 | b) Requiring preservation of specified reasonable legal notices or 357 | author attributions in that material or in the Appropriate Legal 358 | Notices displayed by works containing it; or 359 | 360 | c) Prohibiting misrepresentation of the origin of that material, or 361 | requiring that modified versions of such material be marked in 362 | reasonable ways as different from the original version; or 363 | 364 | d) Limiting the use for publicity purposes of names of licensors or 365 | authors of the material; or 366 | 367 | e) Declining to grant rights under trademark law for use of some 368 | trade names, trademarks, or service marks; or 369 | 370 | f) Requiring indemnification of licensors and authors of that 371 | material by anyone who conveys the material (or modified versions of 372 | it) with contractual assumptions of liability to the recipient, for 373 | any liability that these contractual assumptions directly impose on 374 | those licensors and authors. 375 | 376 | All other non-permissive additional terms are considered "further 377 | restrictions" within the meaning of section 10. If the Program as you 378 | received it, or any part of it, contains a notice stating that it is 379 | governed by this License along with a term that is a further 380 | restriction, you may remove that term. If a license document contains 381 | a further restriction but permits relicensing or conveying under this 382 | License, you may add to a covered work material governed by the terms 383 | of that license document, provided that the further restriction does 384 | not survive such relicensing or conveying. 385 | 386 | If you add terms to a covered work in accord with this section, you 387 | must place, in the relevant source files, a statement of the 388 | additional terms that apply to those files, or a notice indicating 389 | where to find the applicable terms. 390 | 391 | Additional terms, permissive or non-permissive, may be stated in the 392 | form of a separately written license, or stated as exceptions; 393 | the above requirements apply either way. 394 | 395 | 8. Termination. 396 | 397 | You may not propagate or modify a covered work except as expressly 398 | provided under this License. Any attempt otherwise to propagate or 399 | modify it is void, and will automatically terminate your rights under 400 | this License (including any patent licenses granted under the third 401 | paragraph of section 11). 402 | 403 | However, if you cease all violation of this License, then your 404 | license from a particular copyright holder is reinstated (a) 405 | provisionally, unless and until the copyright holder explicitly and 406 | finally terminates your license, and (b) permanently, if the copyright 407 | holder fails to notify you of the violation by some reasonable means 408 | prior to 60 days after the cessation. 409 | 410 | Moreover, your license from a particular copyright holder is 411 | reinstated permanently if the copyright holder notifies you of the 412 | violation by some reasonable means, this is the first time you have 413 | received notice of violation of this License (for any work) from that 414 | copyright holder, and you cure the violation prior to 30 days after 415 | your receipt of the notice. 416 | 417 | Termination of your rights under this section does not terminate the 418 | licenses of parties who have received copies or rights from you under 419 | this License. If your rights have been terminated and not permanently 420 | reinstated, you do not qualify to receive new licenses for the same 421 | material under section 10. 422 | 423 | 9. Acceptance Not Required for Having Copies. 424 | 425 | You are not required to accept this License in order to receive or 426 | run a copy of the Program. Ancillary propagation of a covered work 427 | occurring solely as a consequence of using peer-to-peer transmission 428 | to receive a copy likewise does not require acceptance. However, 429 | nothing other than this License grants you permission to propagate or 430 | modify any covered work. These actions infringe copyright if you do 431 | not accept this License. Therefore, by modifying or propagating a 432 | covered work, you indicate your acceptance of this License to do so. 433 | 434 | 10. Automatic Licensing of Downstream Recipients. 435 | 436 | Each time you convey a covered work, the recipient automatically 437 | receives a license from the original licensors, to run, modify and 438 | propagate that work, subject to this License. You are not responsible 439 | for enforcing compliance by third parties with this License. 440 | 441 | An "entity transaction" is a transaction transferring control of an 442 | organization, or substantially all assets of one, or subdividing an 443 | organization, or merging organizations. If propagation of a covered 444 | work results from an entity transaction, each party to that 445 | transaction who receives a copy of the work also receives whatever 446 | licenses to the work the party's predecessor in interest had or could 447 | give under the previous paragraph, plus a right to possession of the 448 | Corresponding Source of the work from the predecessor in interest, if 449 | the predecessor has it or can get it with reasonable efforts. 450 | 451 | You may not impose any further restrictions on the exercise of the 452 | rights granted or affirmed under this License. For example, you may 453 | not impose a license fee, royalty, or other charge for exercise of 454 | rights granted under this License, and you may not initiate litigation 455 | (including a cross-claim or counterclaim in a lawsuit) alleging that 456 | any patent claim is infringed by making, using, selling, offering for 457 | sale, or importing the Program or any portion of it. 458 | 459 | 11. Patents. 460 | 461 | A "contributor" is a copyright holder who authorizes use under this 462 | License of the Program or a work on which the Program is based. The 463 | work thus licensed is called the contributor's "contributor version". 464 | 465 | A contributor's "essential patent claims" are all patent claims 466 | owned or controlled by the contributor, whether already acquired or 467 | hereafter acquired, that would be infringed by some manner, permitted 468 | by this License, of making, using, or selling its contributor version, 469 | but do not include claims that would be infringed only as a 470 | consequence of further modification of the contributor version. For 471 | purposes of this definition, "control" includes the right to grant 472 | patent sublicenses in a manner consistent with the requirements of 473 | this License. 474 | 475 | Each contributor grants you a non-exclusive, worldwide, royalty-free 476 | patent license under the contributor's essential patent claims, to 477 | make, use, sell, offer for sale, import and otherwise run, modify and 478 | propagate the contents of its contributor version. 479 | 480 | In the following three paragraphs, a "patent license" is any express 481 | agreement or commitment, however denominated, not to enforce a patent 482 | (such as an express permission to practice a patent or covenant not to 483 | sue for patent infringement). To "grant" such a patent license to a 484 | party means to make such an agreement or commitment not to enforce a 485 | patent against the party. 486 | 487 | If you convey a covered work, knowingly relying on a patent license, 488 | and the Corresponding Source of the work is not available for anyone 489 | to copy, free of charge and under the terms of this License, through a 490 | publicly available network server or other readily accessible means, 491 | then you must either (1) cause the Corresponding Source to be so 492 | available, or (2) arrange to deprive yourself of the benefit of the 493 | patent license for this particular work, or (3) arrange, in a manner 494 | consistent with the requirements of this License, to extend the patent 495 | license to downstream recipients. "Knowingly relying" means you have 496 | actual knowledge that, but for the patent license, your conveying the 497 | covered work in a country, or your recipient's use of the covered work 498 | in a country, would infringe one or more identifiable patents in that 499 | country that you have reason to believe are valid. 500 | 501 | If, pursuant to or in connection with a single transaction or 502 | arrangement, you convey, or propagate by procuring conveyance of, a 503 | covered work, and grant a patent license to some of the parties 504 | receiving the covered work authorizing them to use, propagate, modify 505 | or convey a specific copy of the covered work, then the patent license 506 | you grant is automatically extended to all recipients of the covered 507 | work and works based on it. 508 | 509 | A patent license is "discriminatory" if it does not include within 510 | the scope of its coverage, prohibits the exercise of, or is 511 | conditioned on the non-exercise of one or more of the rights that are 512 | specifically granted under this License. You may not convey a covered 513 | work if you are a party to an arrangement with a third party that is 514 | in the business of distributing software, under which you make payment 515 | to the third party based on the extent of your activity of conveying 516 | the work, and under which the third party grants, to any of the 517 | parties who would receive the covered work from you, a discriminatory 518 | patent license (a) in connection with copies of the covered work 519 | conveyed by you (or copies made from those copies), or (b) primarily 520 | for and in connection with specific products or compilations that 521 | contain the covered work, unless you entered into that arrangement, 522 | or that patent license was granted, prior to 28 March 2007. 523 | 524 | Nothing in this License shall be construed as excluding or limiting 525 | any implied license or other defenses to infringement that may 526 | otherwise be available to you under applicable patent law. 527 | 528 | 12. No Surrender of Others' Freedom. 529 | 530 | If conditions are imposed on you (whether by court order, agreement or 531 | otherwise) that contradict the conditions of this License, they do not 532 | excuse you from the conditions of this License. If you cannot convey a 533 | covered work so as to satisfy simultaneously your obligations under this 534 | License and any other pertinent obligations, then as a consequence you may 535 | not convey it at all. For example, if you agree to terms that obligate you 536 | to collect a royalty for further conveying from those to whom you convey 537 | the Program, the only way you could satisfy both those terms and this 538 | License would be to refrain entirely from conveying the Program. 539 | 540 | 13. Remote Network Interaction; Use with the GNU General Public License. 541 | 542 | Notwithstanding any other provision of this License, if you modify the 543 | Program, your modified version must prominently offer all users 544 | interacting with it remotely through a computer network (if your version 545 | supports such interaction) an opportunity to receive the Corresponding 546 | Source of your version by providing access to the Corresponding Source 547 | from a network server at no charge, through some standard or customary 548 | means of facilitating copying of software. This Corresponding Source 549 | shall include the Corresponding Source for any work covered by version 3 550 | of the GNU General Public License that is incorporated pursuant to the 551 | following paragraph. 552 | 553 | Notwithstanding any other provision of this License, you have 554 | permission to link or combine any covered work with a work licensed 555 | under version 3 of the GNU General Public License into a single 556 | combined work, and to convey the resulting work. The terms of this 557 | License will continue to apply to the part which is the covered work, 558 | but the work with which it is combined will remain governed by version 559 | 3 of the GNU General Public License. 560 | 561 | 14. Revised Versions of this License. 562 | 563 | The Free Software Foundation may publish revised and/or new versions of 564 | the GNU Affero General Public License from time to time. Such new versions 565 | will be similar in spirit to the present version, but may differ in detail to 566 | address new problems or concerns. 567 | 568 | Each version is given a distinguishing version number. If the 569 | Program specifies that a certain numbered version of the GNU Affero General 570 | Public License "or any later version" applies to it, you have the 571 | option of following the terms and conditions either of that numbered 572 | version or of any later version published by the Free Software 573 | Foundation. If the Program does not specify a version number of the 574 | GNU Affero General Public License, you may choose any version ever published 575 | by the Free Software Foundation. 576 | 577 | If the Program specifies that a proxy can decide which future 578 | versions of the GNU Affero General Public License can be used, that proxy's 579 | public statement of acceptance of a version permanently authorizes you 580 | to choose that version for the Program. 581 | 582 | Later license versions may give you additional or different 583 | permissions. However, no additional obligations are imposed on any 584 | author or copyright holder as a result of your choosing to follow a 585 | later version. 586 | 587 | 15. Disclaimer of Warranty. 588 | 589 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 590 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 591 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 592 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 593 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 594 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 595 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 596 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 597 | 598 | 16. Limitation of Liability. 599 | 600 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 601 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 602 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 603 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 604 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 605 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 606 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 607 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 608 | SUCH DAMAGES. 609 | 610 | 17. Interpretation of Sections 15 and 16. 611 | 612 | If the disclaimer of warranty and limitation of liability provided 613 | above cannot be given local legal effect according to their terms, 614 | reviewing courts shall apply local law that most closely approximates 615 | an absolute waiver of all civil liability in connection with the 616 | Program, unless a warranty or assumption of liability accompanies a 617 | copy of the Program in return for a fee. 618 | 619 | END OF TERMS AND CONDITIONS 620 | 621 | How to Apply These Terms to Your New Programs 622 | 623 | If you develop a new program, and you want it to be of the greatest 624 | possible use to the public, the best way to achieve this is to make it 625 | free software which everyone can redistribute and change under these terms. 626 | 627 | To do so, attach the following notices to the program. It is safest 628 | to attach them to the start of each source file to most effectively 629 | state the exclusion of warranty; and each file should have at least 630 | the "copyright" line and a pointer to where the full notice is found. 631 | 632 | 633 | Copyright (C) 634 | 635 | This program is free software: you can redistribute it and/or modify 636 | it under the terms of the GNU Affero General Public License as published 637 | by the Free Software Foundation, either version 3 of the License, or 638 | (at your option) any later version. 639 | 640 | This program is distributed in the hope that it will be useful, 641 | but WITHOUT ANY WARRANTY; without even the implied warranty of 642 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 643 | GNU Affero General Public License for more details. 644 | 645 | You should have received a copy of the GNU Affero General Public License 646 | along with this program. If not, see . 647 | 648 | Also add information on how to contact you by electronic and paper mail. 649 | 650 | If your software can interact with users remotely through a computer 651 | network, you should also make sure that it provides a way for users to 652 | get its source. For example, if your program is a web application, its 653 | interface could display a "Source" link that leads users to an archive 654 | of the code. There are many ways you could offer source, and different 655 | solutions will be better for different programs; see section 13 for the 656 | specific requirements. 657 | 658 | You should also get your employer (if you work as a programmer) or school, 659 | if any, to sign a "copyright disclaimer" for the program, if necessary. 660 | For more information on this, and how to apply and follow the GNU AGPL, see 661 | . 662 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
2 | 3 | # WeiboBot 4 | 5 | _基于微博H5 API开发的机器人框架_ 6 | 7 | PyPI 8 | Python Version 9 | Python Implementation 10 | 11 | License 12 | 13 |
14 | 15 | 16 | 17 | WeiboBot 是一个基于微博H5 API开发的机器人框架,提供了一个简单的接口,可以让你的机器人更加简单的接入微博,并且提供了一些简单的指令,比如:转评赞,回复消息等 18 | 19 | ## 安装 20 | 21 | `pip install WeiboBot` 22 | 23 | ## 开始使用(事件驱动模式) 24 | 25 | ```python 26 | from WeiboBot import Bot 27 | from WeiboBot.message import Chat 28 | from WeiboBot.weibo import Weibo 29 | from WeiboBot.comment import Comment 30 | 31 | from datetime import datetime 32 | 33 | cookies = "your cookies" 34 | myBot = Bot(cookies=cookies) 35 | 36 | 37 | @myBot.onNewMsg # 被私信的时候触发 38 | async def on_msg(chat: Chat): 39 | for msg in chat.msg_list: # 消息列表 40 | print(f"{msg.sender_screen_name}:{msg.text}") 41 | 42 | 43 | @myBot.onNewWeibo # 首页刷到新微博时触发 44 | async def on_weibo(weibo: Weibo): 45 | if weibo.original_weibo is None: # 是原创微博 46 | print(f"{weibo.text}") 47 | 48 | 49 | @myBot.onMentionCmt # 提及我的评论时触发 50 | async def on_mention_cmt(cmt: Comment): 51 | print(f"{cmt.text}") 52 | 53 | 54 | @myBot.onTick # 每次循环触发 55 | async def on_tick(): 56 | print(datetime.now()) 57 | 58 | 59 | if __name__ == '__main__': 60 | myBot.run() 61 | 62 | ``` 63 | 64 | ## 开始使用(主动模式) 65 | 66 | ```python 67 | from WeiboBot import Bot 68 | from WeiboBot.const import * 69 | import asyncio 70 | 71 | cookies = "your cookies" 72 | myBot = Bot(cookies=cookies) 73 | 74 | 75 | async def main(): 76 | await asyncio.wait_for(myBot.login(), timeout=10) # 先登录 77 | weibo_example1 = myBot.get_weibo(123456789) # 获取微博 78 | weibo_example2 = myBot.post_weibo("发一条微博", visible=VISIBLE.ALL) 79 | # ...... 其他操作 80 | 81 | 82 | if __name__ == '__main__': 83 | asyncio.run(main()) 84 | 85 | ``` 86 | 87 | ## 如何获取cookie 88 | 89 | 登录m.weibo.cn 90 | 91 | 按F12查看请求头 92 | 93 | ![image](https://user-images.githubusercontent.com/37311477/164148500-c6a19f75-d1fd-48e6-9850-6c5380847dcd.png) 94 | 95 | 96 | ## 示例 97 | 98 | [好康Bot](https://github.com/MerlinCN/WeiboWatchdog) 99 | 100 | > 一个转发小姐姐的Bot 101 | 102 | -------------------------------------------------------------------------------- /WeiboBot/__init__.py: -------------------------------------------------------------------------------- 1 | from .bot import * 2 | from .const import * 3 | 4 | name = "WeiboBot" 5 | -------------------------------------------------------------------------------- /WeiboBot/action/__init__.py: -------------------------------------------------------------------------------- 1 | import traceback 2 | 3 | from WeiboBot.const import ACTION 4 | from WeiboBot.util import * 5 | from WeiboBot.exception import * 6 | 7 | 8 | class Action: 9 | def __init__(self, func, *args, **kwargs): 10 | self.func = func 11 | self.args = args 12 | self.kwargs = kwargs 13 | self.status = ACTION.UNDONE 14 | self.run_time = 0 15 | self.logger = get_logger(__name__) 16 | 17 | async def run(self): 18 | if self.run_time > 5: 19 | self.status = ACTION.MAX_TRY 20 | return None, self.status 21 | self.status = ACTION.RUNNING 22 | self.run_time += 1 23 | try: 24 | result = await self.func(*self.args, **self.kwargs) 25 | except RequestError: 26 | self.status = ACTION.FAILED 27 | self.logger.error(traceback.format_exc()) 28 | return None, self.status 29 | except Exception as e: 30 | self.status = ACTION.MAX_TRY 31 | self.logger.error(e) 32 | return None, self.status 33 | self.status = ACTION.DONE 34 | return result, self.status 35 | 36 | def __str__(self): 37 | return f'' 38 | -------------------------------------------------------------------------------- /WeiboBot/bot.py: -------------------------------------------------------------------------------- 1 | import asyncio 2 | import time 3 | from typing import Union, List, Callable 4 | from types import FunctionType 5 | 6 | from tinydb import TinyDB, Query 7 | 8 | from WeiboBot.action import Action 9 | from WeiboBot.comment import Comment 10 | from WeiboBot.const import * 11 | from WeiboBot.exception import * 12 | from WeiboBot.message import Chat 13 | from WeiboBot.net_tool import NetTool 14 | from WeiboBot.user import User 15 | from WeiboBot.util import * 16 | from WeiboBot.weibo import Weibo 17 | 18 | 19 | class Bot(User): 20 | def __init__(self, username: str = "", password: str = "", cookies: str = "", loop_interval=1, action_interval=1, 21 | is_debug=False 22 | ): 23 | super(Bot, self).__init__() 24 | self.nettool = NetTool(username, password, cookies) 25 | 26 | self.msg_handler: List[FunctionType] = [] 27 | self.weibo_handler: List[FunctionType] = [] 28 | self.mention_cmt_handler: List[FunctionType] = [] 29 | self.tick_handler: List[FunctionType] = [] 30 | self.weibo_read = set() 31 | self.is_debug = is_debug 32 | self.action_list: list[Action] = [] # 待执行的动作列表 33 | self.action_interval = action_interval 34 | self.logger = get_logger(__name__, is_debug) 35 | self.loop_interval = loop_interval 36 | self.db = TinyDB('WeiboBotDB.json') 37 | 38 | # region 数据库操作 39 | def is_weibo_read(self, mid: Union[str, int]) -> bool: 40 | weibo_read = self.db.table("weibo_read") 41 | q = Query() 42 | mid = int(mid) 43 | return bool(weibo_read.search(q.mid == mid)) 44 | 45 | def mark_weibo(self, mid: Union[str, int]): 46 | mid = int(mid) 47 | weibo_read = self.db.table("weibo_read") 48 | weibo_read.insert({"mid": mid}) 49 | 50 | def is_mention_cmt_read(self, mid: Union[str, int]) -> bool: 51 | mention_cmt_read = self.db.table("mention_cmt_read") 52 | q = Query() 53 | mid = int(mid) 54 | return bool(mention_cmt_read.search(q.mid == mid)) 55 | 56 | def mark_mention_cmt(self, mid: Union[str, int]): 57 | mid = int(mid) 58 | mention_cmt_read = self.db.table("mention_cmt_read") 59 | mention_cmt_read.insert({"mid": mid}) 60 | 61 | def is_weibo_repost(self, mid: Union[str, int]) -> bool: 62 | """ 63 | 判断微博是否转发 64 | 65 | :param mid: 微博id 66 | :return: True/False 67 | """ 68 | weibo_repost = self.db.table("weibo_repost") 69 | q = Query() 70 | mid = int(mid) 71 | return bool(weibo_repost.search(q.mid == mid)) 72 | 73 | def mark_weibo_repost(self, mid: Union[str, int]): 74 | mid = int(mid) 75 | weibo_repost = self.db.table("weibo_repost") 76 | weibo_repost.insert({"mid": mid}) 77 | 78 | # endregion 79 | async def login(self): 80 | login_result, self.id = await self.nettool.login() 81 | 82 | if login_result is True: 83 | self.logger.info(f"登录成功") 84 | else: 85 | raise LoginError("登录失败") 86 | 87 | await self.init_bot_info() 88 | 89 | return True 90 | 91 | async def close(self): 92 | await self.nettool.close() 93 | 94 | async def init_bot_info(self): 95 | raw_data = await self.nettool.user_info(self.id) 96 | if raw_data["ok"] == 0: 97 | raise RequestError("获取用户信息失败") 98 | self.parse(raw_data["data"]["user"]) 99 | 100 | self.logger.info( 101 | f"用户名:{self.screen_name},关注:{self.follow_count},粉丝:{self.followers_count},微博数量:{self.statuses_count}") 102 | self.logger.info(f"微博简介:{self.description}") 103 | self.logger.info(f"微博地址:{self.profile_url}") 104 | self.logger.info(f"微博头像:{self.profile_image_url}") 105 | self.logger.info(f"微博背景图:{self.cover_image_phone}") 106 | 107 | async def get_weibo(self, mid: Union[str, int]) -> Union[Weibo, None]: 108 | """ 109 | 获取微博实例 110 | 111 | :param mid:微博id 112 | :return: 微博实例 113 | """ 114 | try: 115 | raw_data = await self.nettool.weibo_info(mid) 116 | except RequestError: 117 | self.logger.error(f"获取微博 {mid} 失败") 118 | return None 119 | weibo = Weibo() 120 | weibo.parse(raw_data) 121 | 122 | if weibo.original_weibo and self.is_weibo_read(weibo.original_weibo.mid): 123 | weibo.original_weibo.is_read = True 124 | 125 | return weibo 126 | 127 | async def post_weibo(self, content: str, visible: VISIBLE = VISIBLE.ALL) -> Union[Weibo, None]: 128 | """ 129 | 发布微博 130 | 131 | :param content:内容 132 | :param visible:可见性 133 | :return:新发出的微博 134 | """ 135 | result = await self.nettool.post_weibo(content, visible) 136 | try: 137 | self.check_result(result) 138 | except Exception as e: 139 | self.logger.error(f"发送微博错误 {content} {result} {e}") 140 | return None 141 | weibo = Weibo() 142 | weibo.parse(result["data"]) 143 | self.logger.info(f"发送微博成功 {weibo.detail_url()}") 144 | return weibo 145 | 146 | def check_result(self, result: dict): 147 | if result["ok"] == 0: 148 | try: 149 | err = WEIBO_ERR(result.get("errno", 0)) 150 | except ValueError as e: 151 | err = 0 152 | if err == WEIBO_ERR.NO_EXIST: 153 | raise NoExistError(f"微博不存在或暂无查看权限") 154 | elif err == WEIBO_ERR.NO_CONTENT: 155 | return True 156 | else: 157 | raise RequestError(f"错误类型{result['errno']},{result['msg']}") 158 | elif result["ok"] == -100: 159 | raise LoginError(f"Cookies已过期,请重新登录") 160 | return True 161 | 162 | def post_action(self, content: str, visible: VISIBLE = VISIBLE.ALL): 163 | self.action_list.append(Action(self.post_weibo, content, visible)) 164 | 165 | def repost_action(self, mid: Union[str, int], content: str = "转发微博", dualPost: bool = False): 166 | for action in self.action_list: 167 | if mid in action.args: 168 | self.logger.info(f"动作序列中已存在{mid}的转发动作") 169 | return 170 | self.action_list.append(Action(self.repost_weibo, mid, content, dualPost)) 171 | 172 | async def repost_weibo(self, mid: Union[str, int], content: str = "转发微博", dualPost: bool = False) -> Union[ 173 | Weibo, None]: 174 | """ 175 | 转发微博 176 | 177 | :param mid:微博id 178 | :param content:内容 179 | :param dualPost: 是否同时评论 180 | :return:新发出的微博 181 | """ 182 | result = await self.nettool.repost_weibo(mid, content, dualPost) 183 | try: 184 | self.check_result(result) 185 | except Exception as e: 186 | self.logger.error(f"转发微博错误 {mid} {result} {e}") 187 | return None 188 | weibo = Weibo() 189 | weibo.parse(result["data"]) 190 | self.mark_weibo_repost(mid) 191 | self.logger.info(f"转发微博 {weibo.detail_url()} 成功") 192 | return weibo 193 | 194 | async def send_message(self, uid: Union[str, int], content: str = "", file_path: str = "") -> Union[Chat, None]: 195 | """ 196 | 私信并返回聊天对象 197 | 198 | :param uid:角色id 199 | :param content:文本内容 200 | :param file_path:附件 201 | :return: 聊天对象 202 | """ 203 | result = await self.nettool.send_message(uid, content, file_path) 204 | try: 205 | self.check_result(result) 206 | except Exception as e: 207 | self.logger.error(f"私信错误 {uid} {result} {e}") 208 | return None 209 | chat = Chat() 210 | chat.parse(result["data"]) 211 | self.logger.info(f"私信成功") 212 | return chat 213 | 214 | async def comment_weibo(self, mid: Union[str, int], content: str = "", file_path: str = "") -> Union[Comment, None]: 215 | result = await self.nettool.comment_weibo(mid, content, file_path) 216 | try: 217 | self.check_result(result) 218 | except Exception as e: 219 | self.logger.error(f"评论错误 {mid} {result} {e}") 220 | return None 221 | cmt = Comment() 222 | cmt.parse(result["data"]) 223 | self.logger.info(f"评论成功 {cmt.root_weibo.detail_url()}#{cmt.id}") 224 | return cmt 225 | 226 | async def del_comment(self, cid) -> int: 227 | """ 228 | 删除某条评论 229 | 230 | :param cid: 评论id 231 | :return:返回的json字典 232 | """ 233 | result = await self.nettool.del_comment(cid) 234 | self.logger.info(f"删除评论 {cid} 成功") 235 | return result["ok"] 236 | 237 | async def chat_list(self, page: int = 1): 238 | result = await self.nettool.chat_list(page) 239 | if not result: 240 | return [] 241 | self.check_result(result) 242 | return result["data"] 243 | 244 | async def mentions_cmt_list(self, page: int = 1) -> List[Comment]: 245 | result = await self.nettool.mentions_cmt(page) 246 | try: 247 | self.check_result(result) 248 | except Exception as e: 249 | self.logger.error(f"获取@我的评论 错误 {page} {result} {e}") 250 | return [] 251 | result_list = [] 252 | if not result_list: 253 | return result_list 254 | for dCmt in result["data"]: 255 | cmt = Comment() 256 | cmt.parse(dCmt) 257 | result_list.append(cmt) 258 | return result_list 259 | 260 | async def mentions_cmt_event(self): 261 | try: 262 | cmt_list = await self.mentions_cmt_list() 263 | except RequestError as e: 264 | self.logger.warning(f"获取@我的评论失败:{e}") 265 | return 266 | for cmt in cmt_list: 267 | if self.is_mention_cmt_read(cmt.mid): 268 | continue 269 | for func in self.mention_cmt_handler: 270 | try: 271 | await func(cmt) 272 | except Exception as e: 273 | self.logger.error(f"处理@我的评论回调 {func.__name__} 失败:{e}") 274 | continue 275 | self.mark_mention_cmt(cmt.mid) 276 | 277 | async def chat_event(self): 278 | try: 279 | data = await self.chat_list() 280 | except Exception as e: 281 | self.logger.warning(f"获取聊天列表失败:{e}") 282 | return 283 | for dChat in data: 284 | unread = dChat["unread"] 285 | scheme = dChat["scheme"] 286 | if unread > 0 and scheme.find("gid=") == -1: 287 | try: 288 | oChat = await self.user_chat(dChat['user']["id"]) 289 | except Exception as e: 290 | self.logger.warning(f"获取聊天失败:{e}") 291 | continue 292 | if oChat is None: 293 | self.logger.warning(f"获取聊天失败:{dChat}") 294 | continue 295 | oChat.msg_list = [oMsg for oMsg in oChat.msg_list[:unread] if oMsg.isDm()] 296 | for func in self.msg_handler: 297 | try: 298 | await func(oChat) 299 | except Exception as e: 300 | self.logger.error(f"处理聊天回调 {func.__name__} 失败:{e}") 301 | continue 302 | 303 | async def refresh_page(self, max_id=0): 304 | try: 305 | result = await self.nettool.refresh_page(max_id) 306 | self.check_result(result) 307 | except Exception as e: 308 | self.logger.error(f"获取主页错误 {max_id} {e}") 309 | return {} 310 | return result["data"] 311 | 312 | async def solve_weibo(self, mid: Union[str, int]): 313 | weibo = await self.get_weibo(mid) 314 | for func in self.weibo_handler: 315 | try: 316 | await func(weibo) 317 | except Exception as e: 318 | self.logger.error(f"处理微博回调 {func.__name__} 失败:{e}") 319 | continue 320 | 321 | async def _scan_page(self, result: dict): 322 | for weibo in result["statuses"]: 323 | await self.chat_event() 324 | if self.is_weibo_read(weibo["id"]): 325 | continue 326 | try: 327 | await self.solve_weibo(weibo["id"]) 328 | except Exception as e: 329 | self.logger.warning(f"获取微博失败:{e}") 330 | continue 331 | self.mark_weibo(weibo["id"]) 332 | 333 | async def scan_pages(self, page: int = 1): 334 | page_cnt = 0 335 | last_weibo_id = 0 336 | while True: 337 | if page_cnt >= page: 338 | if self.action_list: 339 | self.logger.info(f"正在处理剩余操作{len(self.action_list)}") 340 | continue 341 | else: 342 | self.logger.info("扫描完成") 343 | break 344 | await self.run_action() 345 | try: 346 | result = await self.refresh_page(last_weibo_id) 347 | await self._scan_page(result) 348 | page_cnt += 1 349 | self.logger.info("第%d页获取成功" % page_cnt) 350 | last_weibo_id = result["statuses"][-1]["id"] 351 | except Exception as e: 352 | await asyncio.sleep(1) 353 | continue 354 | 355 | async def weibo_event(self): 356 | result = await self.refresh_page() 357 | if not result: 358 | return 359 | await self._scan_page(result) 360 | 361 | async def user_chat(self, uid: Union[str, int], since_id: int = 0) -> Union[Chat, None]: 362 | result = await self.nettool.user_chat(uid, since_id) 363 | try: 364 | self.check_result(result) 365 | except Exception as e: 366 | self.logger.error(f"获取聊天记录错误 {uid} {result} {e}") 367 | return 368 | chat = Chat() 369 | chat.parse(result["data"]) 370 | return chat 371 | 372 | async def like_weibo(self, mid) -> dict: 373 | """ 374 | 点赞某条微博 375 | 376 | :param mid: 微博id 377 | :return:返回的json字典 378 | """ 379 | result = await self.nettool.like(mid) 380 | try: 381 | self.check_result(result) 382 | except Exception as e: 383 | self.logger.error(f"点赞错误 {mid} {result} {e}") 384 | return {} 385 | self.logger.info(f"点赞微博 {mid} 成功") 386 | return result["data"] 387 | 388 | async def del_weibo(self, mid) -> int: 389 | """ 390 | 删除自己某条微博 391 | 392 | :param mid: 微博id 393 | :return:返回的json字典 394 | """ 395 | result = await self.nettool.del_weibo(mid) 396 | self.logger.info(f"删除微博 {mid} 成功") 397 | return result["ok"] 398 | 399 | async def get_user(self, uid) -> Union[User, None]: 400 | """ 401 | 获取微博用户对象 402 | 403 | :param uid: 用户id 404 | :return: 用户对象 405 | """ 406 | result = await self.nettool.get_user(uid) 407 | try: 408 | self.check_result(result) 409 | except Exception as e: 410 | self.logger.error(f"获取用户错误 {uid} {result} {e}") 411 | return 412 | user = User() 413 | user.parse(result["data"]["user"]) 414 | 415 | for status in result["data"]["statuses"]: 416 | weibo = Weibo() 417 | weibo.parse(status) 418 | user.latest_weibo.append(weibo) 419 | 420 | return user 421 | 422 | # region 事件装饰器 423 | def onNewMsg(self, func: FunctionType): 424 | if func not in self.msg_handler: 425 | self.msg_handler.append(func) 426 | 427 | def onNewWeibo(self, func: FunctionType): 428 | if func not in self.weibo_handler: 429 | self.weibo_handler.append(func) 430 | 431 | def onMentionCmt(self, func: FunctionType): 432 | if func not in self.mention_cmt_handler: 433 | self.mention_cmt_handler.append(func) 434 | 435 | def onTick(self, func: FunctionType): 436 | if func not in self.tick_handler: 437 | self.tick_handler.append(func) 438 | 439 | # endregion 440 | 441 | async def tick(self): 442 | for func in self.tick_handler: 443 | try: 444 | await func() 445 | except Exception as e: 446 | self.logger.error(f"tick处理失败:{e}") 447 | continue 448 | 449 | async def run_action(self): 450 | """ 451 | 执行所有的action 452 | 如果成功或者超过最大尝试次数,则删除action 453 | 454 | :return: 455 | """ 456 | for action in self.action_list: 457 | result, status = await action.run() 458 | if status == ACTION.MAX_TRY or status == ACTION.DONE: 459 | self.action_list.remove(action) 460 | 461 | await asyncio.sleep(self.action_interval) 462 | 463 | async def lifecycle(self): 464 | await asyncio.wait_for(self.login(), timeout=10) 465 | while True: 466 | await asyncio.gather( 467 | self.chat_event(), 468 | self.weibo_event(), 469 | self.mentions_cmt_event(), 470 | self.tick(), 471 | self.run_action(), 472 | ) 473 | self.logger.info("Heartbeat") 474 | 475 | def run(self): 476 | loop = asyncio.get_event_loop() 477 | try: 478 | loop.run_until_complete(self.lifecycle()) 479 | except KeyboardInterrupt: 480 | loop.run_until_complete(self.nettool.close()) 481 | self.db.close() 482 | loop.close() 483 | -------------------------------------------------------------------------------- /WeiboBot/comment/__init__.py: -------------------------------------------------------------------------------- 1 | from WeiboBot.util import * 2 | from WeiboBot.weibo import Weibo 3 | from WeiboBot.user import User 4 | from typing import Union 5 | 6 | 7 | class Comment: 8 | def __init__(self): 9 | self.disable_reply = IntField() # 关闭回复 10 | self.created_at = StrField() # 创建时间 11 | self.id = StrField() # 评论id 12 | self.rootid = StrField() # 评论的原微博id 13 | self.rootidstr = StrField() # 评论的原微博id字符串 14 | self.floor_number = IntField() # 楼层数 15 | self.text = StrField() # 评论内容 16 | self.restrictOperate = IntField() # 是否可以删除 17 | self.source = StrField() # 评论来源 18 | self.comment_badge = ListField() # 评论徽章 19 | self.user = DictField() # 评论用户 20 | self.mid = StrField() # 评论的微博id 21 | self.status = DictField() # 评论的微博 22 | self.like_count = IntField() # 点赞数 23 | self.reply_count = IntField() # 回复数 24 | self.liked = BoolField() # 是否点赞 25 | self.gid = IntField() # 分组id 26 | self.feature_type = IntField() # 特殊徽章类型 27 | self.cut_tail = BoolField() # 是否截断 28 | self.bid = StrField() 29 | self.reply_original_text = StrField() # 回复原文 30 | self.feedback_menu_type = IntField() # 回复菜单类型 31 | 32 | self.logger = get_logger(__name__) 33 | self.root_weibo: Union[Weibo, None] = None 34 | self.sender: Union[User, None] = None 35 | 36 | def parse(self, data): 37 | for k, v in data.items(): 38 | if hasattr(self, k): 39 | setattr(self, k, v) 40 | else: 41 | self.logger.debug(f'{k} is not a valid attribute, type is {type(v)}') 42 | 43 | if data["status"]: 44 | weibo = Weibo() 45 | weibo.parse(data["status"]) 46 | self.root_weibo = weibo 47 | else: 48 | self.logger.warning(f'status is not a valid attribute') 49 | 50 | if data["user"]: 51 | user = User() 52 | user.parse(data["user"]) 53 | self.sender = user 54 | else: 55 | self.logger.warning(f'user is not a valid attribute') 56 | -------------------------------------------------------------------------------- /WeiboBot/const/__init__.py: -------------------------------------------------------------------------------- 1 | from enum import Enum 2 | 3 | __all__ = ["VISIBLE", "MSG", "ACTION", "WEIBO_ERR","MEDIA"] 4 | 5 | 6 | class VISIBLE(Enum): 7 | ALL = 0 # 全部 8 | ONLY_ME = 1 # 仅自己可见 9 | FRIENDS = 6 # 仅好友可见 10 | FOLLOWERS = 10 # 仅关注人可见 11 | 12 | 13 | class MSG(Enum): 14 | NORMAL = 1 # 普通消息 15 | SUBSCRIPTION = 4 # 订阅消息 16 | 17 | 18 | class ACTION(Enum): 19 | UNDONE = 0 # 未完成 20 | RUNNING = 1 # 运行中 21 | DONE = 2 # 已完成 22 | FAILED = 3 # 失败 23 | MAX_TRY = 4 # 超过最大尝试次数 24 | 25 | 26 | class WEIBO_ERR(Enum): 27 | DEFAULT = 0 # 默认 28 | NO_DATA = 100011 # 没有数据 29 | NO_CONTENT = 100010 #没有数据 30 | NO_EXIST = 20101 # 微博不存在或暂无查看权限 31 | 32 | 33 | class MEDIA(Enum): 34 | NONE = 0 35 | PHOTO = 1 36 | -------------------------------------------------------------------------------- /WeiboBot/exception/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ["LoginError", "RequestError", "NoExistError", "UploadError"] 2 | 3 | 4 | class LoginError(Exception): 5 | pass 6 | 7 | 8 | class NoExistError(Exception): 9 | pass 10 | 11 | 12 | class RequestError(Exception): 13 | pass 14 | 15 | 16 | class UploadError(Exception): 17 | pass 18 | -------------------------------------------------------------------------------- /WeiboBot/log/__init__.py: -------------------------------------------------------------------------------- 1 | import logging 2 | import logging.handlers 3 | import os 4 | import sys 5 | from logging import Logger 6 | 7 | 8 | class Log(Logger): 9 | def __init__(self, name: str, level=logging.INFO, is_print=True, is_file=True, is_debug=False): 10 | super(Log, self).__init__(name, level) 11 | if is_print: 12 | s_handler = logging.StreamHandler(sys.stdout) 13 | s_handler.setFormatter( 14 | logging.Formatter(f"%(asctime)s - %(levelname)s - {name}[%(funcName)s][:%(lineno)d] - %(message)s")) 15 | self.addHandler(s_handler) 16 | if is_file is True and is_debug is False: 17 | log_path = f"{os.getcwd()}/Log/WeiboBot/" 18 | if not os.path.exists(log_path): 19 | os.makedirs(log_path) 20 | f_handler = logging.handlers.TimedRotatingFileHandler(log_path + f'/WeiboBot.log', encoding='utf8') 21 | f_handler.suffix = ".%Y%m%d_%H" 22 | f_handler.setFormatter( 23 | logging.Formatter(f"%(asctime)s - %(levelname)s - {name}[%(funcName)s][:%(lineno)d] - %(message)s")) 24 | self.addHandler(f_handler) 25 | -------------------------------------------------------------------------------- /WeiboBot/message/__init__.py: -------------------------------------------------------------------------------- 1 | from .chat import Chat 2 | from .message import Message 3 | -------------------------------------------------------------------------------- /WeiboBot/message/chat.py: -------------------------------------------------------------------------------- 1 | from typing import List, Dict 2 | 3 | from WeiboBot.user import User 4 | from WeiboBot.util import * 5 | from .message import Message 6 | 7 | 8 | class Chat: 9 | def __init__(self): 10 | self.following = BoolField() # 是否关注 11 | self.last_read_mid = IntField() # 12 | self.title = StrField() # 标题 13 | self.total_number = IntField() # 总数 14 | self.users = DictField() 15 | 16 | self.user_dict: Dict[int, User] = {} 17 | self.msg_list: List[Message] = [] 18 | 19 | self.logger = get_logger(__name__) 20 | 21 | def parse(self, data): 22 | for k, v in data.items(): 23 | if k == "msgs": 24 | continue 25 | if hasattr(self, k): 26 | setattr(self, k, v) 27 | else: 28 | self.logger.debug(f'{k} is not a valid attribute, type is {type(v)}') 29 | 30 | if data["msgs"]: 31 | for v in data["msgs"]: 32 | msg = Message() 33 | msg.parse(v) 34 | self.msg_list.append(msg) 35 | if data["users"]: 36 | for k, v in data["users"].items(): 37 | user = User() 38 | user.parse(v) 39 | self.user_dict[int(k)] = user 40 | 41 | def since_id(self): 42 | if self.msg_list: 43 | return self.msg_list[0].id 44 | return 0 45 | -------------------------------------------------------------------------------- /WeiboBot/message/message.py: -------------------------------------------------------------------------------- 1 | from WeiboBot.const import * 2 | from WeiboBot.util import * 3 | 4 | 5 | class Message: 6 | def __init__(self): 7 | self.created_at = StrField() # 8 | self.dm_type = IntField() # 9 | self.id = StrField() # 10 | self.media_type = IntField() # 11 | self.msg_status = IntField() # 12 | self.recipient_id = StrField() # 收件人id 13 | self.recipient_screen_name = StrField() # 收件人的昵称 14 | self.sender_id = StrField() # 发送者id 15 | self.sender_screen_name = StrField() # 发送者的昵称 16 | self.text = StrField() # 内容 17 | self.attachment = DictField() # 附件 18 | 19 | self.logger = get_logger(__name__) 20 | 21 | def parse(self, data): 22 | for k, v in data.items(): 23 | if hasattr(self, k): 24 | setattr(self, k, v) 25 | else: 26 | self.logger.debug(f'{k} is not a valid attribute, type is {type(v)}') 27 | 28 | def isDm(self): 29 | """ 30 | 判断是否是私信 31 | :return: 32 | """ 33 | return self.dm_type == MSG.NORMAL.value 34 | 35 | def isSubscription(self): 36 | """ 37 | 判断是否是订阅 38 | :return: 39 | """ 40 | return self.dm_type == MSG.SUBSCRIPTION.value 41 | -------------------------------------------------------------------------------- /WeiboBot/net_tool.py: -------------------------------------------------------------------------------- 1 | import asyncio 2 | import json 3 | import re 4 | from typing import Dict, Tuple, Union 5 | 6 | import requests 7 | import requests.utils 8 | import aiohttp 9 | from WeiboBot.const import * 10 | from WeiboBot.exception import * 11 | from WeiboBot.util import * 12 | 13 | 14 | class NetTool: 15 | def __init__(self, username: str = "", password: str = "", cookies: str = ""): 16 | super(NetTool, self).__init__() 17 | # 暂不支持用户名和密码登录 v1.0 18 | if username and password: 19 | raise NotImplementedError("暂不支持用户名和密码登录") 20 | elif cookies: 21 | # 如果有cookies则直接使用cookies登录 22 | pass 23 | else: 24 | raise LoginError("登录失败!请输入cookies") 25 | 26 | self.cookies: str = cookies 27 | self.header: Dict[str, str] = main_header(bytes(self.cookies, encoding="utf-8")) 28 | self.session: aiohttp.ClientSession = aiohttp.ClientSession() 29 | self.cookies_dict = parse_cookies(cookies) 30 | 31 | self.st_times = 0 # 获取st的次数 32 | self.logger = get_logger(__name__) 33 | 34 | def add_ref(self, value: str) -> Dict[str, str]: 35 | self.header["referer"] = value 36 | return self.header 37 | 38 | async def get(self, url: str, params: Dict = None, header=None, types="json") -> Dict: 39 | if header is None: 40 | header = self.header 41 | async with self.session.get(url, headers=header, params=params) as r: 42 | if r.status != 200: 43 | raise RequestError(f"网络错误!状态码:{r.status}\n{await r.text()}") 44 | self.refresh_cookies() 45 | if types == "json": 46 | result = await r.json() 47 | else: 48 | result = await r.text() 49 | return result 50 | 51 | async def post(self, url: str, params: Dict = None, header=None, types="json") -> Dict: 52 | if header is None: 53 | header = self.header 54 | async with self.session.post(url, headers=header, data=params) as r: 55 | if r.status != 200: 56 | raise RequestError(f"网络错误!状态码:{r.status}\n{await r.text()}") 57 | self.refresh_cookies() 58 | if types == "json": 59 | result = await r.json() 60 | else: 61 | result = await r.text() 62 | return result 63 | 64 | def refresh_cookies(self): 65 | cookies: dict = self.session.cookie_jar.filter_cookies("https://m.weibo.cn") 66 | for k, v in cookies.items(): 67 | for c in self.cookies_dict: 68 | if c["name"] == k: 69 | c["value"] = v 70 | 71 | async def login(self) -> Tuple[bool, int]: 72 | url = "https://m.weibo.cn/api/config" 73 | self.add_ref(url) 74 | data = await self.get(url) 75 | isLogin = data['data']['login'] 76 | if not isLogin: 77 | return False, 0 78 | st = data["data"]["st"] 79 | self.header["x-xsrf-token"] = st 80 | roleid = int(data['data']['uid']) 81 | return True, roleid 82 | 83 | async def st(self): 84 | """ 85 | 获得session token 86 | 87 | :return: session token 88 | """ 89 | try: 90 | data = await self.get("https://m.weibo.cn/api/config") 91 | except Exception: 92 | if self.st_times > 5: 93 | self.logger.error("获取st失败!") 94 | st = self.header["x-xsrf-token"] 95 | return st 96 | self.st_times += 1 97 | return await self.st() 98 | islogin = data["data"]["login"] 99 | if islogin is False: 100 | raise LoginError("登录失败!请输入cookies") 101 | st = data["data"]["st"] 102 | return st 103 | 104 | async def user_info(self, user_id: int): 105 | url = f"https://m.weibo.cn/profile/info?uid={user_id}" 106 | self.add_ref(f"https://m.weibo.cn/profile/{user_id}") 107 | return await self.get(url) 108 | 109 | async def post_weibo(self, content: str, visible: VISIBLE): 110 | params = { 111 | "content": content, 112 | "visible": visible.value, 113 | "st": await self.st(), 114 | "_spr": "screen:2560x1440" 115 | } 116 | 117 | return await self.post("https://m.weibo.cn/api/statuses/update", params=params) 118 | 119 | async def repost_weibo(self, mid: Union[str, int], content: str, dualPost: bool): 120 | self.add_ref(f"https://m.weibo.cn/compose/repost?id={mid}") 121 | self.header["x-xsrf-token"] = await self.st() 122 | data = { 123 | "id": mid, 124 | "content": content, 125 | "mid": mid, 126 | "st": self.header["x-xsrf-token"], 127 | "_spr": "screen:2560x1440", 128 | "dualPost": int(dualPost) 129 | } 130 | return await self.post("https://m.weibo.cn/api/statuses/repost", params=data) 131 | 132 | async def weibo_info(self, mid: Union[str, int]) -> dict: 133 | url = f"https://m.weibo.cn/detail/{mid}" 134 | r = await self.get(url, types="text") 135 | weibo_info = {} 136 | try: 137 | weibo_info = json.loads(re.findall(r'(?<=render_data = \[)[\s\S]*(?=\]\[0\])', r)[0])[ 138 | "status"] 139 | except IndexError: 140 | self.logger.error(f"{url} 解析错误 \n{r.text}") 141 | raise RequestError("解析微博信息错误") 142 | 143 | return weibo_info 144 | 145 | async def upload_chat_file(self, tuid, file_path): 146 | files = { 147 | "file": (file_path, open(file_path, 'rb'), 'image/jpeg') 148 | } 149 | data = { 150 | "tuid": tuid, 151 | "st": await self.st(), 152 | "_spr": "screen:2560x1440" 153 | } 154 | r = requests.post("https://m.weibo.cn/api/chat/upload", headers=self.header, data=data, files=files) 155 | if r.status_code != 200: 156 | raise UploadError(f"上传文件错误 {r.text}") 157 | result = r.json() 158 | return result['data']['fids'] 159 | 160 | async def upload_comment_file(self, file_path): 161 | files = { 162 | "pic": (file_path, open(file_path, 'rb'), 'image/jpeg') 163 | } 164 | data = { 165 | "type": "json", 166 | "st": await self.st(), 167 | "_spr": "screen:2560x1440" 168 | } 169 | r = requests.post("https://m.weibo.cn/api/statuses/uploadPic", headers=self.header, data=data, files=files) 170 | if r.status_code != 200: 171 | raise UploadError(f"上传文件错误 {r.text}") 172 | result = r.json() 173 | return result["pic_id"] 174 | 175 | async def send_message(self, uid: Union[str, int], content: str, file_path: str): 176 | 177 | params = { 178 | "uid": int(uid), 179 | "content": content, 180 | "st": await self.st(), 181 | "_spr": "screen:2560x1440", 182 | } 183 | 184 | if file_path: 185 | media_type = MEDIA.PHOTO.value 186 | try: 187 | fids = await self.upload_chat_file(tuid=int(uid), file_path=file_path) 188 | except RequestError as e: 189 | self.logger.error(f"文件上传失败 {e}") 190 | return {} 191 | params["media_type"] = media_type 192 | params["content"] = "" 193 | params["fids"] = fids 194 | 195 | return await self.post("https://m.weibo.cn/api/chat/send", params=params) 196 | 197 | async def user_chat(self, uid: Union[str, int], since_id: int): 198 | params = {"count": 20, "uid": uid, "since_id": since_id} 199 | return await self.get("https://m.weibo.cn/api/chat/list", params=params) 200 | 201 | async def chat_list(self, page: int): 202 | params = {"page": page} 203 | return await self.get("https://m.weibo.cn/message/msglist", params=params) 204 | 205 | async def mentions_cmt(self, page: int): 206 | params = {"page": page} 207 | return await self.get("https://m.weibo.cn/message/mentionsCmt", params=params) 208 | 209 | async def refresh_page(self, max_id: Union[str, int]): 210 | self.add_ref("https://m.weibo.cn/") 211 | params = {"max_id": max_id} 212 | return await self.get("https://m.weibo.cn/feed/friends", params=params) 213 | 214 | async def like(self, mid): 215 | self.add_ref("https://m.weibo.cn/") 216 | params = { 217 | "id": mid, 218 | "attitude": "heart", 219 | "st": await self.st(), 220 | "_spr": "screen:2560x1440" 221 | } 222 | return await self.post("https://m.weibo.cn/api/attitudes/create", params=params) 223 | 224 | async def del_weibo(self, mid): 225 | params = { 226 | "mid": mid, 227 | "st": await self.st(), 228 | "_spr": "screen:2560x1440" 229 | } 230 | return await self.post("https://m.weibo.cn/profile/delMyblog", params=params) 231 | 232 | async def get_user(self, uid): 233 | params = { 234 | "uid": uid 235 | } 236 | return await self.get(f"https://m.weibo.cn/profile/info", params=params) 237 | 238 | async def comment_weibo(self, mid, content, file_path=""): 239 | params = { 240 | "id": mid, 241 | "mid": mid, 242 | "content": content, 243 | "st": await self.st(), 244 | "_spr": "screen:2560x1440" 245 | } 246 | 247 | if file_path: 248 | try: 249 | pic_ids = await self.upload_comment_file(file_path=file_path) 250 | except RequestError as e: 251 | self.logger.error(f"文件上传失败 {e}") 252 | return {} 253 | params["picId"] = pic_ids 254 | return await self.post(f"https://m.weibo.cn/api/comments/create", params=params) 255 | 256 | async def del_comment(self, cid): 257 | params = { 258 | "cid": cid, 259 | "st": await self.st(), 260 | "_spr": "screen:2560x1440" 261 | } 262 | 263 | return await self.post(f"https://m.weibo.cn/comments/destroy", params=params) 264 | 265 | async def close(self): 266 | await self.session.close() 267 | -------------------------------------------------------------------------------- /WeiboBot/user/__init__.py: -------------------------------------------------------------------------------- 1 | from typing import Dict 2 | from WeiboBot.weibo import Weibo 3 | from WeiboBot.util import * 4 | 5 | 6 | class User: 7 | 8 | def __init__(self): 9 | self.id = IntField() # 用户id 10 | self.screen_name = StrField() # 用户昵称 11 | self.profile_image_url = StrField() # 用户头像 12 | self.profile_url = StrField() # 用户主页 13 | self.statuses_count = IntField() # 微博数 14 | self.verified = BoolField() # 是否是微博认证用户 15 | self.verified_type = IntField() # 认证类型 16 | self.close_blue_v = BoolField() # 是否关注微博蓝V 17 | self.description = BoolField() # 用户描述 18 | self.gender = StrField() # 性别 19 | self.mbtype = IntField() 20 | self.urank = IntField() 21 | self.mbrank = IntField() 22 | self.follow_me = IntField() # 是否关注我 23 | self.following = IntField() # 我是否关注 24 | self.follow_count = IntField() # 关注数 25 | self.followers_count = StrField() # 粉丝数 26 | self.followers_count_str = StrField() # 粉丝数 27 | self.cover_image_phone = StrField() # 主页头图 28 | self.avatar_hd = StrField() # 高清头像 29 | self.like = BoolField() # 是否喜欢 30 | self.like_me = BoolField() # 是否喜欢我 31 | self.badge = DictField() # 徽章 32 | self.verified_type_ext = IntField() # 认证类型扩展 33 | self.verified_reason = StrField() # 认证原因 34 | 35 | self.latest_weibo: list[Weibo] = [] 36 | self.logger = get_logger(__name__) 37 | 38 | def parse(self, info: Dict): 39 | for k, v in info.items(): 40 | if hasattr(self, k): 41 | setattr(self, k, v) 42 | else: 43 | self.logger.debug(f'{k} is not a valid attribute, type is {type(v)}') 44 | -------------------------------------------------------------------------------- /WeiboBot/util.py: -------------------------------------------------------------------------------- 1 | from typing import Dict 2 | 3 | from .log import Log 4 | import time 5 | 6 | __all__ = ["main_header", "IntField", "StrField", "BoolField", "DictField", "ListField", "get_logger", 7 | "parse_cookies"] 8 | 9 | 10 | def main_header(cookies: bytes) -> Dict[str, str]: 11 | headers_raw = b''' 12 | accept: application/json, text/plain, */* 13 | accept-encoding: gzip, deflate, br 14 | accept-language: zh-CN,zh;q=0.9 15 | cookie: %b 16 | mweibo-pwa: 1 17 | referer: https://m.weibo.cn/ 18 | sec-ch-ua: " Not A;Brand";v="99", "Chromium";v="96", "Google Chrome";v="96" 19 | sec-ch-ua-mobile: ?0 20 | sec-ch-ua-platform: "Windows" 21 | sec-fetch-dest: empty 22 | sec-fetch-mode: cors 23 | sec-fetch-site: same-origin 24 | user-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36 25 | x-requested-with: XMLHttpRequest 26 | x-xsrf-token: 1d1b9c 27 | ''' 28 | 29 | return formatHeader(headers_raw, cookies) 30 | 31 | 32 | def formatHeader(headers_raw: bytes, cookies: bytes) -> Dict[str, str]: 33 | """ 34 | 复制浏览器中的header 35 | """ 36 | headers_raw = headers_raw % cookies 37 | headers = headers_raw.splitlines() 38 | headers_tuples = [header.split(b":", 1) for header in headers] 39 | 40 | result_dict = {} 41 | for header_item in headers_tuples: 42 | if not len(header_item) == 2: 43 | continue 44 | 45 | item_key: str = header_item[0].strip().decode("utf8") 46 | item_value: str = header_item[1].strip().decode("utf8") 47 | result_dict[item_key] = item_value 48 | 49 | return result_dict 50 | 51 | 52 | def IntField() -> int: 53 | return 0 54 | 55 | 56 | def StrField() -> str: 57 | return "" 58 | 59 | 60 | def BoolField() -> bool: 61 | return False 62 | 63 | 64 | def DictField() -> dict: 65 | return {} 66 | 67 | 68 | def ListField() -> list: 69 | return [] 70 | 71 | 72 | def get_logger(name: str, is_debug=True) -> Log: 73 | return Log(name, is_debug=is_debug) 74 | 75 | 76 | def parse_cookies(cookies: str) -> list: 77 | result = [] 78 | for kv in cookies.split(";"): 79 | k = kv.split("=")[0].replace(" ", "") 80 | v = kv.split("=")[1].replace(" ", "") 81 | domain = ".weibo.cn" 82 | if k == "XSRF-TOKEN": 83 | domain = ".m.weibo.cn" 84 | 85 | result.append({ 86 | "domain": domain, 87 | "expiry": int(time.time()) + 60 * 60 * 24 * 365, 88 | "name": k, 89 | "path": "/", 90 | "secure": False, 91 | "httpOnly": False, 92 | "value": v, 93 | }) 94 | 95 | return result 96 | -------------------------------------------------------------------------------- /WeiboBot/weibo/__init__.py: -------------------------------------------------------------------------------- 1 | from typing import Union, List 2 | 3 | from WeiboBot.util import * 4 | 5 | 6 | class Weibo: 7 | def __init__(self): 8 | # region 基本信息 9 | self.visible = DictField() # 微博的可见性及指定可见分组信息 10 | self.created_at = StrField() # 微博创建时间 11 | self.id = StrField() # 微博ID 12 | self.mid = StrField() # 微博MID 13 | self.can_edit = BoolField() # 是否可以编辑 14 | self.show_additional_indication = IntField() # 是否显示额外信息 15 | self.text = StrField() # 微博信息内容 16 | self.textLength = IntField() # 微博信息内容字数 17 | self.source = StrField() # 微博来源 18 | self.favorited = BoolField() # 是否已收藏 19 | self.pic_ids = ListField() # 微博的配图ID 20 | self.pic_types = StrField() # 微博的配图类型 21 | self.pic_focus_point = ListField() # 微博的配图中心点 22 | self.falls_pic_focus_point = ListField() # 微博的配图中心点 23 | self.pic_rectangle_object = ListField() # 微博的配图框 24 | self.pic_flag = IntField() # 微博的配图标记 25 | self.thumbnail_pic = StrField() # 微博的缩略图 26 | self.bmiddle_pic = StrField() # 微博的中等尺寸图片 27 | self.original_pic = StrField() # 微博的原始图片 28 | self.is_paid = BoolField() # 是否付费 29 | self.mblog_vip_type = IntField() # 微博的会员类型 30 | self.user = DictField() # 微博作者的用户信息字段 31 | self.picStatus = StrField() # 微博的配图状态 32 | self.reposts_count = IntField() # 转发数 33 | self.comments_count = IntField() # 评论数 34 | self.reprint_cmt_count = IntField() # 转发评论数 35 | self.attitudes_count = IntField() # 赞数 36 | self.pending_approval_count = IntField() # 待审核数 37 | self.isLongText = BoolField() # 38 | self.liked = BoolField() # 是否已赞 39 | self.like_attitude_type = IntField() # 点赞类型 40 | self.reward_exhibition_type = IntField() # 打赏模块展示类型 41 | self.hide_flag = IntField() # 隐藏类型 42 | self.mlevel = IntField() # 微博等级 43 | self.darwin_tags = ListField() # 微博的标签 44 | self.mblogtype = IntField() # 微博类型 45 | self.more_info_type = IntField() # 更多信息类型 46 | self.cardid = StrField() # 卡片ID 47 | self.number_display_strategy = DictField() # 48 | self.enable_comment_guide = BoolField() # 49 | self.content_auth = IntField() # 50 | self.pic_num = IntField() # 51 | self.alchemy_params = DictField() # 52 | self.reprint_type = IntField() # 53 | self.can_reprint = BoolField() # 54 | self.new_comment_style = IntField() # 55 | self.page_info = DictField() # 56 | self.pics = ListField() # 57 | self.bid = StrField() # 58 | self.status_title = StrField() # 59 | self.ok = IntField() # 60 | self.scheme = StrField() # 61 | self.tipScheme = StrField() # 62 | self.raw_text = StrField() # 63 | self.title = DictField() # 64 | self.repost_type = IntField() # 65 | self.retweeted_status = DictField() # 66 | self.edit_count = IntField() # 67 | self.edit_at = StrField() # 68 | self.version = IntField() # 69 | self.gif_videos = ListField() # 70 | self.reads = IntField() # 阅读数 71 | self.rid = StrField() # 72 | self.safe_tags = IntField() # 73 | self.fid = IntField() # 74 | self.pic_video = StrField() # 75 | self.live_photo = ListField() # 76 | self.pid = IntField() # 77 | self.pidstr = StrField() # 78 | self.jump_type = IntField() # 79 | self.topic_id = StrField() # 80 | self.sync_mblog = BoolField() # 81 | self.is_imported_topic = BoolField() # 82 | self.longText = DictField() 83 | self.mark = StrField() # 84 | self.reward_scheme = StrField() 85 | self.state = IntField() # 86 | self.expire_time = IntField() # 87 | self.deleted = StrField() # 88 | self.ad_state = IntField() # 89 | self.verified_type_ext = IntField() 90 | self.verified_reason = StrField() 91 | self.mlevelSource = StrField() 92 | self.ipRegion = StrField() 93 | self.stickerID = StrField() 94 | self.filterID = StrField() 95 | self.buttons = ListField() 96 | self.is_vote = IntField() 97 | self.comment_manage_info = DictField() 98 | self.attitude_dynamic_adid = StrField() 99 | # endregion 100 | from WeiboBot.user import User 101 | self.original_weibo: Union[Weibo, None] = None 102 | self.user_c: Union[User, None] = None 103 | self.logger = get_logger(__name__) 104 | self.is_read = False 105 | self.save_path: str = "" 106 | 107 | def parse(self, data): 108 | 109 | for k, v in data.items(): 110 | if hasattr(self, k): 111 | setattr(self, k, v) 112 | else: 113 | self.logger.debug(f'{k} is not a valid attribute, type is {type(v)}, id is {self.id}') 114 | from WeiboBot.user import User 115 | self.user_c = User() 116 | self.user_c.parse(self.user) 117 | 118 | if self.retweeted_status != {}: 119 | self.original_weibo = Weibo() 120 | self.original_weibo.parse(self.retweeted_status) 121 | 122 | def detail_url(self) -> str: 123 | return f"https://m.weibo.cn/detail/{self.id}" 124 | 125 | def full_text(self) -> str: 126 | """ 127 | 未格式化的原文本 128 | :return: 129 | """ 130 | if self.longText != {}: 131 | return self.longText['longTextContent'] 132 | else: 133 | return self.text 134 | 135 | def weibo_id(self) -> int: 136 | return int(self.id) 137 | 138 | def user_uid(self) -> int: 139 | return int(self.user["id"]) 140 | 141 | def video_url(self) -> str: 142 | url = "" 143 | if self.page_info.get("type", "") == "video" and "urls" in self.page_info: 144 | url = list(self.page_info["urls"].values())[0] 145 | return url 146 | 147 | def image_list(self) -> List[str]: 148 | return [img["large"]["url"] for img in self.pics] 149 | 150 | def thumbnail_image_list(self) -> List[str]: 151 | return [img["url"] for img in self.pics] # 微博图片(缩略图) 152 | 153 | def is_visible(self) -> bool: 154 | return self.visible.get('type', 0) == 0 155 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | tinydb -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- 1 | import setuptools 2 | 3 | with open("README.md", "r", encoding="utf8") as fh: 4 | long_description = fh.read() 5 | 6 | setuptools.setup( 7 | name="WeiboBot", 8 | version="0.4.5", 9 | author="Merlin", 10 | author_email="merlin@merlinblog.cn", 11 | description="基于微博H5 API开发的机器人框架", 12 | long_description=long_description, 13 | long_description_content_type="text/markdown", 14 | url="https://github.com/MerlinCN/WeiboBot", 15 | packages=setuptools.find_packages(), 16 | install_requires=["requests", "tinydb"], 17 | classifiers=[ 18 | "Programming Language :: Python :: 3.7", 19 | "License :: OSI Approved :: GNU Affero General Public License v3", 20 | "Operating System :: OS Independent", 21 | ], 22 | python_requires='>=3.7', 23 | ) 24 | --------------------------------------------------------------------------------