From 8eba6b7b91f2808c0df99190436e44e0b430fc17 Mon Sep 17 00:00:00 2001 From: liurui Date: Mon, 4 Nov 2024 22:41:53 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AE=BA=E6=96=87=E7=88=AC=E8=99=AB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- QuantSpider/.idea/.gitignore | 3 + QuantSpider/.idea/QuantSpider.iml | 10 + .../inspectionProfiles/profiles_settings.xml | 6 + QuantSpider/.idea/misc.xml | 7 + QuantSpider/.idea/modules.xml | 8 + QuantSpider/_build/html/.buildinfo | 4 + .../_build/html/.doctrees/environment.pickle | Bin 0 -> 12752 bytes .../_build/html/.doctrees/index.doctree | Bin 0 -> 2624 bytes .../_build/html/_sources/index.rst.txt | 5 + QuantSpider/_build/html/_static/alabaster.css | 703 +++++++++++++ QuantSpider/_build/html/_static/basic.css | 921 ++++++++++++++++++ QuantSpider/_build/html/_static/custom.css | 1 + QuantSpider/_build/html/_static/doctools.js | 156 +++ .../html/_static/documentation_options.js | 14 + QuantSpider/_build/html/_static/file.png | Bin 0 -> 286 bytes .../_build/html/_static/language_data.js | 199 ++++ QuantSpider/_build/html/_static/minus.png | Bin 0 -> 90 bytes QuantSpider/_build/html/_static/plus.png | Bin 0 -> 90 bytes QuantSpider/_build/html/_static/pygments.css | 84 ++ .../_build/html/_static/searchtools.js | 566 +++++++++++ .../_build/html/_static/sphinx_highlight.js | 144 +++ QuantSpider/_build/html/genindex.html | 98 ++ QuantSpider/_build/html/index.html | 99 ++ QuantSpider/_build/html/objects.inv | Bin 0 -> 241 bytes QuantSpider/_build/html/search.html | 117 +++ QuantSpider/_build/html/searchindex.js | 1 + QuantSpider/conf.py | 16 + QuantSpider/index.rst | 5 + .../quantlunwen/quantlunwen/__init__.py | 0 QuantSpider/quantlunwen/quantlunwen/items.py | 22 + .../quantlunwen/quantlunwen/middlewares.py | 132 +++ .../quantlunwen/quantlunwen/pipelines.py | 104 ++ .../quantlunwen/quantlunwen/settings.py | 123 +++ .../quantlunwen/spiders/__init__.py | 4 + .../quantlunwen/quantlunwen/spiders/title.py | 118 +++ QuantSpider/quantlunwen/scrapy.cfg | 12 + ...9b875eed550609ed02de2147116e7227fc9355.jpg | Bin 0 -> 10763 bytes ...9517fc402e22ca5929fc46615945aaf4f59e71.jpg | Bin 0 -> 849 bytes ...782663a549f4204e4069d33e0aa9cfbdaa20fd.jpg | Bin 0 -> 19907 bytes ...aa5045a7612834bba810660d287123427c69d6.jpg | Bin 0 -> 3419 bytes ...ea4bb0c9c6d4db4a4bd4215510d8d2f081aa16.jpg | Bin 0 -> 1967 bytes ...14999a8158cbbbe32d2dacb9cc5060a8439c9f.jpg | Bin 0 -> 1570 bytes 42 files changed, 3682 insertions(+) create mode 100644 QuantSpider/.idea/.gitignore create mode 100644 QuantSpider/.idea/QuantSpider.iml create mode 100644 QuantSpider/.idea/inspectionProfiles/profiles_settings.xml create mode 100644 QuantSpider/.idea/misc.xml create mode 100644 QuantSpider/.idea/modules.xml create mode 100644 QuantSpider/_build/html/.buildinfo create mode 100644 QuantSpider/_build/html/.doctrees/environment.pickle create mode 100644 QuantSpider/_build/html/.doctrees/index.doctree create mode 100644 QuantSpider/_build/html/_sources/index.rst.txt create mode 100644 QuantSpider/_build/html/_static/alabaster.css create mode 100644 QuantSpider/_build/html/_static/basic.css create mode 100644 QuantSpider/_build/html/_static/custom.css create mode 100644 QuantSpider/_build/html/_static/doctools.js create mode 100644 QuantSpider/_build/html/_static/documentation_options.js create mode 100644 QuantSpider/_build/html/_static/file.png create mode 100644 QuantSpider/_build/html/_static/language_data.js create mode 100644 QuantSpider/_build/html/_static/minus.png create mode 100644 QuantSpider/_build/html/_static/plus.png create mode 100644 QuantSpider/_build/html/_static/pygments.css create mode 100644 QuantSpider/_build/html/_static/searchtools.js create mode 100644 QuantSpider/_build/html/_static/sphinx_highlight.js create mode 100644 QuantSpider/_build/html/genindex.html create mode 100644 QuantSpider/_build/html/index.html create mode 100644 QuantSpider/_build/html/objects.inv create mode 100644 QuantSpider/_build/html/search.html create mode 100644 QuantSpider/_build/html/searchindex.js create mode 100644 QuantSpider/conf.py create mode 100644 QuantSpider/index.rst create mode 100644 QuantSpider/quantlunwen/quantlunwen/__init__.py create mode 100644 QuantSpider/quantlunwen/quantlunwen/items.py create mode 100644 QuantSpider/quantlunwen/quantlunwen/middlewares.py create mode 100644 QuantSpider/quantlunwen/quantlunwen/pipelines.py create mode 100644 QuantSpider/quantlunwen/quantlunwen/settings.py create mode 100644 QuantSpider/quantlunwen/quantlunwen/spiders/__init__.py create mode 100644 QuantSpider/quantlunwen/quantlunwen/spiders/title.py create mode 100644 QuantSpider/quantlunwen/scrapy.cfg create mode 100644 QuantSpider/quantlunwen/static/images/full/289b875eed550609ed02de2147116e7227fc9355.jpg create mode 100644 QuantSpider/quantlunwen/static/images/full/459517fc402e22ca5929fc46615945aaf4f59e71.jpg create mode 100644 QuantSpider/quantlunwen/static/images/full/4a782663a549f4204e4069d33e0aa9cfbdaa20fd.jpg create mode 100644 QuantSpider/quantlunwen/static/images/full/5daa5045a7612834bba810660d287123427c69d6.jpg create mode 100644 QuantSpider/quantlunwen/static/images/full/9dea4bb0c9c6d4db4a4bd4215510d8d2f081aa16.jpg create mode 100644 QuantSpider/quantlunwen/static/images/full/d314999a8158cbbbe32d2dacb9cc5060a8439c9f.jpg diff --git a/QuantSpider/.idea/.gitignore b/QuantSpider/.idea/.gitignore new file mode 100644 index 0000000..26d3352 --- /dev/null +++ b/QuantSpider/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/QuantSpider/.idea/QuantSpider.iml b/QuantSpider/.idea/QuantSpider.iml new file mode 100644 index 0000000..9b9b402 --- /dev/null +++ b/QuantSpider/.idea/QuantSpider.iml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/QuantSpider/.idea/inspectionProfiles/profiles_settings.xml b/QuantSpider/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 0000000..105ce2d --- /dev/null +++ b/QuantSpider/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/QuantSpider/.idea/misc.xml b/QuantSpider/.idea/misc.xml new file mode 100644 index 0000000..4ebe274 --- /dev/null +++ b/QuantSpider/.idea/misc.xml @@ -0,0 +1,7 @@ + + + + + + \ No newline at end of file diff --git a/QuantSpider/.idea/modules.xml b/QuantSpider/.idea/modules.xml new file mode 100644 index 0000000..49ec41c --- /dev/null +++ b/QuantSpider/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/QuantSpider/_build/html/.buildinfo b/QuantSpider/_build/html/.buildinfo new file mode 100644 index 0000000..d148950 --- /dev/null +++ b/QuantSpider/_build/html/.buildinfo @@ -0,0 +1,4 @@ +# Sphinx build info version 1 +# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. +config: 51357d333ba54816ed17f4be25210c45 +tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/QuantSpider/_build/html/.doctrees/environment.pickle b/QuantSpider/_build/html/.doctrees/environment.pickle new file mode 100644 index 0000000000000000000000000000000000000000..4df373f65a562b9829df1a6b7f3514f9af722fe6 GIT binary patch literal 12752 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 literal 0 HcmV?d00001 diff --git a/QuantSpider/_build/html/.doctrees/index.doctree b/QuantSpider/_build/html/.doctrees/index.doctree new file mode 100644 index 0000000000000000000000000000000000000000..9197335268f707e96218e8c955029df6f3e4f18c GIT binary patch literal 2624 zcmb7G&2Jnv6mOeulFi2^X`7NliV%XfAa%o`NT?DgxJ5+bL!44s-Wl)OipL&oPr5l& zDu}ABWQjvf)zVW1H&8infnNAyph^2*@bk>$7i!q0X{vO}Z1A(GPKt~v7w(0(z6>|QCEqsmy48hASn$VSk#HeX!&JD2%}%s; zLfUTapq*1g2ZrXn@xWXD)fczFdFJo``SgeV2lt*odAfi9_Q9Q>o-$=Tm;V&Unk8ltQtvRrIKzqs|%8D;#bbZ#E@T zi(B}aL{e*^#JZ(uR;^~!B0m&*G}$q%A8iUhLSJqbGmd{HhAI^1qJMH9_br@qT=5i=T_I^MA`2_>~#A4l`!|c%Z2&zv$1D$VnQZ zBe~H7!)#U6meY>Puz9RT7d9+~SVV-5`%Y4r$QjZwWMQPKnBr$Gb55uM+F_-kci(8` zm`a16{+!AJ6loe{S{E)aT-fq0C!7S?e0#tYGt_Alg%lZBN3$Hld=-`;)(*tES}cr& zwCHp~BGck7!ncs8*$e(uUu&ndV`H0}$Ni#ZiBm;JhJ9_a08Ph&;5kWj7JJyjTP}@f{KC19byz`31vrZ5)womjT2RevVVwh%LXuh630*>IyqDYWY^mdc^?Y zI@hUDzz!CM(F~e43YD;Usc^@4gaT58DKrVJf^QeDfBC)3R$#q;bdxY+v>}|TR5AnH zW2%V@eyPHH%uB2E68!mzoe39w$9F2HhY5_1t{>f)IO&(;1uRhFz(?Xj!7oax1_d23 zz@0)qfsyD>8>9z#&r5mG#9i@M+(nh129v= zUyYV!0__lL_}xbLjrU$UQohM!xPa(-qA1%NUpe8{B0Q z!P<`Y&_b!>VRP1>2O%@k^k#DbV)Mw5yMEd3DMyEdivgGTgS;oDj=W#68AX?UQJ|?U zfI3~ul}MycXbtW8gyTI;Q246ZfN}{TPVW>sLc|BSoI3RoxC{2^M5sPEFq#Ud;+(KW zZ^BMwk-SpVsuklyxf8&dtjALH?;cX%j5!2ZO<=V{SVn~;_*jUuwoH2^dX5v=GTEDoyOdkzJM8xTdnZ259VF z*3+`7cxifOLfKfik9cg4qLznF9r2H8YFr%OtCPO!9Xw^25s5D11PFdU(Nb2xyyZV^QHMU^6O?sOKAXS)_TP5?Q2?6oXiwxin6*y78-zmhN8$ C*+85C literal 0 HcmV?d00001 diff --git a/QuantSpider/_build/html/_sources/index.rst.txt b/QuantSpider/_build/html/_sources/index.rst.txt new file mode 100644 index 0000000..2296dd6 --- /dev/null +++ b/QuantSpider/_build/html/_sources/index.rst.txt @@ -0,0 +1,5 @@ +量化交易论文爬虫文档 + +===================== + +这是量化交易相关的论文项目。 \ No newline at end of file diff --git a/QuantSpider/_build/html/_static/alabaster.css b/QuantSpider/_build/html/_static/alabaster.css new file mode 100644 index 0000000..517d0b2 --- /dev/null +++ b/QuantSpider/_build/html/_static/alabaster.css @@ -0,0 +1,703 @@ +@import url("basic.css"); + +/* -- page layout ----------------------------------------------------------- */ + +body { + font-family: Georgia, serif; + font-size: 17px; + background-color: #fff; + color: #000; + margin: 0; + padding: 0; +} + + +div.document { + width: 940px; + margin: 30px auto 0 auto; +} + +div.documentwrapper { + float: left; + width: 100%; +} + +div.bodywrapper { + margin: 0 0 0 220px; +} + +div.sphinxsidebar { + width: 220px; + font-size: 14px; + line-height: 1.5; +} + +hr { + border: 1px solid #B1B4B6; +} + +div.body { + background-color: #fff; + color: #3E4349; + padding: 0 30px 0 30px; +} + +div.body > .section { + text-align: left; +} + +div.footer { + width: 940px; + margin: 20px auto 30px auto; + font-size: 14px; + color: #888; + text-align: right; +} + +div.footer a { + color: #888; +} + +p.caption { + font-family: inherit; + font-size: inherit; +} + + +div.relations { + display: none; +} + + +div.sphinxsidebar a { + color: #444; + text-decoration: none; + border-bottom: 1px dotted #999; +} + +div.sphinxsidebar a:hover { + border-bottom: 1px solid #999; +} + +div.sphinxsidebarwrapper { + padding: 18px 10px; +} + +div.sphinxsidebarwrapper p.logo { + padding: 0; + margin: -10px 0 0 0px; + text-align: center; +} + +div.sphinxsidebarwrapper h1.logo { + margin-top: -10px; + text-align: center; + margin-bottom: 5px; + text-align: left; +} + +div.sphinxsidebarwrapper h1.logo-name { + margin-top: 0px; +} + +div.sphinxsidebarwrapper p.blurb { + margin-top: 0; + font-style: normal; +} + +div.sphinxsidebar h3, +div.sphinxsidebar h4 { + font-family: Georgia, serif; + color: #444; + font-size: 24px; + font-weight: normal; + margin: 0 0 5px 0; + padding: 0; +} + +div.sphinxsidebar h4 { + font-size: 20px; +} + +div.sphinxsidebar h3 a { + color: #444; +} + +div.sphinxsidebar p.logo a, +div.sphinxsidebar h3 a, +div.sphinxsidebar p.logo a:hover, +div.sphinxsidebar h3 a:hover { + border: none; +} + +div.sphinxsidebar p { + color: #555; + margin: 10px 0; +} + +div.sphinxsidebar ul { + margin: 10px 0; + padding: 0; + color: #000; +} + +div.sphinxsidebar ul li.toctree-l1 > a { + font-size: 120%; +} + +div.sphinxsidebar ul li.toctree-l2 > a { + font-size: 110%; +} + +div.sphinxsidebar input { + border: 1px solid #CCC; + font-family: Georgia, serif; + font-size: 1em; +} + +div.sphinxsidebar hr { + border: none; + height: 1px; + color: #AAA; + background: #AAA; + + text-align: left; + margin-left: 0; + width: 50%; +} + +div.sphinxsidebar .badge { + border-bottom: none; +} + +div.sphinxsidebar .badge:hover { + border-bottom: none; +} + +/* To address an issue with donation coming after search */ +div.sphinxsidebar h3.donation { + margin-top: 10px; +} + +/* -- body styles ----------------------------------------------------------- */ + +a { + color: #004B6B; + text-decoration: underline; +} + +a:hover { + color: #6D4100; + text-decoration: underline; +} + +div.body h1, +div.body h2, +div.body h3, +div.body h4, +div.body h5, +div.body h6 { + font-family: Georgia, serif; + font-weight: normal; + margin: 30px 0px 10px 0px; + padding: 0; +} + +div.body h1 { margin-top: 0; padding-top: 0; font-size: 240%; } +div.body h2 { font-size: 180%; } +div.body h3 { font-size: 150%; } +div.body h4 { font-size: 130%; } +div.body h5 { font-size: 100%; } +div.body h6 { font-size: 100%; } + +a.headerlink { + color: #DDD; + padding: 0 4px; + text-decoration: none; +} + +a.headerlink:hover { + color: #444; + background: #EAEAEA; +} + +div.body p, div.body dd, div.body li { + line-height: 1.4em; +} + +div.admonition { + margin: 20px 0px; + padding: 10px 30px; + background-color: #EEE; + border: 1px solid #CCC; +} + +div.admonition tt.xref, div.admonition code.xref, div.admonition a tt { + background-color: #FBFBFB; + border-bottom: 1px solid #fafafa; +} + +div.admonition p.admonition-title { + font-family: Georgia, serif; + font-weight: normal; + font-size: 24px; + margin: 0 0 10px 0; + padding: 0; + line-height: 1; +} + +div.admonition p.last { + margin-bottom: 0; +} + +div.highlight { + background-color: #fff; +} + +dt:target, .highlight { + background: #FAF3E8; +} + +div.warning { + background-color: #FCC; + border: 1px solid #FAA; +} + +div.danger { + background-color: #FCC; + border: 1px solid #FAA; + -moz-box-shadow: 2px 2px 4px #D52C2C; + -webkit-box-shadow: 2px 2px 4px #D52C2C; + box-shadow: 2px 2px 4px #D52C2C; +} + +div.error { + background-color: #FCC; + border: 1px solid #FAA; + -moz-box-shadow: 2px 2px 4px #D52C2C; + -webkit-box-shadow: 2px 2px 4px #D52C2C; + box-shadow: 2px 2px 4px #D52C2C; +} + +div.caution { + background-color: #FCC; + border: 1px solid #FAA; +} + +div.attention { + background-color: #FCC; + border: 1px solid #FAA; +} + +div.important { + background-color: #EEE; + border: 1px solid #CCC; +} + +div.note { + background-color: #EEE; + border: 1px solid #CCC; +} + +div.tip { + background-color: #EEE; + border: 1px solid #CCC; +} + +div.hint { + background-color: #EEE; + border: 1px solid #CCC; +} + +div.seealso { + background-color: #EEE; + border: 1px solid #CCC; +} + +div.topic { + background-color: #EEE; +} + +p.admonition-title { + display: inline; +} + +p.admonition-title:after { + content: ":"; +} + +pre, tt, code { + font-family: 'Consolas', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', monospace; + font-size: 0.9em; +} + +.hll { + background-color: #FFC; + margin: 0 -12px; + padding: 0 12px; + display: block; +} + +img.screenshot { +} + +tt.descname, tt.descclassname, code.descname, code.descclassname { + font-size: 0.95em; +} + +tt.descname, code.descname { + padding-right: 0.08em; +} + +img.screenshot { + -moz-box-shadow: 2px 2px 4px #EEE; + -webkit-box-shadow: 2px 2px 4px #EEE; + box-shadow: 2px 2px 4px #EEE; +} + +table.docutils { + border: 1px solid #888; + -moz-box-shadow: 2px 2px 4px #EEE; + -webkit-box-shadow: 2px 2px 4px #EEE; + box-shadow: 2px 2px 4px #EEE; +} + +table.docutils td, table.docutils th { + border: 1px solid #888; + padding: 0.25em 0.7em; +} + +table.field-list, table.footnote { + border: none; + -moz-box-shadow: none; + -webkit-box-shadow: none; + box-shadow: none; +} + +table.footnote { + margin: 15px 0; + width: 100%; + border: 1px solid #EEE; + background: #FDFDFD; + font-size: 0.9em; +} + +table.footnote + table.footnote { + margin-top: -15px; + border-top: none; +} + +table.field-list th { + padding: 0 0.8em 0 0; +} + +table.field-list td { + padding: 0; +} + +table.field-list p { + margin-bottom: 0.8em; +} + +/* Cloned from + * https://github.com/sphinx-doc/sphinx/commit/ef60dbfce09286b20b7385333d63a60321784e68 + */ +.field-name { + -moz-hyphens: manual; + -ms-hyphens: manual; + -webkit-hyphens: manual; + hyphens: manual; +} + +table.footnote td.label { + width: .1px; + padding: 0.3em 0 0.3em 0.5em; +} + +table.footnote td { + padding: 0.3em 0.5em; +} + +dl { + margin-left: 0; + margin-right: 0; + margin-top: 0; + padding: 0; +} + +dl dd { + margin-left: 30px; +} + +blockquote { + margin: 0 0 0 30px; + padding: 0; +} + +ul, ol { + /* Matches the 30px from the narrow-screen "li > ul" selector below */ + margin: 10px 0 10px 30px; + padding: 0; +} + +pre { + background: #EEE; + padding: 7px 30px; + margin: 15px 0px; + line-height: 1.3em; +} + +div.viewcode-block:target { + background: #ffd; +} + +dl pre, blockquote pre, li pre { + margin-left: 0; + padding-left: 30px; +} + +tt, code { + background-color: #ecf0f3; + color: #222; + /* padding: 1px 2px; */ +} + +tt.xref, code.xref, a tt { + background-color: #FBFBFB; + border-bottom: 1px solid #fff; +} + +a.reference { + text-decoration: none; + border-bottom: 1px dotted #004B6B; +} + +/* Don't put an underline on images */ +a.image-reference, a.image-reference:hover { + border-bottom: none; +} + +a.reference:hover { + border-bottom: 1px solid #6D4100; +} + +a.footnote-reference { + text-decoration: none; + font-size: 0.7em; + vertical-align: top; + border-bottom: 1px dotted #004B6B; +} + +a.footnote-reference:hover { + border-bottom: 1px solid #6D4100; +} + +a:hover tt, a:hover code { + background: #EEE; +} + + +@media screen and (max-width: 870px) { + + div.sphinxsidebar { + display: none; + } + + div.document { + width: 100%; + + } + + div.documentwrapper { + margin-left: 0; + margin-top: 0; + margin-right: 0; + margin-bottom: 0; + } + + div.bodywrapper { + margin-top: 0; + margin-right: 0; + margin-bottom: 0; + margin-left: 0; + } + + ul { + margin-left: 0; + } + + li > ul { + /* Matches the 30px from the "ul, ol" selector above */ + margin-left: 30px; + } + + .document { + width: auto; + } + + .footer { + width: auto; + } + + .bodywrapper { + margin: 0; + } + + .footer { + width: auto; + } + + .github { + display: none; + } + + + +} + + + +@media screen and (max-width: 875px) { + + body { + margin: 0; + padding: 20px 30px; + } + + div.documentwrapper { + float: none; + background: #fff; + } + + div.sphinxsidebar { + display: block; + float: none; + width: 102.5%; + margin: 50px -30px -20px -30px; + padding: 10px 20px; + background: #333; + color: #FFF; + } + + div.sphinxsidebar h3, div.sphinxsidebar h4, div.sphinxsidebar p, + div.sphinxsidebar h3 a { + color: #fff; + } + + div.sphinxsidebar a { + color: #AAA; + } + + div.sphinxsidebar p.logo { + display: none; + } + + div.document { + width: 100%; + margin: 0; + } + + div.footer { + display: none; + } + + div.bodywrapper { + margin: 0; + } + + div.body { + min-height: 0; + padding: 0; + } + + .rtd_doc_footer { + display: none; + } + + .document { + width: auto; + } + + .footer { + width: auto; + } + + .footer { + width: auto; + } + + .github { + display: none; + } +} + + +/* misc. */ + +.revsys-inline { + display: none!important; +} + +/* Make nested-list/multi-paragraph items look better in Releases changelog + * pages. Without this, docutils' magical list fuckery causes inconsistent + * formatting between different release sub-lists. + */ +div#changelog > div.section > ul > li > p:only-child { + margin-bottom: 0; +} + +/* Hide fugly table cell borders in ..bibliography:: directive output */ +table.docutils.citation, table.docutils.citation td, table.docutils.citation th { + border: none; + /* Below needed in some edge cases; if not applied, bottom shadows appear */ + -moz-box-shadow: none; + -webkit-box-shadow: none; + box-shadow: none; +} + + +/* relbar */ + +.related { + line-height: 30px; + width: 100%; + font-size: 0.9rem; +} + +.related.top { + border-bottom: 1px solid #EEE; + margin-bottom: 20px; +} + +.related.bottom { + border-top: 1px solid #EEE; +} + +.related ul { + padding: 0; + margin: 0; + list-style: none; +} + +.related li { + display: inline; +} + +nav#rellinks { + float: right; +} + +nav#rellinks li+li:before { + content: "|"; +} + +nav#breadcrumbs li+li:before { + content: "\00BB"; +} + +/* Hide certain items when printing */ +@media print { + div.related { + display: none; + } +} \ No newline at end of file diff --git a/QuantSpider/_build/html/_static/basic.css b/QuantSpider/_build/html/_static/basic.css new file mode 100644 index 0000000..cfc60b8 --- /dev/null +++ b/QuantSpider/_build/html/_static/basic.css @@ -0,0 +1,921 @@ +/* + * basic.css + * ~~~~~~~~~ + * + * Sphinx stylesheet -- basic theme. + * + * :copyright: Copyright 2007-2023 by the Sphinx team, see AUTHORS. + * :license: BSD, see LICENSE for details. + * + */ + +/* -- main layout ----------------------------------------------------------- */ + +div.clearer { + clear: both; +} + +div.section::after { + display: block; + content: ''; + clear: left; +} + +/* -- relbar ---------------------------------------------------------------- */ + +div.related { + width: 100%; + font-size: 90%; +} + +div.related h3 { + display: none; +} + +div.related ul { + margin: 0; + padding: 0 0 0 10px; + list-style: none; +} + +div.related li { + display: inline; +} + +div.related li.right { + float: right; + margin-right: 5px; +} + +/* -- sidebar --------------------------------------------------------------- */ + +div.sphinxsidebarwrapper { + padding: 10px 5px 0 10px; +} + +div.sphinxsidebar { + float: left; + width: 230px; + margin-left: -100%; + font-size: 90%; + word-wrap: break-word; + overflow-wrap : break-word; +} + +div.sphinxsidebar ul { + list-style: none; +} + +div.sphinxsidebar ul ul, +div.sphinxsidebar ul.want-points { + margin-left: 20px; + list-style: square; +} + +div.sphinxsidebar ul ul { + margin-top: 0; + margin-bottom: 0; +} + +div.sphinxsidebar form { + margin-top: 10px; +} + +div.sphinxsidebar input { + border: 1px solid #98dbcc; + font-family: sans-serif; + font-size: 1em; +} + +div.sphinxsidebar #searchbox form.search { + overflow: hidden; +} + +div.sphinxsidebar #searchbox input[type="text"] { + float: left; + width: 80%; + padding: 0.25em; + box-sizing: border-box; +} + +div.sphinxsidebar #searchbox input[type="submit"] { + float: left; + width: 20%; + border-left: none; + padding: 0.25em; + box-sizing: border-box; +} + + +img { + border: 0; + max-width: 100%; +} + +/* -- search page ----------------------------------------------------------- */ + +ul.search { + margin: 10px 0 0 20px; + padding: 0; +} + +ul.search li { + padding: 5px 0 5px 20px; + background-image: url(file.png); + background-repeat: no-repeat; + background-position: 0 7px; +} + +ul.search li a { + font-weight: bold; +} + +ul.search li p.context { + color: #888; + margin: 2px 0 0 30px; + text-align: left; +} + +ul.keywordmatches li.goodmatch a { + font-weight: bold; +} + +/* -- index page ------------------------------------------------------------ */ + +table.contentstable { + width: 90%; + margin-left: auto; + margin-right: auto; +} + +table.contentstable p.biglink { + line-height: 150%; +} + +a.biglink { + font-size: 1.3em; +} + +span.linkdescr { + font-style: italic; + padding-top: 5px; + font-size: 90%; +} + +/* -- general index --------------------------------------------------------- */ + +table.indextable { + width: 100%; +} + +table.indextable td { + text-align: left; + vertical-align: top; +} + +table.indextable ul { + margin-top: 0; + margin-bottom: 0; + list-style-type: none; +} + +table.indextable > tbody > tr > td > ul { + padding-left: 0em; +} + +table.indextable tr.pcap { + height: 10px; +} + +table.indextable tr.cap { + margin-top: 10px; + background-color: #f2f2f2; +} + +img.toggler { + margin-right: 3px; + margin-top: 3px; + cursor: pointer; +} + +div.modindex-jumpbox { + border-top: 1px solid #ddd; + border-bottom: 1px solid #ddd; + margin: 1em 0 1em 0; + padding: 0.4em; +} + +div.genindex-jumpbox { + border-top: 1px solid #ddd; + border-bottom: 1px solid #ddd; + margin: 1em 0 1em 0; + padding: 0.4em; +} + +/* -- domain module index --------------------------------------------------- */ + +table.modindextable td { + padding: 2px; + border-collapse: collapse; +} + +/* -- general body styles --------------------------------------------------- */ + +div.body { + min-width: 360px; + max-width: 800px; +} + +div.body p, div.body dd, div.body li, div.body blockquote { + -moz-hyphens: auto; + -ms-hyphens: auto; + -webkit-hyphens: auto; + hyphens: auto; +} + +a.headerlink { + visibility: hidden; +} + +h1:hover > a.headerlink, +h2:hover > a.headerlink, +h3:hover > a.headerlink, +h4:hover > a.headerlink, +h5:hover > a.headerlink, +h6:hover > a.headerlink, +dt:hover > a.headerlink, +caption:hover > a.headerlink, +p.caption:hover > a.headerlink, +div.code-block-caption:hover > a.headerlink { + visibility: visible; +} + +div.body p.caption { + text-align: inherit; +} + +div.body td { + text-align: left; +} + +.first { + margin-top: 0 !important; +} + +p.rubric { + margin-top: 30px; + font-weight: bold; +} + +img.align-left, figure.align-left, .figure.align-left, object.align-left { + clear: left; + float: left; + margin-right: 1em; +} + +img.align-right, figure.align-right, .figure.align-right, object.align-right { + clear: right; + float: right; + margin-left: 1em; +} + +img.align-center, figure.align-center, .figure.align-center, object.align-center { + display: block; + margin-left: auto; + margin-right: auto; +} + +img.align-default, figure.align-default, .figure.align-default { + display: block; + margin-left: auto; + margin-right: auto; +} + +.align-left { + text-align: left; +} + +.align-center { + text-align: center; +} + +.align-default { + text-align: center; +} + +.align-right { + text-align: right; +} + +/* -- sidebars -------------------------------------------------------------- */ + +div.sidebar, +aside.sidebar { + margin: 0 0 0.5em 1em; + border: 1px solid #ddb; + padding: 7px; + background-color: #ffe; + width: 40%; + float: right; + clear: right; + overflow-x: auto; +} + +p.sidebar-title { + font-weight: bold; +} + +nav.contents, +aside.topic, +div.admonition, div.topic, blockquote { + clear: left; +} + +/* -- topics ---------------------------------------------------------------- */ + +nav.contents, +aside.topic, +div.topic { + border: 1px solid #ccc; + padding: 7px; + margin: 10px 0 10px 0; +} + +p.topic-title { + font-size: 1.1em; + font-weight: bold; + margin-top: 10px; +} + +/* -- admonitions ----------------------------------------------------------- */ + +div.admonition { + margin-top: 10px; + margin-bottom: 10px; + padding: 7px; +} + +div.admonition dt { + font-weight: bold; +} + +p.admonition-title { + margin: 0px 10px 5px 0px; + font-weight: bold; +} + +div.body p.centered { + text-align: center; + margin-top: 25px; +} + +/* -- content of sidebars/topics/admonitions -------------------------------- */ + +div.sidebar > :last-child, +aside.sidebar > :last-child, +nav.contents > :last-child, +aside.topic > :last-child, +div.topic > :last-child, +div.admonition > :last-child { + margin-bottom: 0; +} + +div.sidebar::after, +aside.sidebar::after, +nav.contents::after, +aside.topic::after, +div.topic::after, +div.admonition::after, +blockquote::after { + display: block; + content: ''; + clear: both; +} + +/* -- tables ---------------------------------------------------------------- */ + +table.docutils { + margin-top: 10px; + margin-bottom: 10px; + border: 0; + border-collapse: collapse; +} + +table.align-center { + margin-left: auto; + margin-right: auto; +} + +table.align-default { + margin-left: auto; + margin-right: auto; +} + +table caption span.caption-number { + font-style: italic; +} + +table caption span.caption-text { +} + +table.docutils td, table.docutils th { + padding: 1px 8px 1px 5px; + border-top: 0; + border-left: 0; + border-right: 0; + border-bottom: 1px solid #aaa; +} + +th { + text-align: left; + padding-right: 5px; +} + +table.citation { + border-left: solid 1px gray; + margin-left: 1px; +} + +table.citation td { + border-bottom: none; +} + +th > :first-child, +td > :first-child { + margin-top: 0px; +} + +th > :last-child, +td > :last-child { + margin-bottom: 0px; +} + +/* -- figures --------------------------------------------------------------- */ + +div.figure, figure { + margin: 0.5em; + padding: 0.5em; +} + +div.figure p.caption, figcaption { + padding: 0.3em; +} + +div.figure p.caption span.caption-number, +figcaption span.caption-number { + font-style: italic; +} + +div.figure p.caption span.caption-text, +figcaption span.caption-text { +} + +/* -- field list styles ----------------------------------------------------- */ + +table.field-list td, table.field-list th { + border: 0 !important; +} + +.field-list ul { + margin: 0; + padding-left: 1em; +} + +.field-list p { + margin: 0; +} + +.field-name { + -moz-hyphens: manual; + -ms-hyphens: manual; + -webkit-hyphens: manual; + hyphens: manual; +} + +/* -- hlist styles ---------------------------------------------------------- */ + +table.hlist { + margin: 1em 0; +} + +table.hlist td { + vertical-align: top; +} + +/* -- object description styles --------------------------------------------- */ + +.sig { + font-family: 'Consolas', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', monospace; +} + +.sig-name, code.descname { + background-color: transparent; + font-weight: bold; +} + +.sig-name { + font-size: 1.1em; +} + +code.descname { + font-size: 1.2em; +} + +.sig-prename, code.descclassname { + background-color: transparent; +} + +.optional { + font-size: 1.3em; +} + +.sig-paren { + font-size: larger; +} + +.sig-param.n { + font-style: italic; +} + +/* C++ specific styling */ + +.sig-inline.c-texpr, +.sig-inline.cpp-texpr { + font-family: unset; +} + +.sig.c .k, .sig.c .kt, +.sig.cpp .k, .sig.cpp .kt { + color: #0033B3; +} + +.sig.c .m, +.sig.cpp .m { + color: #1750EB; +} + +.sig.c .s, .sig.c .sc, +.sig.cpp .s, .sig.cpp .sc { + color: #067D17; +} + + +/* -- other body styles ----------------------------------------------------- */ + +ol.arabic { + list-style: decimal; +} + +ol.loweralpha { + list-style: lower-alpha; +} + +ol.upperalpha { + list-style: upper-alpha; +} + +ol.lowerroman { + list-style: lower-roman; +} + +ol.upperroman { + list-style: upper-roman; +} + +:not(li) > ol > li:first-child > :first-child, +:not(li) > ul > li:first-child > :first-child { + margin-top: 0px; +} + +:not(li) > ol > li:last-child > :last-child, +:not(li) > ul > li:last-child > :last-child { + margin-bottom: 0px; +} + +ol.simple ol p, +ol.simple ul p, +ul.simple ol p, +ul.simple ul p { + margin-top: 0; +} + +ol.simple > li:not(:first-child) > p, +ul.simple > li:not(:first-child) > p { + margin-top: 0; +} + +ol.simple p, +ul.simple p { + margin-bottom: 0; +} + +aside.footnote > span, +div.citation > span { + float: left; +} +aside.footnote > span:last-of-type, +div.citation > span:last-of-type { + padding-right: 0.5em; +} +aside.footnote > p { + margin-left: 2em; +} +div.citation > p { + margin-left: 4em; +} +aside.footnote > p:last-of-type, +div.citation > p:last-of-type { + margin-bottom: 0em; +} +aside.footnote > p:last-of-type:after, +div.citation > p:last-of-type:after { + content: ""; + clear: both; +} + +dl.field-list { + display: grid; + grid-template-columns: fit-content(30%) auto; +} + +dl.field-list > dt { + font-weight: bold; + word-break: break-word; + padding-left: 0.5em; + padding-right: 5px; +} + +dl.field-list > dd { + padding-left: 0.5em; + margin-top: 0em; + margin-left: 0em; + margin-bottom: 0em; +} + +dl { + margin-bottom: 15px; +} + +dd > :first-child { + margin-top: 0px; +} + +dd ul, dd table { + margin-bottom: 10px; +} + +dd { + margin-top: 3px; + margin-bottom: 10px; + margin-left: 30px; +} + +.sig dd { + margin-top: 0px; + margin-bottom: 0px; +} + +.sig dl { + margin-top: 0px; + margin-bottom: 0px; +} + +dl > dd:last-child, +dl > dd:last-child > :last-child { + margin-bottom: 0; +} + +dt:target, span.highlighted { + background-color: #fbe54e; +} + +rect.highlighted { + fill: #fbe54e; +} + +dl.glossary dt { + font-weight: bold; + font-size: 1.1em; +} + +.versionmodified { + font-style: italic; +} + +.system-message { + background-color: #fda; + padding: 5px; + border: 3px solid red; +} + +.footnote:target { + background-color: #ffa; +} + +.line-block { + display: block; + margin-top: 1em; + margin-bottom: 1em; +} + +.line-block .line-block { + margin-top: 0; + margin-bottom: 0; + margin-left: 1.5em; +} + +.guilabel, .menuselection { + font-family: sans-serif; +} + +.accelerator { + text-decoration: underline; +} + +.classifier { + font-style: oblique; +} + +.classifier:before { + font-style: normal; + margin: 0 0.5em; + content: ":"; + display: inline-block; +} + +abbr, acronym { + border-bottom: dotted 1px; + cursor: help; +} + +.translated { + background-color: rgba(207, 255, 207, 0.2) +} + +.untranslated { + background-color: rgba(255, 207, 207, 0.2) +} + +/* -- code displays --------------------------------------------------------- */ + +pre { + overflow: auto; + overflow-y: hidden; /* fixes display issues on Chrome browsers */ +} + +pre, div[class*="highlight-"] { + clear: both; +} + +span.pre { + -moz-hyphens: none; + -ms-hyphens: none; + -webkit-hyphens: none; + hyphens: none; + white-space: nowrap; +} + +div[class*="highlight-"] { + margin: 1em 0; +} + +td.linenos pre { + border: 0; + background-color: transparent; + color: #aaa; +} + +table.highlighttable { + display: block; +} + +table.highlighttable tbody { + display: block; +} + +table.highlighttable tr { + display: flex; +} + +table.highlighttable td { + margin: 0; + padding: 0; +} + +table.highlighttable td.linenos { + padding-right: 0.5em; +} + +table.highlighttable td.code { + flex: 1; + overflow: hidden; +} + +.highlight .hll { + display: block; +} + +div.highlight pre, +table.highlighttable pre { + margin: 0; +} + +div.code-block-caption + div { + margin-top: 0; +} + +div.code-block-caption { + margin-top: 1em; + padding: 2px 5px; + font-size: small; +} + +div.code-block-caption code { + background-color: transparent; +} + +table.highlighttable td.linenos, +span.linenos, +div.highlight span.gp { /* gp: Generic.Prompt */ + user-select: none; + -webkit-user-select: text; /* Safari fallback only */ + -webkit-user-select: none; /* Chrome/Safari */ + -moz-user-select: none; /* Firefox */ + -ms-user-select: none; /* IE10+ */ +} + +div.code-block-caption span.caption-number { + padding: 0.1em 0.3em; + font-style: italic; +} + +div.code-block-caption span.caption-text { +} + +div.literal-block-wrapper { + margin: 1em 0; +} + +code.xref, a code { + background-color: transparent; + font-weight: bold; +} + +h1 code, h2 code, h3 code, h4 code, h5 code, h6 code { + background-color: transparent; +} + +.viewcode-link { + float: right; +} + +.viewcode-back { + float: right; + font-family: sans-serif; +} + +div.viewcode-block:target { + margin: -1px -10px; + padding: 0 10px; +} + +/* -- math display ---------------------------------------------------------- */ + +img.math { + vertical-align: middle; +} + +div.body div.math p { + text-align: center; +} + +span.eqno { + float: right; +} + +span.eqno a.headerlink { + position: absolute; + z-index: 1; +} + +div.math:hover a.headerlink { + visibility: visible; +} + +/* -- printout stylesheet --------------------------------------------------- */ + +@media print { + div.document, + div.documentwrapper, + div.bodywrapper { + margin: 0 !important; + width: 100%; + } + + div.sphinxsidebar, + div.related, + div.footer, + #top-link { + display: none; + } +} \ No newline at end of file diff --git a/QuantSpider/_build/html/_static/custom.css b/QuantSpider/_build/html/_static/custom.css new file mode 100644 index 0000000..2a924f1 --- /dev/null +++ b/QuantSpider/_build/html/_static/custom.css @@ -0,0 +1 @@ +/* This file intentionally left blank. */ diff --git a/QuantSpider/_build/html/_static/doctools.js b/QuantSpider/_build/html/_static/doctools.js new file mode 100644 index 0000000..d06a71d --- /dev/null +++ b/QuantSpider/_build/html/_static/doctools.js @@ -0,0 +1,156 @@ +/* + * doctools.js + * ~~~~~~~~~~~ + * + * Base JavaScript utilities for all Sphinx HTML documentation. + * + * :copyright: Copyright 2007-2023 by the Sphinx team, see AUTHORS. + * :license: BSD, see LICENSE for details. + * + */ +"use strict"; + +const BLACKLISTED_KEY_CONTROL_ELEMENTS = new Set([ + "TEXTAREA", + "INPUT", + "SELECT", + "BUTTON", +]); + +const _ready = (callback) => { + if (document.readyState !== "loading") { + callback(); + } else { + document.addEventListener("DOMContentLoaded", callback); + } +}; + +/** + * Small JavaScript module for the documentation. + */ +const Documentation = { + init: () => { + Documentation.initDomainIndexTable(); + Documentation.initOnKeyListeners(); + }, + + /** + * i18n support + */ + TRANSLATIONS: {}, + PLURAL_EXPR: (n) => (n === 1 ? 0 : 1), + LOCALE: "unknown", + + // gettext and ngettext don't access this so that the functions + // can safely bound to a different name (_ = Documentation.gettext) + gettext: (string) => { + const translated = Documentation.TRANSLATIONS[string]; + switch (typeof translated) { + case "undefined": + return string; // no translation + case "string": + return translated; // translation exists + default: + return translated[0]; // (singular, plural) translation tuple exists + } + }, + + ngettext: (singular, plural, n) => { + const translated = Documentation.TRANSLATIONS[singular]; + if (typeof translated !== "undefined") + return translated[Documentation.PLURAL_EXPR(n)]; + return n === 1 ? singular : plural; + }, + + addTranslations: (catalog) => { + Object.assign(Documentation.TRANSLATIONS, catalog.messages); + Documentation.PLURAL_EXPR = new Function( + "n", + `return (${catalog.plural_expr})` + ); + Documentation.LOCALE = catalog.locale; + }, + + /** + * helper function to focus on search bar + */ + focusSearchBar: () => { + document.querySelectorAll("input[name=q]")[0]?.focus(); + }, + + /** + * Initialise the domain index toggle buttons + */ + initDomainIndexTable: () => { + const toggler = (el) => { + const idNumber = el.id.substr(7); + const toggledRows = document.querySelectorAll(`tr.cg-${idNumber}`); + if (el.src.substr(-9) === "minus.png") { + el.src = `${el.src.substr(0, el.src.length - 9)}plus.png`; + toggledRows.forEach((el) => (el.style.display = "none")); + } else { + el.src = `${el.src.substr(0, el.src.length - 8)}minus.png`; + toggledRows.forEach((el) => (el.style.display = "")); + } + }; + + const togglerElements = document.querySelectorAll("img.toggler"); + togglerElements.forEach((el) => + el.addEventListener("click", (event) => toggler(event.currentTarget)) + ); + togglerElements.forEach((el) => (el.style.display = "")); + if (DOCUMENTATION_OPTIONS.COLLAPSE_INDEX) togglerElements.forEach(toggler); + }, + + initOnKeyListeners: () => { + // only install a listener if it is really needed + if ( + !DOCUMENTATION_OPTIONS.NAVIGATION_WITH_KEYS && + !DOCUMENTATION_OPTIONS.ENABLE_SEARCH_SHORTCUTS + ) + return; + + document.addEventListener("keydown", (event) => { + // bail for input elements + if (BLACKLISTED_KEY_CONTROL_ELEMENTS.has(document.activeElement.tagName)) return; + // bail with special keys + if (event.altKey || event.ctrlKey || event.metaKey) return; + + if (!event.shiftKey) { + switch (event.key) { + case "ArrowLeft": + if (!DOCUMENTATION_OPTIONS.NAVIGATION_WITH_KEYS) break; + + const prevLink = document.querySelector('link[rel="prev"]'); + if (prevLink && prevLink.href) { + window.location.href = prevLink.href; + event.preventDefault(); + } + break; + case "ArrowRight": + if (!DOCUMENTATION_OPTIONS.NAVIGATION_WITH_KEYS) break; + + const nextLink = document.querySelector('link[rel="next"]'); + if (nextLink && nextLink.href) { + window.location.href = nextLink.href; + event.preventDefault(); + } + break; + } + } + + // some keyboard layouts may need Shift to get / + switch (event.key) { + case "/": + if (!DOCUMENTATION_OPTIONS.ENABLE_SEARCH_SHORTCUTS) break; + Documentation.focusSearchBar(); + event.preventDefault(); + } + }); + }, +}; + +// quick alias for translations +const _ = Documentation.gettext; + +_ready(Documentation.init); diff --git a/QuantSpider/_build/html/_static/documentation_options.js b/QuantSpider/_build/html/_static/documentation_options.js new file mode 100644 index 0000000..b57ae3b --- /dev/null +++ b/QuantSpider/_build/html/_static/documentation_options.js @@ -0,0 +1,14 @@ +var DOCUMENTATION_OPTIONS = { + URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'), + VERSION: '', + LANGUAGE: 'en', + COLLAPSE_INDEX: false, + BUILDER: 'html', + FILE_SUFFIX: '.html', + LINK_SUFFIX: '.html', + HAS_SOURCE: true, + SOURCELINK_SUFFIX: '.txt', + NAVIGATION_WITH_KEYS: false, + SHOW_SEARCH_SUMMARY: true, + ENABLE_SEARCH_SHORTCUTS: true, +}; \ No newline at end of file diff --git a/QuantSpider/_build/html/_static/file.png b/QuantSpider/_build/html/_static/file.png new file mode 100644 index 0000000000000000000000000000000000000000..a858a410e4faa62ce324d814e4b816fff83a6fb3 GIT binary patch literal 286 zcmV+(0pb3MP)s`hMrGg#P~ix$^RISR_I47Y|r1 z_CyJOe}D1){SET-^Amu_i71Lt6eYfZjRyw@I6OQAIXXHDfiX^GbOlHe=Ae4>0m)d(f|Me07*qoM6N<$f}vM^LjV8( literal 0 HcmV?d00001 diff --git a/QuantSpider/_build/html/_static/language_data.js b/QuantSpider/_build/html/_static/language_data.js new file mode 100644 index 0000000..250f566 --- /dev/null +++ b/QuantSpider/_build/html/_static/language_data.js @@ -0,0 +1,199 @@ +/* + * language_data.js + * ~~~~~~~~~~~~~~~~ + * + * This script contains the language-specific data used by searchtools.js, + * namely the list of stopwords, stemmer, scorer and splitter. + * + * :copyright: Copyright 2007-2023 by the Sphinx team, see AUTHORS. + * :license: BSD, see LICENSE for details. + * + */ + +var stopwords = ["a", "and", "are", "as", "at", "be", "but", "by", "for", "if", "in", "into", "is", "it", "near", "no", "not", "of", "on", "or", "such", "that", "the", "their", "then", "there", "these", "they", "this", "to", "was", "will", "with"]; + + +/* Non-minified version is copied as a separate JS file, is available */ + +/** + * Porter Stemmer + */ +var Stemmer = function() { + + var step2list = { + ational: 'ate', + tional: 'tion', + enci: 'ence', + anci: 'ance', + izer: 'ize', + bli: 'ble', + alli: 'al', + entli: 'ent', + eli: 'e', + ousli: 'ous', + ization: 'ize', + ation: 'ate', + ator: 'ate', + alism: 'al', + iveness: 'ive', + fulness: 'ful', + ousness: 'ous', + aliti: 'al', + iviti: 'ive', + biliti: 'ble', + logi: 'log' + }; + + var step3list = { + icate: 'ic', + ative: '', + alize: 'al', + iciti: 'ic', + ical: 'ic', + ful: '', + ness: '' + }; + + var c = "[^aeiou]"; // consonant + var v = "[aeiouy]"; // vowel + var C = c + "[^aeiouy]*"; // consonant sequence + var V = v + "[aeiou]*"; // vowel sequence + + var mgr0 = "^(" + C + ")?" + V + C; // [C]VC... is m>0 + var meq1 = "^(" + C + ")?" + V + C + "(" + V + ")?$"; // [C]VC[V] is m=1 + var mgr1 = "^(" + C + ")?" + V + C + V + C; // [C]VCVC... is m>1 + var s_v = "^(" + C + ")?" + v; // vowel in stem + + this.stemWord = function (w) { + var stem; + var suffix; + var firstch; + var origword = w; + + if (w.length < 3) + return w; + + var re; + var re2; + var re3; + var re4; + + firstch = w.substr(0,1); + if (firstch == "y") + w = firstch.toUpperCase() + w.substr(1); + + // Step 1a + re = /^(.+?)(ss|i)es$/; + re2 = /^(.+?)([^s])s$/; + + if (re.test(w)) + w = w.replace(re,"$1$2"); + else if (re2.test(w)) + w = w.replace(re2,"$1$2"); + + // Step 1b + re = /^(.+?)eed$/; + re2 = /^(.+?)(ed|ing)$/; + if (re.test(w)) { + var fp = re.exec(w); + re = new RegExp(mgr0); + if (re.test(fp[1])) { + re = /.$/; + w = w.replace(re,""); + } + } + else if (re2.test(w)) { + var fp = re2.exec(w); + stem = fp[1]; + re2 = new RegExp(s_v); + if (re2.test(stem)) { + w = stem; + re2 = /(at|bl|iz)$/; + re3 = new RegExp("([^aeiouylsz])\\1$"); + re4 = new RegExp("^" + C + v + "[^aeiouwxy]$"); + if (re2.test(w)) + w = w + "e"; + else if (re3.test(w)) { + re = /.$/; + w = w.replace(re,""); + } + else if (re4.test(w)) + w = w + "e"; + } + } + + // Step 1c + re = /^(.+?)y$/; + if (re.test(w)) { + var fp = re.exec(w); + stem = fp[1]; + re = new RegExp(s_v); + if (re.test(stem)) + w = stem + "i"; + } + + // Step 2 + re = /^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/; + if (re.test(w)) { + var fp = re.exec(w); + stem = fp[1]; + suffix = fp[2]; + re = new RegExp(mgr0); + if (re.test(stem)) + w = stem + step2list[suffix]; + } + + // Step 3 + re = /^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/; + if (re.test(w)) { + var fp = re.exec(w); + stem = fp[1]; + suffix = fp[2]; + re = new RegExp(mgr0); + if (re.test(stem)) + w = stem + step3list[suffix]; + } + + // Step 4 + re = /^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/; + re2 = /^(.+?)(s|t)(ion)$/; + if (re.test(w)) { + var fp = re.exec(w); + stem = fp[1]; + re = new RegExp(mgr1); + if (re.test(stem)) + w = stem; + } + else if (re2.test(w)) { + var fp = re2.exec(w); + stem = fp[1] + fp[2]; + re2 = new RegExp(mgr1); + if (re2.test(stem)) + w = stem; + } + + // Step 5 + re = /^(.+?)e$/; + if (re.test(w)) { + var fp = re.exec(w); + stem = fp[1]; + re = new RegExp(mgr1); + re2 = new RegExp(meq1); + re3 = new RegExp("^" + C + v + "[^aeiouwxy]$"); + if (re.test(stem) || (re2.test(stem) && !(re3.test(stem)))) + w = stem; + } + re = /ll$/; + re2 = new RegExp(mgr1); + if (re.test(w) && re2.test(w)) { + re = /.$/; + w = w.replace(re,""); + } + + // and turn initial Y back to y + if (firstch == "y") + w = firstch.toLowerCase() + w.substr(1); + return w; + } +} + diff --git a/QuantSpider/_build/html/_static/minus.png b/QuantSpider/_build/html/_static/minus.png new file mode 100644 index 0000000000000000000000000000000000000000..d96755fdaf8bb2214971e0db9c1fd3077d7c419d GIT binary patch literal 90 zcmeAS@N?(olHy`uVBq!ia0vp^+#t*WBp7;*Yy1LIik>cxAr*|t7R?Mi>2?kWtu=nj kDsEF_5m^0CR;1wuP-*O&G^0G}KYk!hp00i_>zopr08q^qX#fBK literal 0 HcmV?d00001 diff --git a/QuantSpider/_build/html/_static/plus.png b/QuantSpider/_build/html/_static/plus.png new file mode 100644 index 0000000000000000000000000000000000000000..7107cec93a979b9a5f64843235a16651d563ce2d GIT binary patch literal 90 zcmeAS@N?(olHy`uVBq!ia0vp^+#t*WBp7;*Yy1LIik>cxAr*|t7R?Mi>2?kWtu>-2 m3q%Vub%g%s<8sJhVPMczOq}xhg9DJoz~JfX=d#Wzp$Pyb1r*Kz literal 0 HcmV?d00001 diff --git a/QuantSpider/_build/html/_static/pygments.css b/QuantSpider/_build/html/_static/pygments.css new file mode 100644 index 0000000..57c7df3 --- /dev/null +++ b/QuantSpider/_build/html/_static/pygments.css @@ -0,0 +1,84 @@ +pre { line-height: 125%; } +td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; } +span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; } +td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; } +span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; } +.highlight .hll { background-color: #ffffcc } +.highlight { background: #f8f8f8; } +.highlight .c { color: #8f5902; font-style: italic } /* Comment */ +.highlight .err { color: #a40000; border: 1px solid #ef2929 } /* Error */ +.highlight .g { color: #000000 } /* Generic */ +.highlight .k { color: #004461; font-weight: bold } /* Keyword */ +.highlight .l { color: #000000 } /* Literal */ +.highlight .n { color: #000000 } /* Name */ +.highlight .o { color: #582800 } /* Operator */ +.highlight .x { color: #000000 } /* Other */ +.highlight .p { color: #000000; font-weight: bold } /* Punctuation */ +.highlight .ch { color: #8f5902; font-style: italic } /* Comment.Hashbang */ +.highlight .cm { color: #8f5902; font-style: italic } /* Comment.Multiline */ +.highlight .cp { color: #8f5902 } /* Comment.Preproc */ +.highlight .cpf { color: #8f5902; font-style: italic } /* Comment.PreprocFile */ +.highlight .c1 { color: #8f5902; font-style: italic } /* Comment.Single */ +.highlight .cs { color: #8f5902; font-style: italic } /* Comment.Special */ +.highlight .gd { color: #a40000 } /* Generic.Deleted */ +.highlight .ge { color: #000000; font-style: italic } /* Generic.Emph */ +.highlight .ges { color: #000000 } /* Generic.EmphStrong */ +.highlight .gr { color: #ef2929 } /* Generic.Error */ +.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */ +.highlight .gi { color: #00A000 } /* Generic.Inserted */ +.highlight .go { color: #888888 } /* Generic.Output */ +.highlight .gp { color: #745334 } /* Generic.Prompt */ +.highlight .gs { color: #000000; font-weight: bold } /* Generic.Strong */ +.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */ +.highlight .gt { color: #a40000; font-weight: bold } /* Generic.Traceback */ +.highlight .kc { color: #004461; font-weight: bold } /* Keyword.Constant */ +.highlight .kd { color: #004461; font-weight: bold } /* Keyword.Declaration */ +.highlight .kn { color: #004461; font-weight: bold } /* Keyword.Namespace */ +.highlight .kp { color: #004461; font-weight: bold } /* Keyword.Pseudo */ +.highlight .kr { color: #004461; font-weight: bold } /* Keyword.Reserved */ +.highlight .kt { color: #004461; font-weight: bold } /* Keyword.Type */ +.highlight .ld { color: #000000 } /* Literal.Date */ +.highlight .m { color: #990000 } /* Literal.Number */ +.highlight .s { color: #4e9a06 } /* Literal.String */ +.highlight .na { color: #c4a000 } /* Name.Attribute */ +.highlight .nb { color: #004461 } /* Name.Builtin */ +.highlight .nc { color: #000000 } /* Name.Class */ +.highlight .no { color: #000000 } /* Name.Constant */ +.highlight .nd { color: #888888 } /* Name.Decorator */ +.highlight .ni { color: #ce5c00 } /* Name.Entity */ +.highlight .ne { color: #cc0000; font-weight: bold } /* Name.Exception */ +.highlight .nf { color: #000000 } /* Name.Function */ +.highlight .nl { color: #f57900 } /* Name.Label */ +.highlight .nn { color: #000000 } /* Name.Namespace */ +.highlight .nx { color: #000000 } /* Name.Other */ +.highlight .py { color: #000000 } /* Name.Property */ +.highlight .nt { color: #004461; font-weight: bold } /* Name.Tag */ +.highlight .nv { color: #000000 } /* Name.Variable */ +.highlight .ow { color: #004461; font-weight: bold } /* Operator.Word */ +.highlight .pm { color: #000000; font-weight: bold } /* Punctuation.Marker */ +.highlight .w { color: #f8f8f8; text-decoration: underline } /* Text.Whitespace */ +.highlight .mb { color: #990000 } /* Literal.Number.Bin */ +.highlight .mf { color: #990000 } /* Literal.Number.Float */ +.highlight .mh { color: #990000 } /* Literal.Number.Hex */ +.highlight .mi { color: #990000 } /* Literal.Number.Integer */ +.highlight .mo { color: #990000 } /* Literal.Number.Oct */ +.highlight .sa { color: #4e9a06 } /* Literal.String.Affix */ +.highlight .sb { color: #4e9a06 } /* Literal.String.Backtick */ +.highlight .sc { color: #4e9a06 } /* Literal.String.Char */ +.highlight .dl { color: #4e9a06 } /* Literal.String.Delimiter */ +.highlight .sd { color: #8f5902; font-style: italic } /* Literal.String.Doc */ +.highlight .s2 { color: #4e9a06 } /* Literal.String.Double */ +.highlight .se { color: #4e9a06 } /* Literal.String.Escape */ +.highlight .sh { color: #4e9a06 } /* Literal.String.Heredoc */ +.highlight .si { color: #4e9a06 } /* Literal.String.Interpol */ +.highlight .sx { color: #4e9a06 } /* Literal.String.Other */ +.highlight .sr { color: #4e9a06 } /* Literal.String.Regex */ +.highlight .s1 { color: #4e9a06 } /* Literal.String.Single */ +.highlight .ss { color: #4e9a06 } /* Literal.String.Symbol */ +.highlight .bp { color: #3465a4 } /* Name.Builtin.Pseudo */ +.highlight .fm { color: #000000 } /* Name.Function.Magic */ +.highlight .vc { color: #000000 } /* Name.Variable.Class */ +.highlight .vg { color: #000000 } /* Name.Variable.Global */ +.highlight .vi { color: #000000 } /* Name.Variable.Instance */ +.highlight .vm { color: #000000 } /* Name.Variable.Magic */ +.highlight .il { color: #990000 } /* Literal.Number.Integer.Long */ \ No newline at end of file diff --git a/QuantSpider/_build/html/_static/searchtools.js b/QuantSpider/_build/html/_static/searchtools.js new file mode 100644 index 0000000..97d56a7 --- /dev/null +++ b/QuantSpider/_build/html/_static/searchtools.js @@ -0,0 +1,566 @@ +/* + * searchtools.js + * ~~~~~~~~~~~~~~~~ + * + * Sphinx JavaScript utilities for the full-text search. + * + * :copyright: Copyright 2007-2023 by the Sphinx team, see AUTHORS. + * :license: BSD, see LICENSE for details. + * + */ +"use strict"; + +/** + * Simple result scoring code. + */ +if (typeof Scorer === "undefined") { + var Scorer = { + // Implement the following function to further tweak the score for each result + // The function takes a result array [docname, title, anchor, descr, score, filename] + // and returns the new score. + /* + score: result => { + const [docname, title, anchor, descr, score, filename] = result + return score + }, + */ + + // query matches the full name of an object + objNameMatch: 11, + // or matches in the last dotted part of the object name + objPartialMatch: 6, + // Additive scores depending on the priority of the object + objPrio: { + 0: 15, // used to be importantResults + 1: 5, // used to be objectResults + 2: -5, // used to be unimportantResults + }, + // Used when the priority is not in the mapping. + objPrioDefault: 0, + + // query found in title + title: 15, + partialTitle: 7, + // query found in terms + term: 5, + partialTerm: 2, + }; +} + +const _removeChildren = (element) => { + while (element && element.lastChild) element.removeChild(element.lastChild); +}; + +/** + * See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions#escaping + */ +const _escapeRegExp = (string) => + string.replace(/[.*+\-?^${}()|[\]\\]/g, "\\$&"); // $& means the whole matched string + +const _displayItem = (item, searchTerms) => { + const docBuilder = DOCUMENTATION_OPTIONS.BUILDER; + const docUrlRoot = DOCUMENTATION_OPTIONS.URL_ROOT; + const docFileSuffix = DOCUMENTATION_OPTIONS.FILE_SUFFIX; + const docLinkSuffix = DOCUMENTATION_OPTIONS.LINK_SUFFIX; + const showSearchSummary = DOCUMENTATION_OPTIONS.SHOW_SEARCH_SUMMARY; + + const [docName, title, anchor, descr, score, _filename] = item; + + let listItem = document.createElement("li"); + let requestUrl; + let linkUrl; + if (docBuilder === "dirhtml") { + // dirhtml builder + let dirname = docName + "/"; + if (dirname.match(/\/index\/$/)) + dirname = dirname.substring(0, dirname.length - 6); + else if (dirname === "index/") dirname = ""; + requestUrl = docUrlRoot + dirname; + linkUrl = requestUrl; + } else { + // normal html builders + requestUrl = docUrlRoot + docName + docFileSuffix; + linkUrl = docName + docLinkSuffix; + } + let linkEl = listItem.appendChild(document.createElement("a")); + linkEl.href = linkUrl + anchor; + linkEl.dataset.score = score; + linkEl.innerHTML = title; + if (descr) + listItem.appendChild(document.createElement("span")).innerHTML = + " (" + descr + ")"; + else if (showSearchSummary) + fetch(requestUrl) + .then((responseData) => responseData.text()) + .then((data) => { + if (data) + listItem.appendChild( + Search.makeSearchSummary(data, searchTerms) + ); + }); + Search.output.appendChild(listItem); +}; +const _finishSearch = (resultCount) => { + Search.stopPulse(); + Search.title.innerText = _("Search Results"); + if (!resultCount) + Search.status.innerText = Documentation.gettext( + "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories." + ); + else + Search.status.innerText = _( + `Search finished, found ${resultCount} page(s) matching the search query.` + ); +}; +const _displayNextItem = ( + results, + resultCount, + searchTerms +) => { + // results left, load the summary and display it + // this is intended to be dynamic (don't sub resultsCount) + if (results.length) { + _displayItem(results.pop(), searchTerms); + setTimeout( + () => _displayNextItem(results, resultCount, searchTerms), + 5 + ); + } + // search finished, update title and status message + else _finishSearch(resultCount); +}; + +/** + * Default splitQuery function. Can be overridden in ``sphinx.search`` with a + * custom function per language. + * + * The regular expression works by splitting the string on consecutive characters + * that are not Unicode letters, numbers, underscores, or emoji characters. + * This is the same as ``\W+`` in Python, preserving the surrogate pair area. + */ +if (typeof splitQuery === "undefined") { + var splitQuery = (query) => query + .split(/[^\p{Letter}\p{Number}_\p{Emoji_Presentation}]+/gu) + .filter(term => term) // remove remaining empty strings +} + +/** + * Search Module + */ +const Search = { + _index: null, + _queued_query: null, + _pulse_status: -1, + + htmlToText: (htmlString) => { + const htmlElement = new DOMParser().parseFromString(htmlString, 'text/html'); + htmlElement.querySelectorAll(".headerlink").forEach((el) => { el.remove() }); + const docContent = htmlElement.querySelector('[role="main"]'); + if (docContent !== undefined) return docContent.textContent; + console.warn( + "Content block not found. Sphinx search tries to obtain it via '[role=main]'. Could you check your theme or template." + ); + return ""; + }, + + init: () => { + const query = new URLSearchParams(window.location.search).get("q"); + document + .querySelectorAll('input[name="q"]') + .forEach((el) => (el.value = query)); + if (query) Search.performSearch(query); + }, + + loadIndex: (url) => + (document.body.appendChild(document.createElement("script")).src = url), + + setIndex: (index) => { + Search._index = index; + if (Search._queued_query !== null) { + const query = Search._queued_query; + Search._queued_query = null; + Search.query(query); + } + }, + + hasIndex: () => Search._index !== null, + + deferQuery: (query) => (Search._queued_query = query), + + stopPulse: () => (Search._pulse_status = -1), + + startPulse: () => { + if (Search._pulse_status >= 0) return; + + const pulse = () => { + Search._pulse_status = (Search._pulse_status + 1) % 4; + Search.dots.innerText = ".".repeat(Search._pulse_status); + if (Search._pulse_status >= 0) window.setTimeout(pulse, 500); + }; + pulse(); + }, + + /** + * perform a search for something (or wait until index is loaded) + */ + performSearch: (query) => { + // create the required interface elements + const searchText = document.createElement("h2"); + searchText.textContent = _("Searching"); + const searchSummary = document.createElement("p"); + searchSummary.classList.add("search-summary"); + searchSummary.innerText = ""; + const searchList = document.createElement("ul"); + searchList.classList.add("search"); + + const out = document.getElementById("search-results"); + Search.title = out.appendChild(searchText); + Search.dots = Search.title.appendChild(document.createElement("span")); + Search.status = out.appendChild(searchSummary); + Search.output = out.appendChild(searchList); + + const searchProgress = document.getElementById("search-progress"); + // Some themes don't use the search progress node + if (searchProgress) { + searchProgress.innerText = _("Preparing search..."); + } + Search.startPulse(); + + // index already loaded, the browser was quick! + if (Search.hasIndex()) Search.query(query); + else Search.deferQuery(query); + }, + + /** + * execute search (requires search index to be loaded) + */ + query: (query) => { + const filenames = Search._index.filenames; + const docNames = Search._index.docnames; + const titles = Search._index.titles; + const allTitles = Search._index.alltitles; + const indexEntries = Search._index.indexentries; + + // stem the search terms and add them to the correct list + const stemmer = new Stemmer(); + const searchTerms = new Set(); + const excludedTerms = new Set(); + const highlightTerms = new Set(); + const objectTerms = new Set(splitQuery(query.toLowerCase().trim())); + splitQuery(query.trim()).forEach((queryTerm) => { + const queryTermLower = queryTerm.toLowerCase(); + + // maybe skip this "word" + // stopwords array is from language_data.js + if ( + stopwords.indexOf(queryTermLower) !== -1 || + queryTerm.match(/^\d+$/) + ) + return; + + // stem the word + let word = stemmer.stemWord(queryTermLower); + // select the correct list + if (word[0] === "-") excludedTerms.add(word.substr(1)); + else { + searchTerms.add(word); + highlightTerms.add(queryTermLower); + } + }); + + if (SPHINX_HIGHLIGHT_ENABLED) { // set in sphinx_highlight.js + localStorage.setItem("sphinx_highlight_terms", [...highlightTerms].join(" ")) + } + + // console.debug("SEARCH: searching for:"); + // console.info("required: ", [...searchTerms]); + // console.info("excluded: ", [...excludedTerms]); + + // array of [docname, title, anchor, descr, score, filename] + let results = []; + _removeChildren(document.getElementById("search-progress")); + + const queryLower = query.toLowerCase(); + for (const [title, foundTitles] of Object.entries(allTitles)) { + if (title.toLowerCase().includes(queryLower) && (queryLower.length >= title.length/2)) { + for (const [file, id] of foundTitles) { + let score = Math.round(100 * queryLower.length / title.length) + results.push([ + docNames[file], + titles[file] !== title ? `${titles[file]} > ${title}` : title, + id !== null ? "#" + id : "", + null, + score, + filenames[file], + ]); + } + } + } + + // search for explicit entries in index directives + for (const [entry, foundEntries] of Object.entries(indexEntries)) { + if (entry.includes(queryLower) && (queryLower.length >= entry.length/2)) { + for (const [file, id] of foundEntries) { + let score = Math.round(100 * queryLower.length / entry.length) + results.push([ + docNames[file], + titles[file], + id ? "#" + id : "", + null, + score, + filenames[file], + ]); + } + } + } + + // lookup as object + objectTerms.forEach((term) => + results.push(...Search.performObjectSearch(term, objectTerms)) + ); + + // lookup as search terms in fulltext + results.push(...Search.performTermsSearch(searchTerms, excludedTerms)); + + // let the scorer override scores with a custom scoring function + if (Scorer.score) results.forEach((item) => (item[4] = Scorer.score(item))); + + // now sort the results by score (in opposite order of appearance, since the + // display function below uses pop() to retrieve items) and then + // alphabetically + results.sort((a, b) => { + const leftScore = a[4]; + const rightScore = b[4]; + if (leftScore === rightScore) { + // same score: sort alphabetically + const leftTitle = a[1].toLowerCase(); + const rightTitle = b[1].toLowerCase(); + if (leftTitle === rightTitle) return 0; + return leftTitle > rightTitle ? -1 : 1; // inverted is intentional + } + return leftScore > rightScore ? 1 : -1; + }); + + // remove duplicate search results + // note the reversing of results, so that in the case of duplicates, the highest-scoring entry is kept + let seen = new Set(); + results = results.reverse().reduce((acc, result) => { + let resultStr = result.slice(0, 4).concat([result[5]]).map(v => String(v)).join(','); + if (!seen.has(resultStr)) { + acc.push(result); + seen.add(resultStr); + } + return acc; + }, []); + + results = results.reverse(); + + // for debugging + //Search.lastresults = results.slice(); // a copy + // console.info("search results:", Search.lastresults); + + // print the results + _displayNextItem(results, results.length, searchTerms); + }, + + /** + * search for object names + */ + performObjectSearch: (object, objectTerms) => { + const filenames = Search._index.filenames; + const docNames = Search._index.docnames; + const objects = Search._index.objects; + const objNames = Search._index.objnames; + const titles = Search._index.titles; + + const results = []; + + const objectSearchCallback = (prefix, match) => { + const name = match[4] + const fullname = (prefix ? prefix + "." : "") + name; + const fullnameLower = fullname.toLowerCase(); + if (fullnameLower.indexOf(object) < 0) return; + + let score = 0; + const parts = fullnameLower.split("."); + + // check for different match types: exact matches of full name or + // "last name" (i.e. last dotted part) + if (fullnameLower === object || parts.slice(-1)[0] === object) + score += Scorer.objNameMatch; + else if (parts.slice(-1)[0].indexOf(object) > -1) + score += Scorer.objPartialMatch; // matches in last name + + const objName = objNames[match[1]][2]; + const title = titles[match[0]]; + + // If more than one term searched for, we require other words to be + // found in the name/title/description + const otherTerms = new Set(objectTerms); + otherTerms.delete(object); + if (otherTerms.size > 0) { + const haystack = `${prefix} ${name} ${objName} ${title}`.toLowerCase(); + if ( + [...otherTerms].some((otherTerm) => haystack.indexOf(otherTerm) < 0) + ) + return; + } + + let anchor = match[3]; + if (anchor === "") anchor = fullname; + else if (anchor === "-") anchor = objNames[match[1]][1] + "-" + fullname; + + const descr = objName + _(", in ") + title; + + // add custom score for some objects according to scorer + if (Scorer.objPrio.hasOwnProperty(match[2])) + score += Scorer.objPrio[match[2]]; + else score += Scorer.objPrioDefault; + + results.push([ + docNames[match[0]], + fullname, + "#" + anchor, + descr, + score, + filenames[match[0]], + ]); + }; + Object.keys(objects).forEach((prefix) => + objects[prefix].forEach((array) => + objectSearchCallback(prefix, array) + ) + ); + return results; + }, + + /** + * search for full-text terms in the index + */ + performTermsSearch: (searchTerms, excludedTerms) => { + // prepare search + const terms = Search._index.terms; + const titleTerms = Search._index.titleterms; + const filenames = Search._index.filenames; + const docNames = Search._index.docnames; + const titles = Search._index.titles; + + const scoreMap = new Map(); + const fileMap = new Map(); + + // perform the search on the required terms + searchTerms.forEach((word) => { + const files = []; + const arr = [ + { files: terms[word], score: Scorer.term }, + { files: titleTerms[word], score: Scorer.title }, + ]; + // add support for partial matches + if (word.length > 2) { + const escapedWord = _escapeRegExp(word); + Object.keys(terms).forEach((term) => { + if (term.match(escapedWord) && !terms[word]) + arr.push({ files: terms[term], score: Scorer.partialTerm }); + }); + Object.keys(titleTerms).forEach((term) => { + if (term.match(escapedWord) && !titleTerms[word]) + arr.push({ files: titleTerms[word], score: Scorer.partialTitle }); + }); + } + + // no match but word was a required one + if (arr.every((record) => record.files === undefined)) return; + + // found search word in contents + arr.forEach((record) => { + if (record.files === undefined) return; + + let recordFiles = record.files; + if (recordFiles.length === undefined) recordFiles = [recordFiles]; + files.push(...recordFiles); + + // set score for the word in each file + recordFiles.forEach((file) => { + if (!scoreMap.has(file)) scoreMap.set(file, {}); + scoreMap.get(file)[word] = record.score; + }); + }); + + // create the mapping + files.forEach((file) => { + if (fileMap.has(file) && fileMap.get(file).indexOf(word) === -1) + fileMap.get(file).push(word); + else fileMap.set(file, [word]); + }); + }); + + // now check if the files don't contain excluded terms + const results = []; + for (const [file, wordList] of fileMap) { + // check if all requirements are matched + + // as search terms with length < 3 are discarded + const filteredTermCount = [...searchTerms].filter( + (term) => term.length > 2 + ).length; + if ( + wordList.length !== searchTerms.size && + wordList.length !== filteredTermCount + ) + continue; + + // ensure that none of the excluded terms is in the search result + if ( + [...excludedTerms].some( + (term) => + terms[term] === file || + titleTerms[term] === file || + (terms[term] || []).includes(file) || + (titleTerms[term] || []).includes(file) + ) + ) + break; + + // select one (max) score for the file. + const score = Math.max(...wordList.map((w) => scoreMap.get(file)[w])); + // add result to the result list + results.push([ + docNames[file], + titles[file], + "", + null, + score, + filenames[file], + ]); + } + return results; + }, + + /** + * helper function to return a node containing the + * search summary for a given text. keywords is a list + * of stemmed words. + */ + makeSearchSummary: (htmlText, keywords) => { + const text = Search.htmlToText(htmlText); + if (text === "") return null; + + const textLower = text.toLowerCase(); + const actualStartPosition = [...keywords] + .map((k) => textLower.indexOf(k.toLowerCase())) + .filter((i) => i > -1) + .slice(-1)[0]; + const startWithContext = Math.max(actualStartPosition - 120, 0); + + const top = startWithContext === 0 ? "" : "..."; + const tail = startWithContext + 240 < text.length ? "..." : ""; + + let summary = document.createElement("p"); + summary.classList.add("context"); + summary.textContent = top + text.substr(startWithContext, 240).trim() + tail; + + return summary; + }, +}; + +_ready(Search.init); diff --git a/QuantSpider/_build/html/_static/sphinx_highlight.js b/QuantSpider/_build/html/_static/sphinx_highlight.js new file mode 100644 index 0000000..aae669d --- /dev/null +++ b/QuantSpider/_build/html/_static/sphinx_highlight.js @@ -0,0 +1,144 @@ +/* Highlighting utilities for Sphinx HTML documentation. */ +"use strict"; + +const SPHINX_HIGHLIGHT_ENABLED = true + +/** + * highlight a given string on a node by wrapping it in + * span elements with the given class name. + */ +const _highlight = (node, addItems, text, className) => { + if (node.nodeType === Node.TEXT_NODE) { + const val = node.nodeValue; + const parent = node.parentNode; + const pos = val.toLowerCase().indexOf(text); + if ( + pos >= 0 && + !parent.classList.contains(className) && + !parent.classList.contains("nohighlight") + ) { + let span; + + const closestNode = parent.closest("body, svg, foreignObject"); + const isInSVG = closestNode && closestNode.matches("svg"); + if (isInSVG) { + span = document.createElementNS("http://www.w3.org/2000/svg", "tspan"); + } else { + span = document.createElement("span"); + span.classList.add(className); + } + + span.appendChild(document.createTextNode(val.substr(pos, text.length))); + parent.insertBefore( + span, + parent.insertBefore( + document.createTextNode(val.substr(pos + text.length)), + node.nextSibling + ) + ); + node.nodeValue = val.substr(0, pos); + + if (isInSVG) { + const rect = document.createElementNS( + "http://www.w3.org/2000/svg", + "rect" + ); + const bbox = parent.getBBox(); + rect.x.baseVal.value = bbox.x; + rect.y.baseVal.value = bbox.y; + rect.width.baseVal.value = bbox.width; + rect.height.baseVal.value = bbox.height; + rect.setAttribute("class", className); + addItems.push({ parent: parent, target: rect }); + } + } + } else if (node.matches && !node.matches("button, select, textarea")) { + node.childNodes.forEach((el) => _highlight(el, addItems, text, className)); + } +}; +const _highlightText = (thisNode, text, className) => { + let addItems = []; + _highlight(thisNode, addItems, text, className); + addItems.forEach((obj) => + obj.parent.insertAdjacentElement("beforebegin", obj.target) + ); +}; + +/** + * Small JavaScript module for the documentation. + */ +const SphinxHighlight = { + + /** + * highlight the search words provided in localstorage in the text + */ + highlightSearchWords: () => { + if (!SPHINX_HIGHLIGHT_ENABLED) return; // bail if no highlight + + // get and clear terms from localstorage + const url = new URL(window.location); + const highlight = + localStorage.getItem("sphinx_highlight_terms") + || url.searchParams.get("highlight") + || ""; + localStorage.removeItem("sphinx_highlight_terms") + url.searchParams.delete("highlight"); + window.history.replaceState({}, "", url); + + // get individual terms from highlight string + const terms = highlight.toLowerCase().split(/\s+/).filter(x => x); + if (terms.length === 0) return; // nothing to do + + // There should never be more than one element matching "div.body" + const divBody = document.querySelectorAll("div.body"); + const body = divBody.length ? divBody[0] : document.querySelector("body"); + window.setTimeout(() => { + terms.forEach((term) => _highlightText(body, term, "highlighted")); + }, 10); + + const searchBox = document.getElementById("searchbox"); + if (searchBox === null) return; + searchBox.appendChild( + document + .createRange() + .createContextualFragment( + '" + ) + ); + }, + + /** + * helper function to hide the search marks again + */ + hideSearchWords: () => { + document + .querySelectorAll("#searchbox .highlight-link") + .forEach((el) => el.remove()); + document + .querySelectorAll("span.highlighted") + .forEach((el) => el.classList.remove("highlighted")); + localStorage.removeItem("sphinx_highlight_terms") + }, + + initEscapeListener: () => { + // only install a listener if it is really needed + if (!DOCUMENTATION_OPTIONS.ENABLE_SEARCH_SHORTCUTS) return; + + document.addEventListener("keydown", (event) => { + // bail for input elements + if (BLACKLISTED_KEY_CONTROL_ELEMENTS.has(document.activeElement.tagName)) return; + // bail with special keys + if (event.shiftKey || event.altKey || event.ctrlKey || event.metaKey) return; + if (DOCUMENTATION_OPTIONS.ENABLE_SEARCH_SHORTCUTS && (event.key === "Escape")) { + SphinxHighlight.hideSearchWords(); + event.preventDefault(); + } + }); + }, +}; + +_ready(SphinxHighlight.highlightSearchWords); +_ready(SphinxHighlight.initEscapeListener); diff --git a/QuantSpider/_build/html/genindex.html b/QuantSpider/_build/html/genindex.html new file mode 100644 index 0000000..8288705 --- /dev/null +++ b/QuantSpider/_build/html/genindex.html @@ -0,0 +1,98 @@ + + + + + + + Index — 量化论文爬虫 documentation + + + + + + + + + + + + + + + + +
+
+
+ + +
+ + +

