Skip to content

Commit

Permalink
Cert error fix. (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
rajivsam and [email protected] authored May 11, 2020
1 parent c449d56 commit 221907c
Show file tree
Hide file tree
Showing 23 changed files with 148 additions and 952 deletions.
5 changes: 1 addition & 4 deletions adbnx_adapter/MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
include dgl/graph_descriptor.yaml
include node2vec/imdb_graph_descriptor.yaml
include amlnx_adapter/dgl/cert/ca-b9b556df.crt
include amlnx_adapter/cert/ca-b9b556df.crt

18 changes: 2 additions & 16 deletions adbnx_adapter/adbnx_adapter.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,26 +1,12 @@
Metadata-Version: 2.1
Name: adbnx-adapter
Version: 0.0.0.2
Version: 0.0.0.2.1
Summary: package for creating networkx adapters for arangodb
Home-page: https://github.com/arangoml/networkx-adapter
Author: ArangoDB
Author-email: [email protected]
License: Apache
Description: # ArangoDB-Networkx Adapter

<center>
<img src="assets/logos/ArangoDB_logo.png" width=95% >
</center>


Networkx is commonly used for analysis of network-data. If your analytics use cases require the use of all your graph data, for example, to summarize graph structure, or answer global path traversal queries, then using the ArangoDB Pregel API is recommended. If your analysis pertains to a subgraph, then you may be interested in getting the Networkx representation of the subgraph for one of the following reasons:

1. An algorithm for your use case is available in Networkx.
2. A library that you want to use for your use case works with Networkx Graphs as input.


Check the DGL folder for an implementation of a Networkx-Adapter for the Deep Graph Library.

Description: package for creating networkx adapters for arangodb
Platform: UNKNOWN
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Expand Down
12 changes: 3 additions & 9 deletions adbnx_adapter/adbnx_adapter.egg-info/SOURCES.txt
Original file line number Diff line number Diff line change
@@ -1,17 +1,11 @@
MANIFEST.in
setup.cfg
setup.py
adbnx_adapter/__init__.py
adbnx_adapter/arangoDB_networkx_arango_adapter.py
adbnx_adapter/arangoDB_networkx_adapter.py
adbnx_adapter/arangodb_networkx_adapter_base.py
adbnx_adapter/custom_http_client.py
adbnx_adapter/test_conn.py
adbnx_adapter.egg-info/PKG-INFO
adbnx_adapter.egg-info/SOURCES.txt
adbnx_adapter.egg-info/dependency_links.txt
adbnx_adapter.egg-info/top_level.txt
adbnx_adapter/dgl/__init__.py
adbnx_adapter/dgl/custom_http_client.py
adbnx_adapter/dgl/dgl_networkx_arango_adapter.py
adbnx_adapter/node2vec/__init__.py
adbnx_adapter/node2vec/imdb_networkx_arango_adapter.py
adbnx_adapter/node2vec/test_conn.py
adbnx_adapter.egg-info/top_level.txt
5 changes: 1 addition & 4 deletions adbnx_adapter/adbnx_adapter/arangoDB_networkx_adapter.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
from adbnx_adapter.arangodb_networkx_adapter_base import Networkx_Adapter_Base
import networkx as nx
from arango import ArangoClient
from adbnx_adapter.custom_http_client import CustomHTTPClient


class ArangoDB_Networkx_Adapter(Networkx_Adapter_Base):
Expand All @@ -22,9 +21,7 @@ def __init__(self, conn):
password = conn["password"]
dbName = conn["dbName"]
con_str = "https://" + url + ":8529"
client = ArangoClient(hosts= con_str,\
http_client=CustomHTTPClient(username = user_name,\
password = password))
client = ArangoClient(hosts= con_str)
self.db = client.db(dbName, user_name, password)
else:
print("The connection information you supplied is invalid, please check and try again!")
Expand Down
78 changes: 0 additions & 78 deletions adbnx_adapter/adbnx_adapter/cert/ca-b9b556df.crt

This file was deleted.

71 changes: 0 additions & 71 deletions adbnx_adapter/adbnx_adapter/custom_http_client.py

This file was deleted.

48 changes: 0 additions & 48 deletions adbnx_adapter/adbnx_adapter/dgl/README.md

This file was deleted.

78 changes: 0 additions & 78 deletions adbnx_adapter/adbnx_adapter/dgl/cert/ca-b9b556df.crt

This file was deleted.

Loading

0 comments on commit 221907c

Please sign in to comment.