├── .gitignore ├── README.md ├── android ├── ActivityLifeCycleTest │ ├── .gitignore │ ├── .gradle │ │ ├── 4.10.1 │ │ │ ├── fileChanges │ │ │ │ └── last-build.bin │ │ │ ├── fileHashes │ │ │ │ ├── fileHashes.bin │ │ │ │ └── fileHashes.lock │ │ │ └── gc.properties │ │ └── vcs-1 │ │ │ └── gc.properties │ ├── ActivityLifeCycleTest.iml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── activitylifecycletest │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── activitylifecycletest │ │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ └── activity_main.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── activitylifecycletest │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── local.properties │ └── settings.gradle ├── EUREKA │ ├── .gitignore │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── eureka │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── eureka │ │ │ │ │ ├── Fruit.java │ │ │ │ │ ├── FruitAdapter.java │ │ │ │ │ ├── LoginActivity.java │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ ├── advanceed_search_page.java │ │ │ │ │ └── search_page.java │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable-xhdpi │ │ │ │ ├── img_1.jpg │ │ │ │ └── img_2.png │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_advanceed_search_page.xml │ │ │ │ ├── activity_login.xml │ │ │ │ ├── activity_main.xml │ │ │ │ ├── activity_search_page.xml │ │ │ │ ├── fruit_item.xml │ │ │ │ └── title.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── eureka │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── HelloWorldActivity │ ├── .gitignore │ ├── .gradle │ │ ├── 4.10.1 │ │ │ ├── fileChanges │ │ │ │ └── last-build.bin │ │ │ ├── fileContent │ │ │ │ └── fileContent.lock │ │ │ ├── fileHashes │ │ │ │ ├── fileHashes.bin │ │ │ │ ├── fileHashes.lock │ │ │ │ └── resourceHashesCache.bin │ │ │ ├── gc.properties │ │ │ ├── javaCompile │ │ │ │ ├── classAnalysis.bin │ │ │ │ ├── javaCompile.lock │ │ │ │ └── taskHistory.bin │ │ │ └── taskHistory │ │ │ │ ├── taskHistory.bin │ │ │ │ └── taskHistory.lock │ │ ├── buildOutputCleanup │ │ │ ├── buildOutputCleanup.lock │ │ │ ├── cache.properties │ │ │ └── outputFiles.bin │ │ └── vcs-1 │ │ │ └── gc.properties │ ├── HelloWorldActivity.iml │ ├── android │ │ └── support │ │ │ └── v7 │ │ │ └── widget │ │ │ └── annotations.xml │ ├── app │ │ ├── .gitignore │ │ ├── app.iml │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── helloworldactivity │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── helloworldactivity │ │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ └── activity_main.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── helloworldactivity │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── local.properties │ └── settings.gradle └── README.md ├── crawler ├── ABCDI 语料网站列表.md ├── README.md ├── baidubaike.ipynb ├── companies_baidubaike │ ├── companies_baidubaike.txt │ └── json_folder │ │ ├── 15388208.json │ │ ├── 19460372.json │ │ ├── 20260339.json │ │ ├── 3868959.json │ │ ├── 4671834.json │ │ ├── 51信用卡.json │ │ ├── 8543755.json │ │ ├── Affirm.json │ │ ├── Atom%20Bank.json │ │ ├── Klarna.json │ │ ├── Lendingkart.json │ │ ├── Number26.json │ │ ├── Oscar%20Health.json │ │ ├── OurCrowd.json │ │ ├── Quoine.json │ │ ├── TransferWise.json │ │ ├── 上海壹账通金融科技有限公司.json │ │ ├── 京东.json │ │ ├── 众安保险.json │ │ ├── 度小满金融.json │ │ ├── 微众银行.json │ │ ├── 我来贷.json │ │ ├── 老虎证券.json │ │ └── 蚂蚁金服.json ├── companies_wikipedia │ ├── companies_wikipedia.txt │ ├── json_folder_en │ │ ├── Adyen.json │ │ ├── Afterpay.json │ │ ├── Ant_Financial.json │ │ ├── Atom_Bank.json │ │ ├── Brex.json │ │ ├── Clover_Health.json │ │ ├── Coinbase.json │ │ ├── Compass_Inc..json │ │ ├── Dianrong.json │ │ ├── Funding_Societies.json │ │ ├── Grab_(company).json │ │ ├── InstaReM.json │ │ ├── JD.com.json │ │ ├── Kabbage.json │ │ ├── Klarna.json │ │ ├── Kreditech.json │ │ ├── Lufax.json │ │ ├── Metromile.json │ │ ├── Monzo_(bank).json │ │ ├── N26_(bank).json │ │ ├── Nubank.json │ │ ├── OakNorth_Bank.json │ │ ├── Oscar_Health.json │ │ ├── OurCrowd.json │ │ ├── Pleo.json │ │ ├── Polymath.json │ │ ├── Power_Ledger.json │ │ ├── Pushpay.json │ │ ├── Revolut.json │ │ ├── Robinhood_(company).json │ │ ├── SoFi.json │ │ ├── SolarisBank.json │ │ ├── Starling_Bank.json │ │ ├── Stripe_(company).json │ │ ├── Tala.json │ │ ├── Tally_Technologies.json │ │ ├── Tencent#2015–2019:_Continued_investments.json │ │ ├── Tide.json │ │ ├── TransferWise.json │ │ ├── WeLab.json │ │ ├── Wealthsimple.json │ │ └── ZhongAn.json │ └── json_folder_zh │ │ ├── %E6%BD%AE%E6%B1%90.json │ │ ├── %E8%85%BE%E8%AE%AF.json │ │ ├── 众安保险.json │ │ └── 蚂蚁金服.json ├── en_wikipedia.ipynb ├── en_wikipedia.py ├── example.py ├── exercise │ ├── 1.ipynb │ ├── chapter 1.ipynb │ ├── pachong.ipynb │ ├── quotes.toscrape.com -2.ipynb │ ├── quotes.toscrape.com.ipynb │ ├── quotes.toscrape.com_cjh.py │ ├── second_spider_Kong.py │ ├── spider.py │ ├── spider_quote_byKONG.ipynb │ ├── spider_quotes_cjh.py │ └── test.ipynb ├── kpmg │ ├── Fintech100-2018-Report_Final_22-11-18sm.pdf │ ├── README.md │ ├── company_100.json │ ├── company_100_information.json │ ├── get100CompanyInformation_new.py │ ├── get_100_company_information.py │ ├── get_100_company_name.py │ ├── text_10_11.txt │ ├── text_12_111.txt │ ├── 获取100家公司.ipynb │ ├── 获取100家公司的信息.ipynb │ └── 获取pdf内容.ipynb ├── universalcrawler │ ├── README.md │ ├── genspider.py │ ├── requirements.txt │ ├── scrapy.cfg │ └── universalcrawler │ │ ├── __init__.py │ │ ├── items.py │ │ ├── middlewares.py │ │ ├── pipelines.py │ │ ├── settings.py │ │ └── spiders │ │ ├── __init__.py │ │ ├── a100qkl.py │ │ ├── a50cnnet.py │ │ ├── a52ai.py │ │ ├── afenxi.py │ │ ├── ai_ofweek.py │ │ ├── ai_qianjia.py │ │ ├── aihot.py │ │ ├── ailab.py │ │ ├── aitopics.py │ │ ├── aitrends.py │ │ ├── antgroup.py │ │ ├── artificial_intelligence.py │ │ ├── artificialintelligence_news.py │ │ ├── atyun.py │ │ ├── bigdata_startups.py │ │ ├── bigdatas.py │ │ ├── blockchainflashnews.py │ │ ├── blockchaintrainingalliance.py │ │ ├── blog_bosch_si.py │ │ ├── blokt.py │ │ ├── cbdio.py │ │ ├── chain5.py │ │ ├── chinabyte.py │ │ ├── chinacloud.py │ │ ├── cloud_ofweek.py │ │ ├── cloudave.py │ │ ├── cloudcomputing_news.py │ │ ├── cloudtweaks.py │ │ ├── coindesk.py │ │ ├── datasciencecentral.py │ │ ├── ejiaokuai.py │ │ ├── hibtc.py │ │ ├── im2m.py │ │ ├── insidebigdata.py │ │ ├── internetofthingsagenda_techtarget.py │ │ ├── iofthings.py │ │ ├── iot_ofweek.py │ │ ├── iotcn.py │ │ ├── iothome.py │ │ ├── iotworm.py │ │ ├── journalofcloudcomputing_springeropen.py │ │ ├── leiphone.py │ │ ├── netofthings.py │ │ ├── planetbigdata.py │ │ ├── qkzj.py │ │ ├── qukuaiwang.py │ │ ├── r_bloggers.py │ │ ├── roboticschina.py │ │ ├── searchcloudcomputing_techtarget_com.py │ │ ├── searchcloudcomputing_techtarget_com_cn.py │ │ ├── sharpcloud.py │ │ ├── staceyoniot.py │ │ ├── thebigdata.py │ │ ├── theinternetofthings.py │ │ ├── walian.py │ │ ├── wlit.py │ │ ├── yjs_cnelc.py │ │ └── znw.py ├── util.py ├── wikidatacrawler │ ├── E.txt │ ├── extract.ipynb │ ├── scrapy.cfg │ ├── selected.jsonlines │ ├── wikidata.jsonlines │ └── wikidatacrawler │ │ ├── __init__.py │ │ ├── items.py │ │ ├── middlewares.py │ │ ├── pipelines.py │ │ ├── settings.py │ │ └── spiders │ │ ├── __init__.py │ │ └── wikidata.py ├── zh_wikipedia.ipynb ├── zh_wikipedia.py └── zh_wikipedia_2.ipynb ├── database ├── README.assets │ └── 1553777652173.png ├── README.md ├── catch_node.py ├── hibtc.csv └── merge_to_neo4j.py ├── frontend ├── EUREKA_1.psd ├── EUREKA_2.psd ├── Index.html ├── LOGO.png └── README.md ├── nlp ├── AI.xmind ├── A_entity_explanation_final.csv ├── B_entity_explanation.csv ├── Big data.xmind ├── Blockchain.xmind ├── C_entity_explanation.csv ├── Cloud.xmind ├── D_entity_explanation.csv ├── E.txt ├── I_entity_explanation.csv ├── Internet of things.xmind ├── NLP框架.pdf ├── Ontology.xmind ├── README.md ├── data_analysis.py ├── dict.txt ├── embedding.py ├── entity - 副本.ipynb ├── entity.ipynb ├── fact_triple_extraction-master.ipynb ├── fact_triple_extraction-master.py ├── input.txt ├── lda_topic.ipynb ├── lda_topic.py ├── out_file.txt ├── stop_words.txt ├── text.ipynb ├── topic_file.txt ├── zh_stop_words.csv ├── 专有名词词典.txt └── 停用词处理.ipynb ├── server └── app │ ├── __init__.py │ ├── app.py │ ├── es_test.py │ ├── models.py │ └── templates │ └── index.html └── sign ├── Aires Zhou.md ├── ChenJianhua.md ├── JeffLee.md ├── Konglingzhen.md ├── LinSenqiang.md ├── LiuZicheng.md ├── Ollie_H.md ├── README.md ├── Shuting.md ├── franklinli.md └── zhang_kaiqi.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/README.md -------------------------------------------------------------------------------- /android/ActivityLifeCycleTest/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/ActivityLifeCycleTest/.gitignore -------------------------------------------------------------------------------- /android/ActivityLifeCycleTest/.gradle/4.10.1/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/ActivityLifeCycleTest/.gradle/4.10.1/fileHashes/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/ActivityLifeCycleTest/.gradle/4.10.1/fileHashes/fileHashes.bin -------------------------------------------------------------------------------- /android/ActivityLifeCycleTest/.gradle/4.10.1/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/ActivityLifeCycleTest/.gradle/4.10.1/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /android/ActivityLifeCycleTest/.gradle/4.10.1/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/ActivityLifeCycleTest/.gradle/vcs-1/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/ActivityLifeCycleTest/ActivityLifeCycleTest.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/ActivityLifeCycleTest/ActivityLifeCycleTest.iml -------------------------------------------------------------------------------- /android/ActivityLifeCycleTest/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /android/ActivityLifeCycleTest/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/ActivityLifeCycleTest/app/build.gradle -------------------------------------------------------------------------------- /android/ActivityLifeCycleTest/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/ActivityLifeCycleTest/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/ActivityLifeCycleTest/app/src/androidTest/java/com/example/activitylifecycletest/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/ActivityLifeCycleTest/app/src/androidTest/java/com/example/activitylifecycletest/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /android/ActivityLifeCycleTest/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/ActivityLifeCycleTest/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/ActivityLifeCycleTest/app/src/main/java/com/example/activitylifecycletest/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/ActivityLifeCycleTest/app/src/main/java/com/example/activitylifecycletest/MainActivity.java -------------------------------------------------------------------------------- /android/ActivityLifeCycleTest/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/ActivityLifeCycleTest/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /android/ActivityLifeCycleTest/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/ActivityLifeCycleTest/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /android/ActivityLifeCycleTest/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/ActivityLifeCycleTest/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /android/ActivityLifeCycleTest/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/ActivityLifeCycleTest/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/ActivityLifeCycleTest/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/ActivityLifeCycleTest/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /android/ActivityLifeCycleTest/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/ActivityLifeCycleTest/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/ActivityLifeCycleTest/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/ActivityLifeCycleTest/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/ActivityLifeCycleTest/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/ActivityLifeCycleTest/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/ActivityLifeCycleTest/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/ActivityLifeCycleTest/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/ActivityLifeCycleTest/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/ActivityLifeCycleTest/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/ActivityLifeCycleTest/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/ActivityLifeCycleTest/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/ActivityLifeCycleTest/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/ActivityLifeCycleTest/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/ActivityLifeCycleTest/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/ActivityLifeCycleTest/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/ActivityLifeCycleTest/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/ActivityLifeCycleTest/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/ActivityLifeCycleTest/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/ActivityLifeCycleTest/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/ActivityLifeCycleTest/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/ActivityLifeCycleTest/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/ActivityLifeCycleTest/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/ActivityLifeCycleTest/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/ActivityLifeCycleTest/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/ActivityLifeCycleTest/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/ActivityLifeCycleTest/app/src/test/java/com/example/activitylifecycletest/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/ActivityLifeCycleTest/app/src/test/java/com/example/activitylifecycletest/ExampleUnitTest.java -------------------------------------------------------------------------------- /android/ActivityLifeCycleTest/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/ActivityLifeCycleTest/build.gradle -------------------------------------------------------------------------------- /android/ActivityLifeCycleTest/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/ActivityLifeCycleTest/gradle.properties -------------------------------------------------------------------------------- /android/ActivityLifeCycleTest/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/ActivityLifeCycleTest/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/ActivityLifeCycleTest/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/ActivityLifeCycleTest/gradlew -------------------------------------------------------------------------------- /android/ActivityLifeCycleTest/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/ActivityLifeCycleTest/gradlew.bat -------------------------------------------------------------------------------- /android/ActivityLifeCycleTest/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/ActivityLifeCycleTest/local.properties -------------------------------------------------------------------------------- /android/ActivityLifeCycleTest/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /android/EUREKA/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/EUREKA/.gitignore -------------------------------------------------------------------------------- /android/EUREKA/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /android/EUREKA/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/EUREKA/app/build.gradle -------------------------------------------------------------------------------- /android/EUREKA/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/EUREKA/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/EUREKA/app/src/androidTest/java/com/example/eureka/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/EUREKA/app/src/androidTest/java/com/example/eureka/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /android/EUREKA/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/EUREKA/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/EUREKA/app/src/main/java/com/example/eureka/Fruit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/EUREKA/app/src/main/java/com/example/eureka/Fruit.java -------------------------------------------------------------------------------- /android/EUREKA/app/src/main/java/com/example/eureka/FruitAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/EUREKA/app/src/main/java/com/example/eureka/FruitAdapter.java -------------------------------------------------------------------------------- /android/EUREKA/app/src/main/java/com/example/eureka/LoginActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/EUREKA/app/src/main/java/com/example/eureka/LoginActivity.java -------------------------------------------------------------------------------- /android/EUREKA/app/src/main/java/com/example/eureka/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/EUREKA/app/src/main/java/com/example/eureka/MainActivity.java -------------------------------------------------------------------------------- /android/EUREKA/app/src/main/java/com/example/eureka/advanceed_search_page.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/EUREKA/app/src/main/java/com/example/eureka/advanceed_search_page.java -------------------------------------------------------------------------------- /android/EUREKA/app/src/main/java/com/example/eureka/search_page.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/EUREKA/app/src/main/java/com/example/eureka/search_page.java -------------------------------------------------------------------------------- /android/EUREKA/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/EUREKA/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /android/EUREKA/app/src/main/res/drawable-xhdpi/img_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/EUREKA/app/src/main/res/drawable-xhdpi/img_1.jpg -------------------------------------------------------------------------------- /android/EUREKA/app/src/main/res/drawable-xhdpi/img_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/EUREKA/app/src/main/res/drawable-xhdpi/img_2.png -------------------------------------------------------------------------------- /android/EUREKA/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/EUREKA/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /android/EUREKA/app/src/main/res/layout/activity_advanceed_search_page.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/EUREKA/app/src/main/res/layout/activity_advanceed_search_page.xml -------------------------------------------------------------------------------- /android/EUREKA/app/src/main/res/layout/activity_login.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/EUREKA/app/src/main/res/layout/activity_login.xml -------------------------------------------------------------------------------- /android/EUREKA/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/EUREKA/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /android/EUREKA/app/src/main/res/layout/activity_search_page.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/EUREKA/app/src/main/res/layout/activity_search_page.xml -------------------------------------------------------------------------------- /android/EUREKA/app/src/main/res/layout/fruit_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/EUREKA/app/src/main/res/layout/fruit_item.xml -------------------------------------------------------------------------------- /android/EUREKA/app/src/main/res/layout/title.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/EUREKA/app/src/main/res/layout/title.xml -------------------------------------------------------------------------------- /android/EUREKA/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/EUREKA/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/EUREKA/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/EUREKA/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /android/EUREKA/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/EUREKA/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/EUREKA/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/EUREKA/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/EUREKA/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/EUREKA/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/EUREKA/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/EUREKA/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/EUREKA/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/EUREKA/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/EUREKA/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/EUREKA/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/EUREKA/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/EUREKA/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/EUREKA/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/EUREKA/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/EUREKA/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/EUREKA/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/EUREKA/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/EUREKA/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/EUREKA/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/EUREKA/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/EUREKA/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/EUREKA/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /android/EUREKA/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/EUREKA/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/EUREKA/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/EUREKA/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/EUREKA/app/src/test/java/com/example/eureka/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/EUREKA/app/src/test/java/com/example/eureka/ExampleUnitTest.java -------------------------------------------------------------------------------- /android/EUREKA/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/EUREKA/build.gradle -------------------------------------------------------------------------------- /android/EUREKA/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/EUREKA/gradle.properties -------------------------------------------------------------------------------- /android/EUREKA/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/EUREKA/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/EUREKA/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/EUREKA/gradlew -------------------------------------------------------------------------------- /android/EUREKA/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/EUREKA/gradlew.bat -------------------------------------------------------------------------------- /android/EUREKA/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /android/HelloWorldActivity/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/HelloWorldActivity/.gitignore -------------------------------------------------------------------------------- /android/HelloWorldActivity/.gradle/4.10.1/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/HelloWorldActivity/.gradle/4.10.1/fileContent/fileContent.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/HelloWorldActivity/.gradle/4.10.1/fileContent/fileContent.lock -------------------------------------------------------------------------------- /android/HelloWorldActivity/.gradle/4.10.1/fileHashes/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/HelloWorldActivity/.gradle/4.10.1/fileHashes/fileHashes.bin -------------------------------------------------------------------------------- /android/HelloWorldActivity/.gradle/4.10.1/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/HelloWorldActivity/.gradle/4.10.1/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /android/HelloWorldActivity/.gradle/4.10.1/fileHashes/resourceHashesCache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/HelloWorldActivity/.gradle/4.10.1/fileHashes/resourceHashesCache.bin -------------------------------------------------------------------------------- /android/HelloWorldActivity/.gradle/4.10.1/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/HelloWorldActivity/.gradle/4.10.1/javaCompile/classAnalysis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/HelloWorldActivity/.gradle/4.10.1/javaCompile/classAnalysis.bin -------------------------------------------------------------------------------- /android/HelloWorldActivity/.gradle/4.10.1/javaCompile/javaCompile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/HelloWorldActivity/.gradle/4.10.1/javaCompile/javaCompile.lock -------------------------------------------------------------------------------- /android/HelloWorldActivity/.gradle/4.10.1/javaCompile/taskHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/HelloWorldActivity/.gradle/4.10.1/javaCompile/taskHistory.bin -------------------------------------------------------------------------------- /android/HelloWorldActivity/.gradle/4.10.1/taskHistory/taskHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/HelloWorldActivity/.gradle/4.10.1/taskHistory/taskHistory.bin -------------------------------------------------------------------------------- /android/HelloWorldActivity/.gradle/4.10.1/taskHistory/taskHistory.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/HelloWorldActivity/.gradle/4.10.1/taskHistory/taskHistory.lock -------------------------------------------------------------------------------- /android/HelloWorldActivity/.gradle/buildOutputCleanup/buildOutputCleanup.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/HelloWorldActivity/.gradle/buildOutputCleanup/buildOutputCleanup.lock -------------------------------------------------------------------------------- /android/HelloWorldActivity/.gradle/buildOutputCleanup/cache.properties: -------------------------------------------------------------------------------- 1 | #Sat Mar 09 22:02:08 CST 2019 2 | gradle.version=4.10.1 3 | -------------------------------------------------------------------------------- /android/HelloWorldActivity/.gradle/buildOutputCleanup/outputFiles.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/HelloWorldActivity/.gradle/buildOutputCleanup/outputFiles.bin -------------------------------------------------------------------------------- /android/HelloWorldActivity/.gradle/vcs-1/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/HelloWorldActivity/HelloWorldActivity.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/HelloWorldActivity/HelloWorldActivity.iml -------------------------------------------------------------------------------- /android/HelloWorldActivity/android/support/v7/widget/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/HelloWorldActivity/android/support/v7/widget/annotations.xml -------------------------------------------------------------------------------- /android/HelloWorldActivity/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /android/HelloWorldActivity/app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/HelloWorldActivity/app/app.iml -------------------------------------------------------------------------------- /android/HelloWorldActivity/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/HelloWorldActivity/app/build.gradle -------------------------------------------------------------------------------- /android/HelloWorldActivity/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/HelloWorldActivity/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/HelloWorldActivity/app/src/androidTest/java/com/example/helloworldactivity/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/HelloWorldActivity/app/src/androidTest/java/com/example/helloworldactivity/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /android/HelloWorldActivity/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/HelloWorldActivity/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/HelloWorldActivity/app/src/main/java/com/example/helloworldactivity/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/HelloWorldActivity/app/src/main/java/com/example/helloworldactivity/MainActivity.java -------------------------------------------------------------------------------- /android/HelloWorldActivity/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/HelloWorldActivity/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /android/HelloWorldActivity/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/HelloWorldActivity/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /android/HelloWorldActivity/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/HelloWorldActivity/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /android/HelloWorldActivity/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/HelloWorldActivity/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/HelloWorldActivity/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/HelloWorldActivity/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /android/HelloWorldActivity/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/HelloWorldActivity/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/HelloWorldActivity/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/HelloWorldActivity/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/HelloWorldActivity/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/HelloWorldActivity/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/HelloWorldActivity/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/HelloWorldActivity/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/HelloWorldActivity/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/HelloWorldActivity/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/HelloWorldActivity/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/HelloWorldActivity/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/HelloWorldActivity/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/HelloWorldActivity/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/HelloWorldActivity/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/HelloWorldActivity/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/HelloWorldActivity/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/HelloWorldActivity/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/HelloWorldActivity/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/HelloWorldActivity/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/HelloWorldActivity/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/HelloWorldActivity/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/HelloWorldActivity/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/HelloWorldActivity/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/HelloWorldActivity/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/HelloWorldActivity/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/HelloWorldActivity/app/src/test/java/com/example/helloworldactivity/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/HelloWorldActivity/app/src/test/java/com/example/helloworldactivity/ExampleUnitTest.java -------------------------------------------------------------------------------- /android/HelloWorldActivity/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/HelloWorldActivity/build.gradle -------------------------------------------------------------------------------- /android/HelloWorldActivity/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/HelloWorldActivity/gradle.properties -------------------------------------------------------------------------------- /android/HelloWorldActivity/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/HelloWorldActivity/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/HelloWorldActivity/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/HelloWorldActivity/gradlew -------------------------------------------------------------------------------- /android/HelloWorldActivity/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/HelloWorldActivity/gradlew.bat -------------------------------------------------------------------------------- /android/HelloWorldActivity/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/HelloWorldActivity/local.properties -------------------------------------------------------------------------------- /android/HelloWorldActivity/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /android/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/android/README.md -------------------------------------------------------------------------------- /crawler/ABCDI 语料网站列表.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/ABCDI 语料网站列表.md -------------------------------------------------------------------------------- /crawler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/README.md -------------------------------------------------------------------------------- /crawler/baidubaike.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/baidubaike.ipynb -------------------------------------------------------------------------------- /crawler/companies_baidubaike/companies_baidubaike.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_baidubaike/companies_baidubaike.txt -------------------------------------------------------------------------------- /crawler/companies_baidubaike/json_folder/15388208.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crawler/companies_baidubaike/json_folder/19460372.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crawler/companies_baidubaike/json_folder/20260339.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crawler/companies_baidubaike/json_folder/3868959.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crawler/companies_baidubaike/json_folder/4671834.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crawler/companies_baidubaike/json_folder/51信用卡.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_baidubaike/json_folder/51信用卡.json -------------------------------------------------------------------------------- /crawler/companies_baidubaike/json_folder/8543755.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crawler/companies_baidubaike/json_folder/Affirm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_baidubaike/json_folder/Affirm.json -------------------------------------------------------------------------------- /crawler/companies_baidubaike/json_folder/Atom%20Bank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_baidubaike/json_folder/Atom%20Bank.json -------------------------------------------------------------------------------- /crawler/companies_baidubaike/json_folder/Klarna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_baidubaike/json_folder/Klarna.json -------------------------------------------------------------------------------- /crawler/companies_baidubaike/json_folder/Lendingkart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_baidubaike/json_folder/Lendingkart.json -------------------------------------------------------------------------------- /crawler/companies_baidubaike/json_folder/Number26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_baidubaike/json_folder/Number26.json -------------------------------------------------------------------------------- /crawler/companies_baidubaike/json_folder/Oscar%20Health.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_baidubaike/json_folder/Oscar%20Health.json -------------------------------------------------------------------------------- /crawler/companies_baidubaike/json_folder/OurCrowd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_baidubaike/json_folder/OurCrowd.json -------------------------------------------------------------------------------- /crawler/companies_baidubaike/json_folder/Quoine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_baidubaike/json_folder/Quoine.json -------------------------------------------------------------------------------- /crawler/companies_baidubaike/json_folder/TransferWise.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_baidubaike/json_folder/TransferWise.json -------------------------------------------------------------------------------- /crawler/companies_baidubaike/json_folder/上海壹账通金融科技有限公司.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_baidubaike/json_folder/上海壹账通金融科技有限公司.json -------------------------------------------------------------------------------- /crawler/companies_baidubaike/json_folder/京东.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crawler/companies_baidubaike/json_folder/众安保险.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_baidubaike/json_folder/众安保险.json -------------------------------------------------------------------------------- /crawler/companies_baidubaike/json_folder/度小满金融.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_baidubaike/json_folder/度小满金融.json -------------------------------------------------------------------------------- /crawler/companies_baidubaike/json_folder/微众银行.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_baidubaike/json_folder/微众银行.json -------------------------------------------------------------------------------- /crawler/companies_baidubaike/json_folder/我来贷.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_baidubaike/json_folder/我来贷.json -------------------------------------------------------------------------------- /crawler/companies_baidubaike/json_folder/老虎证券.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_baidubaike/json_folder/老虎证券.json -------------------------------------------------------------------------------- /crawler/companies_baidubaike/json_folder/蚂蚁金服.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_baidubaike/json_folder/蚂蚁金服.json -------------------------------------------------------------------------------- /crawler/companies_wikipedia/companies_wikipedia.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_wikipedia/companies_wikipedia.txt -------------------------------------------------------------------------------- /crawler/companies_wikipedia/json_folder_en/Adyen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_wikipedia/json_folder_en/Adyen.json -------------------------------------------------------------------------------- /crawler/companies_wikipedia/json_folder_en/Afterpay.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_wikipedia/json_folder_en/Afterpay.json -------------------------------------------------------------------------------- /crawler/companies_wikipedia/json_folder_en/Ant_Financial.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_wikipedia/json_folder_en/Ant_Financial.json -------------------------------------------------------------------------------- /crawler/companies_wikipedia/json_folder_en/Atom_Bank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_wikipedia/json_folder_en/Atom_Bank.json -------------------------------------------------------------------------------- /crawler/companies_wikipedia/json_folder_en/Brex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_wikipedia/json_folder_en/Brex.json -------------------------------------------------------------------------------- /crawler/companies_wikipedia/json_folder_en/Clover_Health.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_wikipedia/json_folder_en/Clover_Health.json -------------------------------------------------------------------------------- /crawler/companies_wikipedia/json_folder_en/Coinbase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_wikipedia/json_folder_en/Coinbase.json -------------------------------------------------------------------------------- /crawler/companies_wikipedia/json_folder_en/Compass_Inc..json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_wikipedia/json_folder_en/Compass_Inc..json -------------------------------------------------------------------------------- /crawler/companies_wikipedia/json_folder_en/Dianrong.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_wikipedia/json_folder_en/Dianrong.json -------------------------------------------------------------------------------- /crawler/companies_wikipedia/json_folder_en/Funding_Societies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_wikipedia/json_folder_en/Funding_Societies.json -------------------------------------------------------------------------------- /crawler/companies_wikipedia/json_folder_en/Grab_(company).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_wikipedia/json_folder_en/Grab_(company).json -------------------------------------------------------------------------------- /crawler/companies_wikipedia/json_folder_en/InstaReM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_wikipedia/json_folder_en/InstaReM.json -------------------------------------------------------------------------------- /crawler/companies_wikipedia/json_folder_en/JD.com.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_wikipedia/json_folder_en/JD.com.json -------------------------------------------------------------------------------- /crawler/companies_wikipedia/json_folder_en/Kabbage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_wikipedia/json_folder_en/Kabbage.json -------------------------------------------------------------------------------- /crawler/companies_wikipedia/json_folder_en/Klarna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_wikipedia/json_folder_en/Klarna.json -------------------------------------------------------------------------------- /crawler/companies_wikipedia/json_folder_en/Kreditech.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_wikipedia/json_folder_en/Kreditech.json -------------------------------------------------------------------------------- /crawler/companies_wikipedia/json_folder_en/Lufax.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_wikipedia/json_folder_en/Lufax.json -------------------------------------------------------------------------------- /crawler/companies_wikipedia/json_folder_en/Metromile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_wikipedia/json_folder_en/Metromile.json -------------------------------------------------------------------------------- /crawler/companies_wikipedia/json_folder_en/Monzo_(bank).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_wikipedia/json_folder_en/Monzo_(bank).json -------------------------------------------------------------------------------- /crawler/companies_wikipedia/json_folder_en/N26_(bank).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_wikipedia/json_folder_en/N26_(bank).json -------------------------------------------------------------------------------- /crawler/companies_wikipedia/json_folder_en/Nubank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_wikipedia/json_folder_en/Nubank.json -------------------------------------------------------------------------------- /crawler/companies_wikipedia/json_folder_en/OakNorth_Bank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_wikipedia/json_folder_en/OakNorth_Bank.json -------------------------------------------------------------------------------- /crawler/companies_wikipedia/json_folder_en/Oscar_Health.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_wikipedia/json_folder_en/Oscar_Health.json -------------------------------------------------------------------------------- /crawler/companies_wikipedia/json_folder_en/OurCrowd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_wikipedia/json_folder_en/OurCrowd.json -------------------------------------------------------------------------------- /crawler/companies_wikipedia/json_folder_en/Pleo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_wikipedia/json_folder_en/Pleo.json -------------------------------------------------------------------------------- /crawler/companies_wikipedia/json_folder_en/Polymath.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_wikipedia/json_folder_en/Polymath.json -------------------------------------------------------------------------------- /crawler/companies_wikipedia/json_folder_en/Power_Ledger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_wikipedia/json_folder_en/Power_Ledger.json -------------------------------------------------------------------------------- /crawler/companies_wikipedia/json_folder_en/Pushpay.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_wikipedia/json_folder_en/Pushpay.json -------------------------------------------------------------------------------- /crawler/companies_wikipedia/json_folder_en/Revolut.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_wikipedia/json_folder_en/Revolut.json -------------------------------------------------------------------------------- /crawler/companies_wikipedia/json_folder_en/Robinhood_(company).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_wikipedia/json_folder_en/Robinhood_(company).json -------------------------------------------------------------------------------- /crawler/companies_wikipedia/json_folder_en/SoFi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_wikipedia/json_folder_en/SoFi.json -------------------------------------------------------------------------------- /crawler/companies_wikipedia/json_folder_en/SolarisBank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_wikipedia/json_folder_en/SolarisBank.json -------------------------------------------------------------------------------- /crawler/companies_wikipedia/json_folder_en/Starling_Bank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_wikipedia/json_folder_en/Starling_Bank.json -------------------------------------------------------------------------------- /crawler/companies_wikipedia/json_folder_en/Stripe_(company).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_wikipedia/json_folder_en/Stripe_(company).json -------------------------------------------------------------------------------- /crawler/companies_wikipedia/json_folder_en/Tala.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_wikipedia/json_folder_en/Tala.json -------------------------------------------------------------------------------- /crawler/companies_wikipedia/json_folder_en/Tally_Technologies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_wikipedia/json_folder_en/Tally_Technologies.json -------------------------------------------------------------------------------- /crawler/companies_wikipedia/json_folder_en/Tencent#2015–2019:_Continued_investments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_wikipedia/json_folder_en/Tencent#2015–2019:_Continued_investments.json -------------------------------------------------------------------------------- /crawler/companies_wikipedia/json_folder_en/Tide.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_wikipedia/json_folder_en/Tide.json -------------------------------------------------------------------------------- /crawler/companies_wikipedia/json_folder_en/TransferWise.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_wikipedia/json_folder_en/TransferWise.json -------------------------------------------------------------------------------- /crawler/companies_wikipedia/json_folder_en/WeLab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_wikipedia/json_folder_en/WeLab.json -------------------------------------------------------------------------------- /crawler/companies_wikipedia/json_folder_en/Wealthsimple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_wikipedia/json_folder_en/Wealthsimple.json -------------------------------------------------------------------------------- /crawler/companies_wikipedia/json_folder_en/ZhongAn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_wikipedia/json_folder_en/ZhongAn.json -------------------------------------------------------------------------------- /crawler/companies_wikipedia/json_folder_zh/%E6%BD%AE%E6%B1%90.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_wikipedia/json_folder_zh/%E6%BD%AE%E6%B1%90.json -------------------------------------------------------------------------------- /crawler/companies_wikipedia/json_folder_zh/%E8%85%BE%E8%AE%AF.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_wikipedia/json_folder_zh/%E8%85%BE%E8%AE%AF.json -------------------------------------------------------------------------------- /crawler/companies_wikipedia/json_folder_zh/众安保险.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_wikipedia/json_folder_zh/众安保险.json -------------------------------------------------------------------------------- /crawler/companies_wikipedia/json_folder_zh/蚂蚁金服.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/companies_wikipedia/json_folder_zh/蚂蚁金服.json -------------------------------------------------------------------------------- /crawler/en_wikipedia.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/en_wikipedia.ipynb -------------------------------------------------------------------------------- /crawler/en_wikipedia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/en_wikipedia.py -------------------------------------------------------------------------------- /crawler/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/example.py -------------------------------------------------------------------------------- /crawler/exercise/1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/exercise/1.ipynb -------------------------------------------------------------------------------- /crawler/exercise/chapter 1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/exercise/chapter 1.ipynb -------------------------------------------------------------------------------- /crawler/exercise/pachong.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/exercise/pachong.ipynb -------------------------------------------------------------------------------- /crawler/exercise/quotes.toscrape.com -2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/exercise/quotes.toscrape.com -2.ipynb -------------------------------------------------------------------------------- /crawler/exercise/quotes.toscrape.com.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/exercise/quotes.toscrape.com.ipynb -------------------------------------------------------------------------------- /crawler/exercise/quotes.toscrape.com_cjh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/exercise/quotes.toscrape.com_cjh.py -------------------------------------------------------------------------------- /crawler/exercise/second_spider_Kong.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/exercise/second_spider_Kong.py -------------------------------------------------------------------------------- /crawler/exercise/spider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/exercise/spider.py -------------------------------------------------------------------------------- /crawler/exercise/spider_quote_byKONG.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/exercise/spider_quote_byKONG.ipynb -------------------------------------------------------------------------------- /crawler/exercise/spider_quotes_cjh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/exercise/spider_quotes_cjh.py -------------------------------------------------------------------------------- /crawler/exercise/test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/exercise/test.ipynb -------------------------------------------------------------------------------- /crawler/kpmg/Fintech100-2018-Report_Final_22-11-18sm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/kpmg/Fintech100-2018-Report_Final_22-11-18sm.pdf -------------------------------------------------------------------------------- /crawler/kpmg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/kpmg/README.md -------------------------------------------------------------------------------- /crawler/kpmg/company_100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/kpmg/company_100.json -------------------------------------------------------------------------------- /crawler/kpmg/company_100_information.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/kpmg/company_100_information.json -------------------------------------------------------------------------------- /crawler/kpmg/get100CompanyInformation_new.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/kpmg/get100CompanyInformation_new.py -------------------------------------------------------------------------------- /crawler/kpmg/get_100_company_information.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/kpmg/get_100_company_information.py -------------------------------------------------------------------------------- /crawler/kpmg/get_100_company_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/kpmg/get_100_company_name.py -------------------------------------------------------------------------------- /crawler/kpmg/text_10_11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/kpmg/text_10_11.txt -------------------------------------------------------------------------------- /crawler/kpmg/text_12_111.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/kpmg/text_12_111.txt -------------------------------------------------------------------------------- /crawler/kpmg/获取100家公司.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/kpmg/获取100家公司.ipynb -------------------------------------------------------------------------------- /crawler/kpmg/获取100家公司的信息.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/kpmg/获取100家公司的信息.ipynb -------------------------------------------------------------------------------- /crawler/kpmg/获取pdf内容.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/kpmg/获取pdf内容.ipynb -------------------------------------------------------------------------------- /crawler/universalcrawler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/README.md -------------------------------------------------------------------------------- /crawler/universalcrawler/genspider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/genspider.py -------------------------------------------------------------------------------- /crawler/universalcrawler/requirements.txt: -------------------------------------------------------------------------------- 1 | scrapy 2 | readability-lxml 3 | -------------------------------------------------------------------------------- /crawler/universalcrawler/scrapy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/scrapy.cfg -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/items.py -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/middlewares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/middlewares.py -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/pipelines.py -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/settings.py -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/spiders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/spiders/__init__.py -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/spiders/a100qkl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/spiders/a100qkl.py -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/spiders/a50cnnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/spiders/a50cnnet.py -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/spiders/a52ai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/spiders/a52ai.py -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/spiders/afenxi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/spiders/afenxi.py -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/spiders/ai_ofweek.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/spiders/ai_ofweek.py -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/spiders/ai_qianjia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/spiders/ai_qianjia.py -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/spiders/aihot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/spiders/aihot.py -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/spiders/ailab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/spiders/ailab.py -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/spiders/aitopics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/spiders/aitopics.py -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/spiders/aitrends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/spiders/aitrends.py -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/spiders/antgroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/spiders/antgroup.py -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/spiders/artificial_intelligence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/spiders/artificial_intelligence.py -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/spiders/artificialintelligence_news.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/spiders/artificialintelligence_news.py -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/spiders/atyun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/spiders/atyun.py -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/spiders/bigdata_startups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/spiders/bigdata_startups.py -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/spiders/bigdatas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/spiders/bigdatas.py -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/spiders/blockchainflashnews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/spiders/blockchainflashnews.py -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/spiders/blockchaintrainingalliance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/spiders/blockchaintrainingalliance.py -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/spiders/blog_bosch_si.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/spiders/blog_bosch_si.py -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/spiders/blokt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/spiders/blokt.py -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/spiders/cbdio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/spiders/cbdio.py -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/spiders/chain5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/spiders/chain5.py -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/spiders/chinabyte.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/spiders/chinabyte.py -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/spiders/chinacloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/spiders/chinacloud.py -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/spiders/cloud_ofweek.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/spiders/cloud_ofweek.py -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/spiders/cloudave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/spiders/cloudave.py -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/spiders/cloudcomputing_news.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/spiders/cloudcomputing_news.py -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/spiders/cloudtweaks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/spiders/cloudtweaks.py -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/spiders/coindesk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/spiders/coindesk.py -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/spiders/datasciencecentral.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/spiders/datasciencecentral.py -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/spiders/ejiaokuai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/spiders/ejiaokuai.py -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/spiders/hibtc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/spiders/hibtc.py -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/spiders/im2m.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/spiders/im2m.py -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/spiders/insidebigdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/spiders/insidebigdata.py -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/spiders/internetofthingsagenda_techtarget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/spiders/internetofthingsagenda_techtarget.py -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/spiders/iofthings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/spiders/iofthings.py -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/spiders/iot_ofweek.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/spiders/iot_ofweek.py -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/spiders/iotcn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/spiders/iotcn.py -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/spiders/iothome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/spiders/iothome.py -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/spiders/iotworm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/spiders/iotworm.py -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/spiders/journalofcloudcomputing_springeropen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/spiders/journalofcloudcomputing_springeropen.py -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/spiders/leiphone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/spiders/leiphone.py -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/spiders/netofthings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/spiders/netofthings.py -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/spiders/planetbigdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/spiders/planetbigdata.py -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/spiders/qkzj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/spiders/qkzj.py -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/spiders/qukuaiwang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/spiders/qukuaiwang.py -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/spiders/r_bloggers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/spiders/r_bloggers.py -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/spiders/roboticschina.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/spiders/roboticschina.py -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/spiders/searchcloudcomputing_techtarget_com.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/spiders/searchcloudcomputing_techtarget_com.py -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/spiders/searchcloudcomputing_techtarget_com_cn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/spiders/searchcloudcomputing_techtarget_com_cn.py -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/spiders/sharpcloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/spiders/sharpcloud.py -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/spiders/staceyoniot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/spiders/staceyoniot.py -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/spiders/thebigdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/spiders/thebigdata.py -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/spiders/theinternetofthings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/spiders/theinternetofthings.py -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/spiders/walian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/spiders/walian.py -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/spiders/wlit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/spiders/wlit.py -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/spiders/yjs_cnelc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/spiders/yjs_cnelc.py -------------------------------------------------------------------------------- /crawler/universalcrawler/universalcrawler/spiders/znw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/universalcrawler/universalcrawler/spiders/znw.py -------------------------------------------------------------------------------- /crawler/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/util.py -------------------------------------------------------------------------------- /crawler/wikidatacrawler/E.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/wikidatacrawler/E.txt -------------------------------------------------------------------------------- /crawler/wikidatacrawler/extract.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/wikidatacrawler/extract.ipynb -------------------------------------------------------------------------------- /crawler/wikidatacrawler/scrapy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/wikidatacrawler/scrapy.cfg -------------------------------------------------------------------------------- /crawler/wikidatacrawler/selected.jsonlines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/wikidatacrawler/selected.jsonlines -------------------------------------------------------------------------------- /crawler/wikidatacrawler/wikidata.jsonlines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/wikidatacrawler/wikidata.jsonlines -------------------------------------------------------------------------------- /crawler/wikidatacrawler/wikidatacrawler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crawler/wikidatacrawler/wikidatacrawler/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/wikidatacrawler/wikidatacrawler/items.py -------------------------------------------------------------------------------- /crawler/wikidatacrawler/wikidatacrawler/middlewares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/wikidatacrawler/wikidatacrawler/middlewares.py -------------------------------------------------------------------------------- /crawler/wikidatacrawler/wikidatacrawler/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/wikidatacrawler/wikidatacrawler/pipelines.py -------------------------------------------------------------------------------- /crawler/wikidatacrawler/wikidatacrawler/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/wikidatacrawler/wikidatacrawler/settings.py -------------------------------------------------------------------------------- /crawler/wikidatacrawler/wikidatacrawler/spiders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/wikidatacrawler/wikidatacrawler/spiders/__init__.py -------------------------------------------------------------------------------- /crawler/wikidatacrawler/wikidatacrawler/spiders/wikidata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/wikidatacrawler/wikidatacrawler/spiders/wikidata.py -------------------------------------------------------------------------------- /crawler/zh_wikipedia.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/zh_wikipedia.ipynb -------------------------------------------------------------------------------- /crawler/zh_wikipedia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/zh_wikipedia.py -------------------------------------------------------------------------------- /crawler/zh_wikipedia_2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/crawler/zh_wikipedia_2.ipynb -------------------------------------------------------------------------------- /database/README.assets/1553777652173.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/database/README.assets/1553777652173.png -------------------------------------------------------------------------------- /database/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/database/README.md -------------------------------------------------------------------------------- /database/catch_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/database/catch_node.py -------------------------------------------------------------------------------- /database/hibtc.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/database/hibtc.csv -------------------------------------------------------------------------------- /database/merge_to_neo4j.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/database/merge_to_neo4j.py -------------------------------------------------------------------------------- /frontend/EUREKA_1.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/frontend/EUREKA_1.psd -------------------------------------------------------------------------------- /frontend/EUREKA_2.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/frontend/EUREKA_2.psd -------------------------------------------------------------------------------- /frontend/Index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/frontend/Index.html -------------------------------------------------------------------------------- /frontend/LOGO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/frontend/LOGO.png -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/frontend/README.md -------------------------------------------------------------------------------- /nlp/AI.xmind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/nlp/AI.xmind -------------------------------------------------------------------------------- /nlp/A_entity_explanation_final.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/nlp/A_entity_explanation_final.csv -------------------------------------------------------------------------------- /nlp/B_entity_explanation.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/nlp/B_entity_explanation.csv -------------------------------------------------------------------------------- /nlp/Big data.xmind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/nlp/Big data.xmind -------------------------------------------------------------------------------- /nlp/Blockchain.xmind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/nlp/Blockchain.xmind -------------------------------------------------------------------------------- /nlp/C_entity_explanation.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/nlp/C_entity_explanation.csv -------------------------------------------------------------------------------- /nlp/Cloud.xmind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/nlp/Cloud.xmind -------------------------------------------------------------------------------- /nlp/D_entity_explanation.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/nlp/D_entity_explanation.csv -------------------------------------------------------------------------------- /nlp/E.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/nlp/E.txt -------------------------------------------------------------------------------- /nlp/I_entity_explanation.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/nlp/I_entity_explanation.csv -------------------------------------------------------------------------------- /nlp/Internet of things.xmind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/nlp/Internet of things.xmind -------------------------------------------------------------------------------- /nlp/NLP框架.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/nlp/NLP框架.pdf -------------------------------------------------------------------------------- /nlp/Ontology.xmind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/nlp/Ontology.xmind -------------------------------------------------------------------------------- /nlp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/nlp/README.md -------------------------------------------------------------------------------- /nlp/data_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/nlp/data_analysis.py -------------------------------------------------------------------------------- /nlp/dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/nlp/dict.txt -------------------------------------------------------------------------------- /nlp/embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/nlp/embedding.py -------------------------------------------------------------------------------- /nlp/entity - 副本.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/nlp/entity - 副本.ipynb -------------------------------------------------------------------------------- /nlp/entity.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/nlp/entity.ipynb -------------------------------------------------------------------------------- /nlp/fact_triple_extraction-master.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/nlp/fact_triple_extraction-master.ipynb -------------------------------------------------------------------------------- /nlp/fact_triple_extraction-master.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/nlp/fact_triple_extraction-master.py -------------------------------------------------------------------------------- /nlp/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/nlp/input.txt -------------------------------------------------------------------------------- /nlp/lda_topic.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/nlp/lda_topic.ipynb -------------------------------------------------------------------------------- /nlp/lda_topic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/nlp/lda_topic.py -------------------------------------------------------------------------------- /nlp/out_file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/nlp/out_file.txt -------------------------------------------------------------------------------- /nlp/stop_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/nlp/stop_words.txt -------------------------------------------------------------------------------- /nlp/text.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/nlp/text.ipynb -------------------------------------------------------------------------------- /nlp/topic_file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/nlp/topic_file.txt -------------------------------------------------------------------------------- /nlp/zh_stop_words.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/nlp/zh_stop_words.csv -------------------------------------------------------------------------------- /nlp/专有名词词典.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/nlp/专有名词词典.txt -------------------------------------------------------------------------------- /nlp/停用词处理.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/nlp/停用词处理.ipynb -------------------------------------------------------------------------------- /server/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/server/app/__init__.py -------------------------------------------------------------------------------- /server/app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/server/app/app.py -------------------------------------------------------------------------------- /server/app/es_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/server/app/es_test.py -------------------------------------------------------------------------------- /server/app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/server/app/models.py -------------------------------------------------------------------------------- /server/app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/server/app/templates/index.html -------------------------------------------------------------------------------- /sign/Aires Zhou.md: -------------------------------------------------------------------------------- 1 | OK -------------------------------------------------------------------------------- /sign/ChenJianhua.md: -------------------------------------------------------------------------------- 1 | 陈建华 -------------------------------------------------------------------------------- /sign/JeffLee.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/sign/JeffLee.md -------------------------------------------------------------------------------- /sign/Konglingzhen.md: -------------------------------------------------------------------------------- 1 | 阿镇 -------------------------------------------------------------------------------- /sign/LinSenqiang.md: -------------------------------------------------------------------------------- 1 | 林森强 -------------------------------------------------------------------------------- /sign/LiuZicheng.md: -------------------------------------------------------------------------------- 1 | 刘梓诚到此一游 -------------------------------------------------------------------------------- /sign/Ollie_H.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/sign/Ollie_H.md -------------------------------------------------------------------------------- /sign/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CourierKyn/eureka-kg/HEAD/sign/README.md -------------------------------------------------------------------------------- /sign/Shuting.md: -------------------------------------------------------------------------------- 1 | hi -------------------------------------------------------------------------------- /sign/franklinli.md: -------------------------------------------------------------------------------- 1 | 火前留名 2 | -------------------------------------------------------------------------------- /sign/zhang_kaiqi.md: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------