Index

+ +
+ +
+ + +
+ +
+
+ +
+
+ + + + + + + \ No newline at end of file diff --git a/QuantSpider/_build/html/index.html b/QuantSpider/_build/html/index.html new file mode 100644 index 0000000..e0b9b87 --- /dev/null +++ b/QuantSpider/_build/html/index.html @@ -0,0 +1,99 @@ + + + + + + + + <no title> — 量化论文爬虫 documentation + + + + + + + + + + + + + + + + +
+
+
+ + +
+ +

量化交易论文爬虫文档

+
+

这是量化交易相关的论文项目。

+ + +
+ +
+
+ +
+
+ + + + + + + \ No newline at end of file diff --git a/QuantSpider/_build/html/objects.inv b/QuantSpider/_build/html/objects.inv new file mode 100644 index 0000000000000000000000000000000000000000..486ee8c3f128d0045950fa930bec7a5f4f04dab2 GIT binary patch literal 241 zcmY#Z2rkIT%&Sny%qvUHE6FdaR47X=D$dN$Q!wIERtPA{&q_@$u~K;1-v6{`+KY9& zo=t0i-m&Jz%+)~IFo;Sk1t2>lBUPa&H8(LcFD11|AwNx_BqOs}AuTf}RRKsR=jRp_ zr4|>brYMvaXXd3VROMtQ>2X!u^7cP_`i!^d+5inb&yA-%eZ0;FUN8;uXzzNJI_1eT zjf$ojF&wFyKTj&SdT8Z*`XuUQc1O|Y;0+QH0V}yDH@x_8)?f3iXRB1Ninl|w mL#n4+o!qK-kFFe9^n@p*SHQ4iUP4EWLsFHNIK!5@5N`k=17 + + + + + + Search — 量化论文爬虫 documentation + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ + +
+ +

