This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from base64 import b64encode | |
from flask import Flask, redirect, url_for, session, request, jsonify | |
from flask_oauthlib.client import OAuth | |
API_SECRET = "SECRET_KEY" | |
API_KEY = "API_KEY" | |
PUBLIC_URL = "http://SOMETHING.ngrok.io/" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import csv | |
import uuid | |
# Cosas para neo4j | |
from py2neo import Graph, Node, Relationship | |
import json | |
import requests | |
# Cosas para arango | |
from arango import Arango |