GetArticle API to local Neo4J database

This commit is contained in:
2025-03-01 10:32:08 +01:00
parent ae4f4e125e
commit 75564e57a3
4 changed files with 40 additions and 0 deletions

13
main.py Normal file
View File

@@ -0,0 +1,13 @@
import APICall.GetArticle as neo4japi
from flask import Flask
def main():
uri = "bolt://localhost:7687"
username = "neo4j"
password = "daywalker14"
api = neo4japi.Neo4JAPis(uri, username, password)
api.run()
if __name__ == "__main__":
main()