├── .gitignore ├── LICENSE ├── README.md ├── beautifulsoup4-4.3.2 ├── AUTHORS.txt ├── COPYING.txt ├── NEWS.txt ├── PKG-INFO ├── README.txt ├── TODO.txt ├── bs4 │ ├── __init__.py │ ├── builder │ │ ├── __init__.py │ │ ├── _html5lib.py │ │ ├── _htmlparser.py │ │ └── _lxml.py │ ├── dammit.py │ ├── diagnose.py │ ├── element.py │ ├── testing.py │ └── tests │ │ ├── __init__.py │ │ ├── test_builder_registry.py │ │ ├── test_docs.py │ │ ├── test_html5lib.py │ │ ├── test_htmlparser.py │ │ ├── test_lxml.py │ │ ├── test_soup.py │ │ └── test_tree.py ├── doc │ ├── Makefile │ └── source │ │ ├── 6.1.jpg │ │ ├── conf.py │ │ └── index.rst ├── scripts │ ├── demonstrate_parser_differences.py │ └── demonstration_markup.txt └── setup.py ├── config.yaml ├── index.wsgi ├── myapp.py ├── spider ├── __init__.py ├── games.py ├── news.py └── statistics.py ├── sqlutils ├── __init__.py └── basesqlutil.py └── util ├── __init__.py └── api.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceDut/nbaplus-server/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceDut/nbaplus-server/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceDut/nbaplus-server/HEAD/README.md -------------------------------------------------------------------------------- /beautifulsoup4-4.3.2/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceDut/nbaplus-server/HEAD/beautifulsoup4-4.3.2/AUTHORS.txt -------------------------------------------------------------------------------- /beautifulsoup4-4.3.2/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceDut/nbaplus-server/HEAD/beautifulsoup4-4.3.2/COPYING.txt -------------------------------------------------------------------------------- /beautifulsoup4-4.3.2/NEWS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceDut/nbaplus-server/HEAD/beautifulsoup4-4.3.2/NEWS.txt -------------------------------------------------------------------------------- /beautifulsoup4-4.3.2/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceDut/nbaplus-server/HEAD/beautifulsoup4-4.3.2/PKG-INFO -------------------------------------------------------------------------------- /beautifulsoup4-4.3.2/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceDut/nbaplus-server/HEAD/beautifulsoup4-4.3.2/README.txt -------------------------------------------------------------------------------- /beautifulsoup4-4.3.2/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceDut/nbaplus-server/HEAD/beautifulsoup4-4.3.2/TODO.txt -------------------------------------------------------------------------------- /beautifulsoup4-4.3.2/bs4/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceDut/nbaplus-server/HEAD/beautifulsoup4-4.3.2/bs4/__init__.py -------------------------------------------------------------------------------- /beautifulsoup4-4.3.2/bs4/builder/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceDut/nbaplus-server/HEAD/beautifulsoup4-4.3.2/bs4/builder/__init__.py -------------------------------------------------------------------------------- /beautifulsoup4-4.3.2/bs4/builder/_html5lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceDut/nbaplus-server/HEAD/beautifulsoup4-4.3.2/bs4/builder/_html5lib.py -------------------------------------------------------------------------------- /beautifulsoup4-4.3.2/bs4/builder/_htmlparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceDut/nbaplus-server/HEAD/beautifulsoup4-4.3.2/bs4/builder/_htmlparser.py -------------------------------------------------------------------------------- /beautifulsoup4-4.3.2/bs4/builder/_lxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceDut/nbaplus-server/HEAD/beautifulsoup4-4.3.2/bs4/builder/_lxml.py -------------------------------------------------------------------------------- /beautifulsoup4-4.3.2/bs4/dammit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceDut/nbaplus-server/HEAD/beautifulsoup4-4.3.2/bs4/dammit.py -------------------------------------------------------------------------------- /beautifulsoup4-4.3.2/bs4/diagnose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceDut/nbaplus-server/HEAD/beautifulsoup4-4.3.2/bs4/diagnose.py -------------------------------------------------------------------------------- /beautifulsoup4-4.3.2/bs4/element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceDut/nbaplus-server/HEAD/beautifulsoup4-4.3.2/bs4/element.py -------------------------------------------------------------------------------- /beautifulsoup4-4.3.2/bs4/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceDut/nbaplus-server/HEAD/beautifulsoup4-4.3.2/bs4/testing.py -------------------------------------------------------------------------------- /beautifulsoup4-4.3.2/bs4/tests/__init__.py: -------------------------------------------------------------------------------- 1 | "The beautifulsoup tests." 2 | -------------------------------------------------------------------------------- /beautifulsoup4-4.3.2/bs4/tests/test_builder_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceDut/nbaplus-server/HEAD/beautifulsoup4-4.3.2/bs4/tests/test_builder_registry.py -------------------------------------------------------------------------------- /beautifulsoup4-4.3.2/bs4/tests/test_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceDut/nbaplus-server/HEAD/beautifulsoup4-4.3.2/bs4/tests/test_docs.py -------------------------------------------------------------------------------- /beautifulsoup4-4.3.2/bs4/tests/test_html5lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceDut/nbaplus-server/HEAD/beautifulsoup4-4.3.2/bs4/tests/test_html5lib.py -------------------------------------------------------------------------------- /beautifulsoup4-4.3.2/bs4/tests/test_htmlparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceDut/nbaplus-server/HEAD/beautifulsoup4-4.3.2/bs4/tests/test_htmlparser.py -------------------------------------------------------------------------------- /beautifulsoup4-4.3.2/bs4/tests/test_lxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceDut/nbaplus-server/HEAD/beautifulsoup4-4.3.2/bs4/tests/test_lxml.py -------------------------------------------------------------------------------- /beautifulsoup4-4.3.2/bs4/tests/test_soup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceDut/nbaplus-server/HEAD/beautifulsoup4-4.3.2/bs4/tests/test_soup.py -------------------------------------------------------------------------------- /beautifulsoup4-4.3.2/bs4/tests/test_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceDut/nbaplus-server/HEAD/beautifulsoup4-4.3.2/bs4/tests/test_tree.py -------------------------------------------------------------------------------- /beautifulsoup4-4.3.2/doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceDut/nbaplus-server/HEAD/beautifulsoup4-4.3.2/doc/Makefile -------------------------------------------------------------------------------- /beautifulsoup4-4.3.2/doc/source/6.1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceDut/nbaplus-server/HEAD/beautifulsoup4-4.3.2/doc/source/6.1.jpg -------------------------------------------------------------------------------- /beautifulsoup4-4.3.2/doc/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceDut/nbaplus-server/HEAD/beautifulsoup4-4.3.2/doc/source/conf.py -------------------------------------------------------------------------------- /beautifulsoup4-4.3.2/doc/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceDut/nbaplus-server/HEAD/beautifulsoup4-4.3.2/doc/source/index.rst -------------------------------------------------------------------------------- /beautifulsoup4-4.3.2/scripts/demonstrate_parser_differences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceDut/nbaplus-server/HEAD/beautifulsoup4-4.3.2/scripts/demonstrate_parser_differences.py -------------------------------------------------------------------------------- /beautifulsoup4-4.3.2/scripts/demonstration_markup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceDut/nbaplus-server/HEAD/beautifulsoup4-4.3.2/scripts/demonstration_markup.txt -------------------------------------------------------------------------------- /beautifulsoup4-4.3.2/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceDut/nbaplus-server/HEAD/beautifulsoup4-4.3.2/setup.py -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceDut/nbaplus-server/HEAD/config.yaml -------------------------------------------------------------------------------- /index.wsgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceDut/nbaplus-server/HEAD/index.wsgi -------------------------------------------------------------------------------- /myapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceDut/nbaplus-server/HEAD/myapp.py -------------------------------------------------------------------------------- /spider/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | __author__ = 'silencedut' 3 | -------------------------------------------------------------------------------- /spider/games.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceDut/nbaplus-server/HEAD/spider/games.py -------------------------------------------------------------------------------- /spider/news.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceDut/nbaplus-server/HEAD/spider/news.py -------------------------------------------------------------------------------- /spider/statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceDut/nbaplus-server/HEAD/spider/statistics.py -------------------------------------------------------------------------------- /sqlutils/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'silencedut' 2 | -------------------------------------------------------------------------------- /sqlutils/basesqlutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceDut/nbaplus-server/HEAD/sqlutils/basesqlutil.py -------------------------------------------------------------------------------- /util/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'silencedut' 2 | -------------------------------------------------------------------------------- /util/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceDut/nbaplus-server/HEAD/util/api.py --------------------------------------------------------------------------------