1
0
mirror of https://github.com/gsi-upm/sitc synced 2024-11-22 06:22:29 +00:00

Python2 compatibility + sparql server

This commit is contained in:
J. Fernando Sánchez 2017-02-27 12:52:40 +01:00
parent 32278338bf
commit 5c5db4fe7a
4 changed files with 5 additions and 0 deletions

View File

@ -4,3 +4,4 @@ Exercises for Intelligent Systems Course
* ML-1: introduction to machine learning with scikit-learn * ML-1: introduction to machine learning with scikit-learn
* ML-2: introduction to machine learning with pandas and scikit-learn * ML-2: introduction to machine learning with pandas and scikit-learn
* NLP: introduction to NLP * NLP: introduction to NLP
* LOD: Linked Open Data, exercises and example code

View File

@ -1,5 +1,8 @@
import sys import sys
from future.standard_library import install_aliases
install_aliases()
from urllib import request, parse from urllib import request, parse
from rdflib import Graph, term from rdflib import Graph, term
from lxml import etree from lxml import etree

View File

@ -1,3 +1,4 @@
future
rdflib rdflib
rdflib-jsonld rdflib-jsonld
lxml lxml