All Projects → lemonhu → finance-qa-spider

lemonhu / finance-qa-spider

Licence: other
金融问答平台文本数据采集/爬取,数据源涉及上交所,深交所,全景网及新浪股吧

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to finance-qa-spider

Finance-Robinhood
Trade stocks and ETFs with free brokerage Robinhood and Perl
Stars: ✭ 42 (+27.27%)
Mutual labels:  finance
QuoraBooks
A GitHub repo for Quant Finance resources
Stars: ✭ 17 (-48.48%)
Mutual labels:  finance
HTML-Crypto-Currency-Chart-Snippets
💹 Simple HTML Snippets to create Tickers / Charts of Cryptocurrencies with the TradingView API 💹
Stars: ✭ 89 (+169.7%)
Mutual labels:  finance
iPerceive
Applying Common-Sense Reasoning to Multi-Modal Dense Video Captioning and Video Question Answering | Python3 | PyTorch | CNNs | Causality | Reasoning | LSTMs | Transformers | Multi-Head Self Attention | Published in IEEE Winter Conference on Applications of Computer Vision (WACV) 2021
Stars: ✭ 52 (+57.58%)
Mutual labels:  question-answering
trading-gmbh
Gründung einer vermögensverwaltenden GmbH
Stars: ✭ 34 (+3.03%)
Mutual labels:  finance
prestans
A WSGI compliant REST micro-framework.
Stars: ✭ 14 (-57.58%)
Mutual labels:  deprecated-repo
patrick-wechat
⭐️🐟 questionnaire wechat app built with taro, taro-ui and heart. 微信问卷小程序
Stars: ✭ 74 (+124.24%)
Mutual labels:  question-answering
prickle
A Python toolkit for high-frequency trade research.
Stars: ✭ 32 (-3.03%)
Mutual labels:  finance
effective-interest-rate
Calculate effective interest, XIRR or effective APR.
Stars: ✭ 20 (-39.39%)
Mutual labels:  finance
denspi
Real-Time Open-Domain Question Answering with Dense-Sparse Phrase Index (DenSPI)
Stars: ✭ 188 (+469.7%)
Mutual labels:  question-answering
dados-financeiros
Repositório de Fontes de Dados Financeiros do Brasil
Stars: ✭ 119 (+260.61%)
Mutual labels:  finance
GAR
Code and resources for papers "Generation-Augmented Retrieval for Open-Domain Question Answering" and "Reader-Guided Passage Reranking for Open-Domain Question Answering", ACL 2021
Stars: ✭ 38 (+15.15%)
Mutual labels:  question-answering
QA4IE
Original implementation of QA4IE
Stars: ✭ 24 (-27.27%)
Mutual labels:  question-answering
Chinese financial sentiment dictionary
A Chinese financial sentiment word dictionary
Stars: ✭ 67 (+103.03%)
Mutual labels:  finance
bittrex
A R Client for the Bittrex Crypto-Currency Exchange
Stars: ✭ 26 (-21.21%)
Mutual labels:  finance
tellerbot
Telegram Bot for over-the-counter trading
Stars: ✭ 17 (-48.48%)
Mutual labels:  finance
okama
Investment portfolio and stocks analyzing tools for Python with free historical data
Stars: ✭ 87 (+163.64%)
Mutual labels:  finance
PersianQA
Persian (Farsi) Question Answering Dataset (+ Models)
Stars: ✭ 114 (+245.45%)
Mutual labels:  question-answering
FinanceCenter
Fetching Financial Data (US/China)
Stars: ✭ 26 (-21.21%)
Mutual labels:  finance
brapi
API ilimitada da Bovespa, moedas e crypto. Ganhe acesso aos dados de qualquer ação, moeda ou criptomoeda
Stars: ✭ 36 (+9.09%)
Mutual labels:  finance

基于Scrapy框架的金融问答文本数据库建设


开发语言

Python

开发平台

Eclipse+Pydev

数据来源

  1. 上交所官方平台的问答系统
    http://sns.sseinfo.com/qa.do

  2. 深交所官方平台的问答系统
    http://irm.cninfo.com.cn/szse/index.html  

  3. 全景网投资者关系互动平台
    http://rs.p5w.net/index/company/showQuestionPage.shtml  

  4. 新浪股吧
    http://guba.sina.com.cn/?s=channel&chi

数据库表shse_qa

mysql> CREATE TABLE IF NOT EXISTS `shse_qa`(
    -> `current_time` TIMESTAMP NOT NULL,
    -> `user_name` VARCHAR(100) NOT NULL,
    -> `company_name` VARCHAR(100) NOT NULL,
    -> `company_id` int(20) NOT NULL,
    -> `question_time` VARCHAR(100) NOT NULL,
    -> `question_content` text NOT NULL,
    -> `answer_time` VARCHAR(100),
    -> `answer_content` text
    -> )ENGINE=InnoDB DEFAULT CHARSET=utf8;
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].