Search

+ + + + +

+ Searching for multiple words only shows matches that contain + all words. +

+ + +
+ + + +
+ + + +
+ +
+ + +
+ +
+
+ +
+
+ + + + + + + \ No newline at end of file diff --git a/QuantSpider/_build/html/searchindex.js b/QuantSpider/_build/html/searchindex.js new file mode 100644 index 0000000..49fff7f --- /dev/null +++ b/QuantSpider/_build/html/searchindex.js @@ -0,0 +1 @@ +Search.setIndex({"docnames": ["index"], "filenames": ["index.rst"], "titles": ["<no title>"], "terms": {"\u91cf\u5316\u4ea4\u6613\u8bba\u6587\u722c\u866b\u6587\u6863": 0, "\u8fd9\u662f\u91cf\u5316\u4ea4\u6613\u76f8\u5173\u7684\u8bba\u6587\u9879\u76ee": 0}, "objects": {}, "objtypes": {}, "objnames": {}, "titleterms": {}, "envversion": {"sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx": 58}, "alltitles": {}, "indexentries": {}}) \ No newline at end of file diff --git a/QuantSpider/conf.py b/QuantSpider/conf.py new file mode 100644 index 0000000..530f693 --- /dev/null +++ b/QuantSpider/conf.py @@ -0,0 +1,16 @@ +import os + +# 源文件夹是我们的 Scrapy 项目的根目录。 +source_folder = 'quantocracy' + +# 输出目录,我们将生成 HTML 文件。 +output_dir = '_build/html' + +# 我们想要 Sphinx 包含所有 Python 模块在我们的 Scrapy 项目中。 +exclude_patterns = ['_templates'] + +# 以下告诉 Sphinx 哪些模块名称应该包含或排除文档。 +module_name_exclusions = [] + +# 设置您的文档标题。 +project = '量化论文爬虫' \ No newline at end of file diff --git a/QuantSpider/index.rst b/QuantSpider/index.rst new file mode 100644 index 0000000..2296dd6 --- /dev/null +++ b/QuantSpider/index.rst @@ -0,0 +1,5 @@ +量化交易论文爬虫文档 + +===================== + +这是量化交易相关的论文项目。 \ No newline at end of file diff --git a/QuantSpider/quantlunwen/quantlunwen/__init__.py b/QuantSpider/quantlunwen/quantlunwen/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/QuantSpider/quantlunwen/quantlunwen/items.py b/QuantSpider/quantlunwen/quantlunwen/items.py new file mode 100644 index 0000000..3ae9522 --- /dev/null +++ b/QuantSpider/quantlunwen/quantlunwen/items.py @@ -0,0 +1,22 @@ +# Define here the models for your scraped items +# +# See documentation in: +# https://docs.scrapy.org/en/latest/topics/items.html + +import scrapy + + +class QuantlunwenItem(scrapy.Item): + # 定义字段 + title = scrapy.Field() + href = scrapy.Field() + description = scrapy.Field() + pipeline = scrapy.Field() + +class ImgproItem(scrapy.Item): + # define the fields for your item here like: + # name = scrapy.Field() + image_urls = scrapy.Field() + images = scrapy.Field() + pipeline = scrapy.Field() + image_paths = scrapy.Field() diff --git a/QuantSpider/quantlunwen/quantlunwen/middlewares.py b/QuantSpider/quantlunwen/quantlunwen/middlewares.py new file mode 100644 index 0000000..16f1e73 --- /dev/null +++ b/QuantSpider/quantlunwen/quantlunwen/middlewares.py @@ -0,0 +1,132 @@ +# Define here the models for your spider middleware +# +# See documentation in: +# https://docs.scrapy.org/en/latest/topics/spider-middleware.html +import random + +from scrapy import signals, Request + +# useful for handling different item types with a single interface +from itemadapter import is_item, ItemAdapter +from scrapy.downloadermiddlewares.useragent import UserAgentMiddleware + +class QuantlunwenSpiderMiddleware: + # Not all methods need to be defined. If a method is not defined, + # scrapy acts as if the spider middleware does not modify the + # passed objects. + + @classmethod + def from_crawler(cls, crawler): + # This method is used by Scrapy to create your spiders. + s = cls() + crawler.signals.connect(s.spider_opened, signal=signals.spider_opened) + return s + + def process_spider_input(self, response, spider): + # Called for each response that goes through the spider + # middleware and into the spider. + + # Should return None or raise an exception. + return None + + def process_spider_output(self, response, result, spider): + # Called with the results returned from the Spider, after + # it has processed the response. + + # Must return an iterable of Request, or item objects. + for i in result: + yield i + + def process_spider_exception(self, response, exception, spider): + # Called when a spider or process_spider_input() method + # (from other spider middleware) raises an exception. + + # Should return either None or an iterable of Request or item objects. + pass + + def process_start_requests(self, start_requests, spider): + # Called with the start requests of the spider, and works + # similarly to the process_spider_output() method, except + # that it doesn’t have a response associated. + + # Must return only requests (not items). + for r in start_requests: + yield r + + def spider_opened(self, spider): + spider.logger.info("Spider opened: %s" % spider.name) + + +class QuantlunwenDownloaderMiddleware: + # Not all methods need to be defined. If a method is not defined, + # scrapy acts as if the downloader middleware does not modify the + # passed objects. + + @classmethod + def from_crawler(cls, crawler): + # This method is used by Scrapy to create your spiders. + s = cls() + crawler.signals.connect(s.spider_opened, signal=signals.spider_opened) + return s + + def process_request(self, request, spider): + # Called for each request that goes through the downloader + # middleware. + + # Must either: + # - return None: continue processing this request + # - or return a Response object + # - or return a Request object + # - or raise IgnoreRequest: process_exception() methods of + # installed downloader middleware will be called + return None + + def process_response(self, request, response, spider): + # Called with the response returned from the downloader. + + # Must either; + # - return a Response object + # - return a Request object + # - or raise IgnoreRequest + return response + + def process_exception(self, request, exception, spider): + # Called when a download handler or a process_request() + # (from other downloader middleware) raises an exception. + + # Must either: + # - return None: continue processing this exception + # - return a Response object: stops process_exception() chain + # - return a Request object: stops process_exception() chain + pass + + def spider_opened(self, spider): + spider.logger.info("Spider opened: %s" % spider.name) + +class MyUserAgentMiddleware(UserAgentMiddleware): + def __init__(self, user_agent): + self.user_agent = user_agent + + @classmethod + def from_crawler(cls, crawler): + return cls( + user_agent=crawler.settings.get('MY_USER_AGENT') + ) + + def process_request(self, request, spider): + agent = random.choice(self.user_agent) + request.headers['User-Agent'] = agent + + +class ProxyMiddleware(object): + def __init__(self, ip): + self.ip = ip + + @classmethod + def from_crawler(cls, crawler): + return cls(ip=crawler.settings.get('PROXY_URL')) + + def process_request(self, request, spider): + ip = random.choice(self.ip) + request.meta['proxy'] = ip + diff --git a/QuantSpider/quantlunwen/quantlunwen/pipelines.py b/QuantSpider/quantlunwen/quantlunwen/pipelines.py new file mode 100644 index 0000000..5b58b20 --- /dev/null +++ b/QuantSpider/quantlunwen/quantlunwen/pipelines.py @@ -0,0 +1,104 @@ +# Define your item pipelines here +# +# Don't forget to add your pipeline to the ITEM_PIPELINES setting +# See: https://docs.scrapy.org/en/latest/topics/item-pipeline.html +import os +import time + +# useful for handling different item types with a single interface +import mysql.connector +import mysql.connector +from mysql.connector import Error +from scrapy.exceptions import DropItem +from scrapy.http import Request +from scrapy.pipelines.images import ImagesPipeline + +from quantlunwen.settings import IMAGES_STORE + + +class AllocateSmartlyPipelines(object): + def __init__(self, host, user, password, database): + self.host = host + self.user = user + self.password = password + self.database = database + self.conn = None + self.cursor = None + + @classmethod + def from_crawler(cls, crawler): + # 从settings.py文件中获取MySQL配置信息 + return cls( + host=crawler.settings.get('MYSQL_HOST'), + user=crawler.settings.get('MYSQL_USER'), + password=crawler.settings.get('MYSQL_PASSWORD'), + database=crawler.settings.get('MYSQL_DATABASE'), + ) + + def open_spider(self, spider): + try: + self.conn = mysql.connector.connect( + host=self.host, + user=self.user, + password=self.password, + database=self.database + ) + self.cursor = self.conn.cursor() + except Error as e: + print(f"Error connecting to MySQL: {e}") + self.conn = None + + def close_spider(self, spider): + if self.conn: + self.conn.close() + + def process_item(self, item, spider): + if item.get('pipeline') == 'AllocateSmartlyPipelines': + # 处理 item 的逻辑 + nowtime = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime()) + + # 在这里编写将item保存到MySQL的代码 + body = item['description'] + '\n原文链接:' + item['href'] + sql = """ + INSERT INTO blog_article ( + created_time, last_mod_time, title, body, pub_time, status, + comment_status, type, views, article_order, show_toc, + author_id, category_id + ) VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s) + """ + values = ( + nowtime, nowtime, item['title'], body, nowtime, 'p', 'o', 'a', + 0, 0, 0, '1', 5 + ) + + try: + self.cursor.execute(sql, values) + self.conn.commit() + except Error as e: + print(f"Error inserting item into MySQL: {e}") + raise DropItem(f"Error inserting item into MySQL: {e}") + + return item + else: + return item # 如果不处理,传递给下一个 pipeline + + +class ImgsPipLine(ImagesPipeline): + + def get_media_requests(self, item, info): + if item.get('pipeline') == 'ImgsPipLine': + item['image_paths'] = '/static/' + yield Request(url=item['image_urls']) + else: + return item + + def item_completed(self, results, item, info): + # 检查下载结果,并将文件路径添加到 item 中 + file_paths = [x['path'] for ok, x in results if ok] + if not file_paths: + raise DropItem("Item contains no files") + item['image_paths'] = file_paths + # 替换原文中的图片地址为本地路径 + for image_url, image_path in zip(item['image_urls'], item['images']): + item['description'] = item['description'].replace(image_url, os.path.join(IMAGES_STORE, image_path)) + return item diff --git a/QuantSpider/quantlunwen/quantlunwen/settings.py b/QuantSpider/quantlunwen/quantlunwen/settings.py new file mode 100644 index 0000000..43c79d7 --- /dev/null +++ b/QuantSpider/quantlunwen/quantlunwen/settings.py @@ -0,0 +1,123 @@ +# Scrapy settings for quantlunwen project +# +# For simplicity, this file contains only settings considered important or +# commonly used. You can find more settings consulting the documentation: +# +# https://docs.scrapy.org/en/latest/topics/settings.html +# https://docs.scrapy.org/en/latest/topics/downloader-middleware.html +# https://docs.scrapy.org/en/latest/topics/spider-middleware.html + +BOT_NAME = "quantlunwen" + +SPIDER_MODULES = ["quantlunwen.spiders"] +NEWSPIDER_MODULE = "quantlunwen.spiders" + +# Crawl responsibly by identifying yourself (and your website) on the user-agent +MY_USER_AGENT = [ + "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36 Edg/125.0.0.0", + 'MSIE (MSIE 6.0; X11; Linux; i686) Opera 7.23', + 'iTunes/9.0.3 (Macintosh; U; Intel Mac OS X 10_6_2; en-ca)', + 'Opera/9.20 (Macintosh; Intel Mac OS X; U; en)', + 'Opera/9.0 (Macintosh; PPC Mac OS X; U; en)', + 'Mozilla/4.76 [en_jp] (X11; U; SunOS 5.8 sun4u)', + 'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.0.8) Gecko Fedora/1.9.0.8-1.fc10 Kazehakase/0.5.6', + 'Mozilla/5.0 (X11; Linux i686; U;) Gecko/20070322 Kazehakase/0.4.5', + 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.71 Safari/537.1 LBBROWSER', + 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)', + 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11', + 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/23.0.1271.64 Safari/537.11', + 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; QQDownload 732; .NET4.0C; .NET4.0E)', + 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11', + 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; SV1; QQDownload 732; .NET4.0C; .NET4.0E; 360SE)', + 'Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.30)', + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_3) AppleWebKit/535.20 (KHTML, like Gecko) Chrome/19.0.1036.7 Safari/535.20', + 'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.0.8) Gecko Fedora/1.9.0.8-1.fc10 Kazehakase/0.5.6', + 'Mozilla/5.0 (X11; U; Linux x86_64; zh-CN; rv:1.9.2.10) Gecko/20100922 Ubuntu/10.10 (maverick) Firefox/3.6.10', + 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.71 Safari/537.1 LBBROWSER', + 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1', + 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Acoo Browser; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506)', + 'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.12) Gecko/20070731 Ubuntu/dapper-security Firefox/1.5.0.12', + 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; QQDownload 732; .NET4.0C; .NET4.0E; LBBROWSER)', + 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1', + 'Mozilla/4.8 [en] (X11; U; SunOS; 5.7 sun4u)' +] +# Obey robots.txt rules +ROBOTSTXT_OBEY = False + +# Configure maximum concurrent requests performed by Scrapy (default: 16) +# CONCURRENT_REQUESTS = 32 + +# Configure a delay for requests for the same website (default: 0) +# See https://docs.scrapy.org/en/latest/topics/settings.html#download-delay +# See also autothrottle settings and docs +# DOWNLOAD_DELAY = 3 +# The download delay setting will honor only one of: +# CONCURRENT_REQUESTS_PER_DOMAIN = 16 +# CONCURRENT_REQUESTS_PER_IP = 16 + +# Disable cookies (enabled by default) +# COOKIES_ENABLED = False + +# Disable Telnet Console (enabled by default) +# TELNETCONSOLE_ENABLED = False + +# Override the default request headers: +DEFAULT_REQUEST_HEADERS = { + "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", + "Accept-Language": "en", +} + +# Enable or disable spider middlewares +# See https://docs.scrapy.org/en/latest/topics/spider-middleware.html +# SPIDER_MIDDLEWARES = { +# "quantlunwen.middlewares.QuantlunwenSpiderMiddleware": 543, +# } + +# Enable or disable downloader middlewares +# See https://docs.scrapy.org/en/latest/topics/downloader-middleware.html +DOWNLOADER_MIDDLEWARES = { + 'scrapy.downloadermiddleware.useragent.UserAgentMiddleware': None, + "quantlunwen.middlewares.QuantlunwenDownloaderMiddleware": 543, + # 'quantlunwen.middlewares.ProxyMiddleware': 600, + 'quantlunwen.middlewares.MyUserAgentMiddleware': 300, +} + + +# Enable or disable extensions +# See https://docs.scrapy.org/en/latest/topics/extensions.html +# EXTENSIONS = { +# "scrapy.extensions.telnet.TelnetConsole": None, +# } + +# Configure item pipelines +# See https://docs.scrapy.org/en/latest/topics/item-pipeline.html +ITEM_PIPELINES = { + # "quantlunwen.pipelines.QuantlunwenPipeline": 400, + "quantlunwen.pipelines.AllocateSmartlyPipelines": 410, + "quantlunwen.pipelines.ImgsPipLine": 420, +} + +# 图片保存路径 +IMAGES_STORE = r'../../static/images' +# 过期天数 +IMAGES_EXPIRES = 90 #90天内抓取的都不会被重抓 + +# Enable and configure the AutoThrottle extension (disabled by default) +# See https://docs.scrapy.org/en/latest/topics/autothrottle.html +# AUTOTHROTTLE_ENABLED = True +# The initial download delay +# AUTOTHROTTLE_START_DELAY = 5 +# The maximum download delay to be + + +# Set settings whose default value is deprecated to a future-proof value +REQUEST_FINGERPRINTER_IMPLEMENTATION = "2.7" +TWISTED_REACTOR = "twisted.internet.asyncioreactor.AsyncioSelectorReactor" +FEED_EXPORT_ENCODING = "utf-8" + +DEBUG = 'DEBUG' + +MYSQL_HOST = '127.0.0.1' +MYSQL_USER = 'root' +MYSQL_PASSWORD = 'root' +MYSQL_DATABASE = 'djangoblog' \ No newline at end of file diff --git a/QuantSpider/quantlunwen/quantlunwen/spiders/__init__.py b/QuantSpider/quantlunwen/quantlunwen/spiders/__init__.py new file mode 100644 index 0000000..ebd689a --- /dev/null +++ b/QuantSpider/quantlunwen/quantlunwen/spiders/__init__.py @@ -0,0 +1,4 @@ +# This package will contain the spiders of your Scrapy project +# +# Please refer to the documentation for information on how to create and manage +# your spiders. diff --git a/QuantSpider/quantlunwen/quantlunwen/spiders/title.py b/QuantSpider/quantlunwen/quantlunwen/spiders/title.py new file mode 100644 index 0000000..f2a3354 --- /dev/null +++ b/QuantSpider/quantlunwen/quantlunwen/spiders/title.py @@ -0,0 +1,118 @@ +import random +import urllib + +import scrapy +from quantlunwen.items import QuantlunwenItem +from scrapy import Request +from quantlunwen.items import ImgproItem + +class TitleSpider(scrapy.Spider): + name = 'title' + start_urls = [ + 'https://quantocracy.com/', + ] + + ishome = True + + xpathchoices = { + 'quantocracy.com': '//*[@id="qo-mashup"]/div[4]/div', + 'www.quantocracy.com': '//*[@id="qo-mashup"]/div[4]/div', + 'allocatesmartly.com': '//*[@id="genesis-content"]/article/div', + 'www.alphaarchitect.com ': '/html/body/div[1]/div/main/div/section/div/div/div[2]/div/div/div/div/div/div/div[2]', + 'alphaarchitect.com': '/html/body/div[1]/div/main/div/section/div/div/div[2]/div/div/div/div/div/div/div[2]', + 'dekalogblog.blogspot.com': '/html/body/div[3]/div[2]/div[2]/div[2]/div[2]/div[2]/div[2]/div/div[4]/div[1]', + 'dilequante.com': '/html/body/div[1]/div/div/div/div/div[1]/main/div/div/article/div/div[2]', + 'financial-hacker.com': '/html/body/div/div/div/div/main/article/div[2]', + 'gmarti.gitlab.io': '/html/body/div[4]/div/article', + 'hangukquant.substack.com': '/html/body/div/div[1]/div[2]/div/div[1]/div/article/div[5]/div[1]/div', + 'insights.finominal.com': '//*[@id="__next"]/div[2]/div[2]/div[1]/div[1]/div/div[2]', + 'investingforaliving.us': '/html/body/div[1]/div[2]/div/div/article/div/div/div[1]', + 'investresolve.com': '/html/body/div[1]/div[1]/div[2]/div/div/div/div/article/div[1]/div/div', + 'jonathankinlay.com': '/html/body/div[1]/div[2]/div/div/div/main/article', + 'markrbest.github.io': '/html/body/div[2]/div[3]/article', + 'portfoliooptimizer.io': '/html/body/div[2]/div/article/div', + 'pyquantnews.com': '/html/body/div[2]/section[2]/div/div[1]/div/div/div', + 'quantifiableedges.com': '/html/body/div/div[2]/div/div[1]/div/div[1]/article', + 'quantpedia.com': '/html/body/section[1]/div/div/div[1]', + 'research.macrosynergy.com': '', + 'robotwealth.com': '/html/body/div[2]/div/div[1]/main/article/div/div[2]/div/div[1]/div', + 'www.capitalspectator.com': '//article', + 'www.optionstocksmachines.com': '/html/body/div[2]/div/div/main/article/div[1]', + 'www.quantrocket.com': '/html/body/div[2]/div/div[2]/div[1]', + 'www.financial-hacker.com':'/html/body/div/div/div/div/main/article', + 'www.investresolve.com':'/html/body/div[1]/div[1]/div[2]/div/div/div/div/article/div[1]/div/div', + } + + allowed_domains = xpathchoices.keys() + + def parse(self, response): + ''' + 解析首页列表数据,获取标题、描述、原文链接 + :param response: + :return: + ''' + i = 1 + for sel in response.xpath('//*[@class="qo-entry "]/div'): + print('第%s篇文章'%i) + # if i > 5: + # return None + item = QuantlunwenItem() + item['title'] = ' '.join(sel.xpath('a/text()').extract()) + item['description'] = ','.join(sel.xpath('div[1]/text()').extract()) # 文章内容使用简介 + url = ''.join(sel.xpath('a/@href').extract()) + item['href'] = url + if len(url) > 0 : + yield Request(url, callback=self.articlecontentparse, meta={'item': item}) + else: + yield None + i += 1 + + # 只有第一次获取首页,其他的获取分页 + if self.ishome: + page_nums = int(response.xpath('//*[@id="qo-mashup"]/ul/li[6]/a/text()').extract()[0]) + print(page_nums) + for n in range(0, page_nums): + i = page_nums - n + if i > 1: + url = response.url + '?pg=' + str(i) + print(url) + yield Request(url, callback=self.parse) + self.ishome = False + + + def articlecontentparse(self, response): + ''' + 获取文章内容 + :param response: + :return: + ''' + item = response.meta['item'] + imageitem = ImgproItem() + + domain_name = urllib.parse.urlparse(item['href']).netloc + print(item['href']) + + # 根据不同的源获取文章内容 + if domain_name in self.xpathchoices.keys(): + xpath = self.xpathchoices[domain_name] + description = response.xpath(xpath) + # 提取文章内图片链接 + imageitem['image_urls'] = description.xpath('//img/@src').extract() + image_urls = [url for url in imageitem['image_urls'] if url.startswith('http')] + imageitem['pipeline'] = 'ImgsPipLine' + for imageurl in image_urls: + imageitem['image_urls'] = imageurl + imageitem['images'] = imageurl.split('/')[-1] + print(imageitem) + yield imageitem + # print(imageitem) + # yield imageitem + # 替换文章内容 + description = ''.join(description.extract()) + import html2text + description = html2text.html2text(description) + item['description'] = description + item['pipeline'] = 'AllocateSmartlyPipelines' + else: + print(domain_name,'没有收录',item['href']) + yield item diff --git a/QuantSpider/quantlunwen/scrapy.cfg b/QuantSpider/quantlunwen/scrapy.cfg new file mode 100644 index 0000000..4f629e8 --- /dev/null +++ b/QuantSpider/quantlunwen/scrapy.cfg @@ -0,0 +1,12 @@ +# Automatically created by: scrapy startproject +# +# For more information about the [deploy] section see: +# https://scrapyd.readthedocs.io/en/latest/deploy.html + +[settings] +default = quantlunwen.settings +http_proxy = http://your-proxy:8080 + +[deploy] +#url = http://localhost:6800/ +project = quantlunwen diff --git a/QuantSpider/quantlunwen/static/images/full/289b875eed550609ed02de2147116e7227fc9355.jpg b/QuantSpider/quantlunwen/static/images/full/289b875eed550609ed02de2147116e7227fc9355.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b3adfa11b3caa3cafa81b1d09494887673789fbd GIT binary patch literal 10763 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 literal 0 HcmV?d00001 diff --git a/QuantSpider/quantlunwen/static/images/full/5daa5045a7612834bba810660d287123427c69d6.jpg b/QuantSpider/quantlunwen/static/images/full/5daa5045a7612834bba810660d287123427c69d6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1cdcbe238e55557725229ec442bd19230256e8cb GIT binary patch literal 3419 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 BJYE0* literal 0 HcmV?d00001 diff --git a/QuantSpider/quantlunwen/static/images/full/9dea4bb0c9c6d4db4a4bd4215510d8d2f081aa16.jpg b/QuantSpider/quantlunwen/static/images/full/9dea4bb0c9c6d4db4a4bd4215510d8d2f081aa16.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d8dedb3d5ac61d4a197674464bc728c0e976a0b7 GIT binary patch literal 1967 zcmbW!cU03^76+DR^X|Fle$L~LaHj!bYl{mO00;yC zprZn~AOr$|03Hz# zSOmmv2IP+R*pVmlpy#>b`UI4nRbBMdfwP zpkkNZVG04_=%}P@xT1M^gM@wGijtnkt!MVox^s}7D%&e!ms*S)-beEn_&1_g)Q4h;*x_v=6IKZtoqNv5XIQXfBgN`IDCqXaB(9`=Q~H(J>aAGc!9kzwmK!_3PUD#^%=c&h9rC z2mt@hI=cUc{fA5B$i)MJfFZDNE)dV{qXQO!@XG5#Ma?e5+ylfE&{1%4^Q7$Z285!X z{fdOgtv)_UC4H9i>Nnb7vi}Yi{eQ{+1^c&a3_yZGN1q240dTY;-Kedzl<&kg8SICOa^j}PV$MU+}R7(FB>6=HZtz1cCaNp>5ez%gE?;6gMr9$-Z;g&rR<`!!37j*&8BgJE5Fq19qy6i zg0G|{*EHejzm~+^D;yE5P9#q?*kUs1n8|T2Fx7C4(_kw1!_I>OwyjYeDoZ1CJGE)Y zk^WSY;CRp5tYf|C=TcAAE_O|MklE6eoyFA?b9KWH3%z;*gALNcgg+Z!%6_3r%Mb{k zmABhdHV&AqWw)4}>aXcJ9~t+Pt@MhO=Yik5k^LTId^Rd23+ubfOlqD9nvLufAwT!BvAlTgoE>36HP+2v-2l?%LDJaWt%$(2jt0+<}nRq~}lp0>g!W$K9%)1dt}T;5NE*%yaQy3f_jjbUM-w9uks=W=3^ zbgzsYA{kC^os;6=T4ccX9qLR?WI70%(`|(3swHm%h$qoHJB&TV9wh3He#*cx3j$L$(TF_Gf#n5S~5#l!#jR=Db>(Og1JyjYt7%H*HQT`t33qX zf{-xP(%`D3SED(stF;Mw@qrX}*|I;W?$VjO0(IdXEp0`V5UMR8bJi7aaNR4UQfl>t z*WkW@#QF{Mr+qP4r)W6NoY;!efxFQ@yP>~oAIiGAjAuDNwRaKva?IrrOKcjyOXQ<; zGu|My%KWwF#PCcl(HE9+l+6CuZ)Disc|KKGNBJ-~r`tvAE?My~tc(wr5V&-TK_kXWdkLZ$=O&+TRPN;GZ^7y%No8G zdCGTsKYs{!0C*QK3_H^2GEyI_i3VS;h~E#EW4ZE^9QvqVCki8SI}l`(1Olk+6{#Y76l4SuQIL&-15i*RA_+1?p(sO! z5D^lUI#@D9;6lQzpb&8&Pz7XpmZu#+-py^2S6YI z00|1<{|49qaA9GXFcc1h!4L?zh!|2_OjJ}%UV6I(QUR@`sDQ>`l(Bj^WmO$D3`Uc* zQ^&xNNF*xZO!t`Jck2;|_^lxz1Og!@Dkdi`E{9jasNnx|_$`1G98d&KfkCQ(kQ4|k z1>$!AN`gJ1pzi_x3`htJfeORm2oX_115*+Z0)fFo5HJ)9fe5-!3*G^U6jWNp&`Nl_ zOAt&o8i`M(-Gr-IH?*Q$*`Kh4;FvUoh>Wb9JX&1?r@2#$Xk<(>F*UQXwX=6{B=2=| z_we-c_VJ~J911-gb|gGDEbFb#*7ZhGAx>Z(QQF*(ny5?SE z6O(oS!NcaZ_Ks(rUEMv;2RYoK;gQj?@u_Lvo0+%o-hY_=ytuUdWo313ePhc70>D35 zg8K*TA1*0@O9%o1LttAjkWixFfTbW%6+>ZZD;HQ$^mbKzDjaD|yV=l+P$Rg0LIuaL zMP#tVDfQ1=wC}Qi2TS{3vcF(|yT$=AFi7xuU@5=?Slu{A$GSAp4Qwrau4Mz@Y9r_- zXKZ}Eq4S<8-DJpTCC#TT>jox%`A%5V$*Ycs*>RUL5Bgy79RY0cFAEa=6=E=JQ5*Y8)yunFDw|cYw7fkPG${}7fBs|6)|?z zoy$ygpx8yTo~V@!ew!t6-MpJJ*!AeJG7rO?GYeklik`|mS}iEDIY~;OO^}tnC%jf` zBqg1rOnHiV!{KppUL?x&8l#AVj^`dpd>lxl&L{fKBz>irGY_|;A5S(=h$9Kp8suxp zG=mn!VrSJ9N z==U{+tc@nt@S?MEZc>A7`ow+fD4@sUqxSws-*go>hQA(sTJY1)+BnYbY;`xK1~B|I z?89)ggiJWeES{OldL)x}w1Y~f)@&Oy`#ZXkM--%q; z3r@r4162-*D>f3jr!iWfmo0eO^IzH+6SK|rG~Lbgp>aP)9c(k}p%f&rw?t&woN15q zw~LvS<-XyDTrMB^Hm0AW=oHYXbqpuJo+96BQeT;(74Es@H#V1|l6Qz|i488Di$4|u z&MwKjaA@CT(_ApzpOuQ@djNH-MATgK%b#Nm}I^$-Ig@a#s@-}gUVk+`M}(V68}lh z-F+Q5;(3h6{_LiLLFu zshm~_OOrUmWV={m`nY2p{pkQ!AC@&}pSiND#Jjp{vb$~{#nC@t&Z+{=8X-rySH7N# zUHrl`t<%y3>-(~EJ=vig3N0evx*Xq?W6-kPy8$`fl& om0;{ST6!x*d(?OH(tcLctEb(WY7<$J<3RtexLTx(r4oPa5A)rq3jhEB literal 0 HcmV?d00001