• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

aaronlelevier/neo4j-github-followers: Example project combining Neo4j, Python an ...

原作者: [db:作者] 来自: 网络 收藏 邀请

开源软件名称:

aaronlelevier/neo4j-github-followers

开源软件地址:

https://github.com/aaronlelevier/neo4j-github-followers

开源编程语言:

Python 68.3%

开源软件介绍:

README

Summary

This is an example project combining Neo4j, Python and Github API

This project demostrates:

  1. Call Github API using Python multithreading

  2. Collect data from threads and output to a followers.csv

  3. Use followers.csv which contains User data and Follower relationships to output CSVs distict for each:

    • users.csv - distinct Users
    • follows.csv - distinct mappings from User-to-Follows
  4. Load CSVs into Neo4j

  5. Create Neo4j relationships

  6. Query Neo4j using the Python neo4j-driver client

  7. Write queried data to write json

  8. Use json to generate a D3Js web graph

Quick Example

The current web/d3-results.json is already populated with my data, so just run:

cd web
npm install http-server
http-server

To build and run the project with your data

Create a Github API token - this will be needed to make requests if making over 60 requests an hour, the unauthenticated rate limit

pip install -r requirements.txt

Populate CSVs for the Github User whose followers is being populated

python code/followers.py --username <username>
python code/follows.py --username <username>
python code/users.py --username <username>

Data can be loaded into Neo4j using the below queries

After data is loaded, run this command to populate web/d3-results.json.

Environment varialbe NEO4J_PASSWORD will need to be set for the Neo4j database connection in query.py

python query.py

Start Node server and see data with D3Js

cd web
npm install http-server
http-server

Neo4j Queries

Load CSV

CSV must first be placed in the Neo4j /import/ dir:

/Users/aaron/Library/Application\ Support/Neo4j\ Desktop/Application/neo4jDatabases/database-0bf7614b-cb8d-405e-baef-e1b94485e662/installation-3.3.5/import/

Load Users table using CSV:

LOAD CSV WITH HEADERS FROM "file:///users.csv" AS row
CREATE (u:User)
SET u = row

Load Follows table using CSV:

LOAD CSV WITH HEADERS FROM "file:///follows.csv" AS row
CREATE (u:Follows)
SET u = row

Create Relationships

Create FOLLOWS relationships using previous 2 tables:

MATCH (u:User),(f:Follows), (u2:User)
WHERE u.login = f.login
  AND f.follows = u2.login
CREATE (u)-[:FOLLOWS]->(u2)

If you have to delete data and start over

First delete relationships:

MATCH ()-[r:FOLLOWS]-() 
DELETE r

Then delete tables:

MATCH (r:User)
DELETE r
MATCH (r:Follows)
DELETE r

Libraries Used

Database

Neo4j

Python

requests

neo4j-driver

Javascript

d3js

queue.js

LICENSE

BSD-2

CONTRIBUTING

Contact me if you found this interesting

FUTURE PLANS

Add more end-to-end Neo4j Graph Database examples

Example Graph output images from this repo

1st and 2nd level relationships (D3Js)

Imgur

1st level relationships (Neo4j)

Imgur

1st and 2nd level relationships (Neo4j)

Imgur




鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap