├── .gitignore ├── LICENSE ├── Readme.md ├── db_classes_mendeley.py ├── db_classes_zotero.py ├── mendeley2zotero.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.pyc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seeholza/mendeley2zotero/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seeholza/mendeley2zotero/HEAD/Readme.md -------------------------------------------------------------------------------- /db_classes_mendeley.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seeholza/mendeley2zotero/HEAD/db_classes_mendeley.py -------------------------------------------------------------------------------- /db_classes_zotero.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seeholza/mendeley2zotero/HEAD/db_classes_zotero.py -------------------------------------------------------------------------------- /mendeley2zotero.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seeholza/mendeley2zotero/HEAD/mendeley2zotero.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | SQLAlchemy==0.9.3 --------------------------------------------------------------------------------