fa45d8aa5f
- health_checklist.json: 192.168.1.122→node122
- ocr_client.py: docstring IP→node122
- docs/market-data-requirements.md: IP→node122
- 所有API调用通过ProxyHandler({})绕过系统代理
Privoxy对node122:18003返回500,直连正常
30 lines
811 B
Python
30 lines
811 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
Wherever smart people work, doors are unlocked. -- Steve Wozniak
|
|
"""
|
|
__title__ = 'newspaper'
|
|
__author__ = 'Lucas Ou-Yang'
|
|
__license__ = 'MIT'
|
|
__copyright__ = 'Copyright 2014, Lucas Ou-Yang'
|
|
|
|
from .api import (build, build_article, fulltext, hot, languages,
|
|
popular_urls, Configuration as Config)
|
|
from .article import Article, ArticleException
|
|
from .mthreading import NewsPool
|
|
from .source import Source
|
|
from .version import __version__
|
|
|
|
news_pool = NewsPool()
|
|
|
|
# Set default logging handler to avoid "No handler found" warnings.
|
|
import logging
|
|
|
|
try: # Python 2.7+
|
|
from logging import NullHandler
|
|
except ImportError:
|
|
class NullHandler(logging.Handler):
|
|
def emit(self, record):
|
|
pass
|
|
|
|
logging.getLogger(__name__).addHandler(NullHandler())
|