RDFLib / rdflib

RDFLib is a Python library for working with RDF, a simple yet powerful language for representing information.
https://rdflib.readthedocs.org
BSD 3-Clause "New" or "Revised" License
2.18k stars 558 forks source link

import rdflib error in run module #850

Closed Haari237 closed 6 years ago

Haari237 commented 6 years ago

image you can see from screen shot, it run fine in shell script but gives error in Run Module

gromgull commented 6 years ago

the problem is you have a local file called calendar.py (c:\python) which is on your PYTHON_PATH and shadows the builtin module called calendar.

Remove that file and it will work.

Haari237 commented 6 years ago

thanks resolved