├── .github ├── dependabot.yml └── workflows │ └── main.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.rst ├── docs ├── Makefile └── source │ ├── conf.py │ └── index.rst ├── flake.lock ├── flake.nix ├── papis_zotero ├── __init__.py ├── bibtex.py ├── server.py ├── sql.py └── utils.py ├── pyproject.toml ├── tests ├── .gitkeep ├── __init__.py ├── resources │ ├── bibtex │ │ ├── files │ │ │ ├── 8 │ │ │ │ └── Schaeffer - 2013 - Efficient spherical harmonic transforms aimed at p.pdf │ │ │ ├── 10 │ │ │ │ └── De Lellis and Székelyhidi - 2009 - The Euler equations as a differential inclusion.pdf │ │ │ ├── 12 │ │ │ │ └── Grubb - 2015 - Fractional Laplacians on domains, a development of.pdf │ │ │ └── 15 │ │ │ │ └── Svärd and Nordström - 2014 - Review of summation-by-parts schemes for initial–b.pdf │ │ └── zotero-library.bib │ ├── bibtex_out.yaml │ ├── sql │ │ ├── storage │ │ │ ├── 5KW7TMDH │ │ │ │ ├── .zotero-ft-cache │ │ │ │ ├── .zotero-ft-info │ │ │ │ ├── .zotero-pdf-state │ │ │ │ └── Schaeffer - 2013 - Efficient spherical harmonic transforms aimed at p.pdf │ │ │ ├── J8FIHBUY │ │ │ │ ├── .zotero-ft-cache │ │ │ │ ├── .zotero-ft-info │ │ │ │ ├── .zotero-pdf-state │ │ │ │ └── Grubb - 2015 - Fractional Laplacians on domains, a development of.pdf │ │ │ ├── PIMHYJGK │ │ │ │ ├── .zotero-ft-cache │ │ │ │ ├── .zotero-ft-info │ │ │ │ ├── .zotero-pdf-state │ │ │ │ └── De Lellis and Székelyhidi - 2009 - The Euler equations as a differential inclusion.pdf │ │ │ └── WN7WJBGS │ │ │ │ ├── .zotero-ft-cache │ │ │ │ ├── .zotero-ft-info │ │ │ │ ├── .zotero-pdf-state │ │ │ │ └── Svärd and Nordström - 2014 - Review of summation-by-parts schemes for initial–b.pdf │ │ └── zotero.sqlite │ └── sql_out.yaml ├── test_bibtex.py └── test_sql.py └── tools └── update-pypi.sh /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papis/papis-zotero/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papis/papis-zotero/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papis/papis-zotero/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papis/papis-zotero/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papis/papis-zotero/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papis/papis-zotero/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papis/papis-zotero/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papis/papis-zotero/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papis/papis-zotero/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papis/papis-zotero/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papis/papis-zotero/HEAD/flake.nix -------------------------------------------------------------------------------- /papis_zotero/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papis/papis-zotero/HEAD/papis_zotero/__init__.py -------------------------------------------------------------------------------- /papis_zotero/bibtex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papis/papis-zotero/HEAD/papis_zotero/bibtex.py -------------------------------------------------------------------------------- /papis_zotero/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papis/papis-zotero/HEAD/papis_zotero/server.py -------------------------------------------------------------------------------- /papis_zotero/sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papis/papis-zotero/HEAD/papis_zotero/sql.py -------------------------------------------------------------------------------- /papis_zotero/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papis/papis-zotero/HEAD/papis_zotero/utils.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papis/papis-zotero/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resources/bibtex/files/10/De Lellis and Székelyhidi - 2009 - The Euler equations as a differential inclusion.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papis/papis-zotero/HEAD/tests/resources/bibtex/files/10/De Lellis and Székelyhidi - 2009 - The Euler equations as a differential inclusion.pdf -------------------------------------------------------------------------------- /tests/resources/bibtex/files/12/Grubb - 2015 - Fractional Laplacians on domains, a development of.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papis/papis-zotero/HEAD/tests/resources/bibtex/files/12/Grubb - 2015 - Fractional Laplacians on domains, a development of.pdf -------------------------------------------------------------------------------- /tests/resources/bibtex/files/15/Svärd and Nordström - 2014 - Review of summation-by-parts schemes for initial–b.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papis/papis-zotero/HEAD/tests/resources/bibtex/files/15/Svärd and Nordström - 2014 - Review of summation-by-parts schemes for initial–b.pdf -------------------------------------------------------------------------------- /tests/resources/bibtex/files/8/Schaeffer - 2013 - Efficient spherical harmonic transforms aimed at p.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papis/papis-zotero/HEAD/tests/resources/bibtex/files/8/Schaeffer - 2013 - Efficient spherical harmonic transforms aimed at p.pdf -------------------------------------------------------------------------------- /tests/resources/bibtex/zotero-library.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papis/papis-zotero/HEAD/tests/resources/bibtex/zotero-library.bib -------------------------------------------------------------------------------- /tests/resources/bibtex_out.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papis/papis-zotero/HEAD/tests/resources/bibtex_out.yaml -------------------------------------------------------------------------------- /tests/resources/sql/storage/5KW7TMDH/.zotero-ft-cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papis/papis-zotero/HEAD/tests/resources/sql/storage/5KW7TMDH/.zotero-ft-cache -------------------------------------------------------------------------------- /tests/resources/sql/storage/5KW7TMDH/.zotero-ft-info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papis/papis-zotero/HEAD/tests/resources/sql/storage/5KW7TMDH/.zotero-ft-info -------------------------------------------------------------------------------- /tests/resources/sql/storage/5KW7TMDH/.zotero-pdf-state: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papis/papis-zotero/HEAD/tests/resources/sql/storage/5KW7TMDH/.zotero-pdf-state -------------------------------------------------------------------------------- /tests/resources/sql/storage/5KW7TMDH/Schaeffer - 2013 - Efficient spherical harmonic transforms aimed at p.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papis/papis-zotero/HEAD/tests/resources/sql/storage/5KW7TMDH/Schaeffer - 2013 - Efficient spherical harmonic transforms aimed at p.pdf -------------------------------------------------------------------------------- /tests/resources/sql/storage/J8FIHBUY/.zotero-ft-cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papis/papis-zotero/HEAD/tests/resources/sql/storage/J8FIHBUY/.zotero-ft-cache -------------------------------------------------------------------------------- /tests/resources/sql/storage/J8FIHBUY/.zotero-ft-info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papis/papis-zotero/HEAD/tests/resources/sql/storage/J8FIHBUY/.zotero-ft-info -------------------------------------------------------------------------------- /tests/resources/sql/storage/J8FIHBUY/.zotero-pdf-state: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papis/papis-zotero/HEAD/tests/resources/sql/storage/J8FIHBUY/.zotero-pdf-state -------------------------------------------------------------------------------- /tests/resources/sql/storage/J8FIHBUY/Grubb - 2015 - Fractional Laplacians on domains, a development of.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papis/papis-zotero/HEAD/tests/resources/sql/storage/J8FIHBUY/Grubb - 2015 - Fractional Laplacians on domains, a development of.pdf -------------------------------------------------------------------------------- /tests/resources/sql/storage/PIMHYJGK/.zotero-ft-cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papis/papis-zotero/HEAD/tests/resources/sql/storage/PIMHYJGK/.zotero-ft-cache -------------------------------------------------------------------------------- /tests/resources/sql/storage/PIMHYJGK/.zotero-ft-info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papis/papis-zotero/HEAD/tests/resources/sql/storage/PIMHYJGK/.zotero-ft-info -------------------------------------------------------------------------------- /tests/resources/sql/storage/PIMHYJGK/.zotero-pdf-state: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papis/papis-zotero/HEAD/tests/resources/sql/storage/PIMHYJGK/.zotero-pdf-state -------------------------------------------------------------------------------- /tests/resources/sql/storage/PIMHYJGK/De Lellis and Székelyhidi - 2009 - The Euler equations as a differential inclusion.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papis/papis-zotero/HEAD/tests/resources/sql/storage/PIMHYJGK/De Lellis and Székelyhidi - 2009 - The Euler equations as a differential inclusion.pdf -------------------------------------------------------------------------------- /tests/resources/sql/storage/WN7WJBGS/.zotero-ft-cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papis/papis-zotero/HEAD/tests/resources/sql/storage/WN7WJBGS/.zotero-ft-cache -------------------------------------------------------------------------------- /tests/resources/sql/storage/WN7WJBGS/.zotero-ft-info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papis/papis-zotero/HEAD/tests/resources/sql/storage/WN7WJBGS/.zotero-ft-info -------------------------------------------------------------------------------- /tests/resources/sql/storage/WN7WJBGS/.zotero-pdf-state: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papis/papis-zotero/HEAD/tests/resources/sql/storage/WN7WJBGS/.zotero-pdf-state -------------------------------------------------------------------------------- /tests/resources/sql/storage/WN7WJBGS/Svärd and Nordström - 2014 - Review of summation-by-parts schemes for initial–b.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papis/papis-zotero/HEAD/tests/resources/sql/storage/WN7WJBGS/Svärd and Nordström - 2014 - Review of summation-by-parts schemes for initial–b.pdf -------------------------------------------------------------------------------- /tests/resources/sql/zotero.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papis/papis-zotero/HEAD/tests/resources/sql/zotero.sqlite -------------------------------------------------------------------------------- /tests/resources/sql_out.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papis/papis-zotero/HEAD/tests/resources/sql_out.yaml -------------------------------------------------------------------------------- /tests/test_bibtex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papis/papis-zotero/HEAD/tests/test_bibtex.py -------------------------------------------------------------------------------- /tests/test_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papis/papis-zotero/HEAD/tests/test_sql.py -------------------------------------------------------------------------------- /tools/update-pypi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papis/papis-zotero/HEAD/tools/update-pypi.sh --------------------------------------------------------------------------------