Skip to content

Load networks from SQL database #250

@hackl

Description

@hackl

It would be great to have a more streamlined and user-friendly method for loading networks directly from an SQL database. Currently, the process works using the following code:

conn = sqlite3.connect("networks.db")
df_lotr = pd.read_sql_query('SELECT DISTINCT source, target from lotr', conn).rename(columns={"source": "v", "target": "w"})
conn.close()
n_lotr = pp.io.pandas.df_to_graph(df_lotr).to_undirected()

Metadata

Metadata

Assignees

Labels

enhancementNew feature or request

Projects

No projects

Relationships

None yet

Development

No branches or pull requests

Issue actions