├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── R ├── authenticate.R ├── create_collection.R ├── edit_item.R ├── options.R ├── read.R ├── size.R ├── utils-pipe.R └── utils.R ├── README.Rmd ├── README.md ├── man ├── pipe.Rd ├── zot_add_to_collection.Rd ├── zot_auth.Rd ├── zot_convert_creators_to_df_list.Rd ├── zot_convert_tags_to_df_list.Rd ├── zot_create_collection.Rd ├── zot_create_csv_template.Rd ├── zot_create_items.Rd ├── zot_get_creator_types.Rd ├── zot_get_item_template.Rd ├── zot_get_item_types.Rd ├── zot_get_item_types_fields.Rd ├── zot_read_children.Rd ├── zot_read_children_id.Rd ├── zot_read_item.Rd ├── zot_set_options.Rd ├── zot_size.Rd └── zot_which_collection.Rd └── zoteroR.Rproj /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/zoteror/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/zoteror/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/zoteror/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2025 2 | COPYRIGHT HOLDER: zoteror authors 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/zoteror/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/zoteror/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/authenticate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/zoteror/HEAD/R/authenticate.R -------------------------------------------------------------------------------- /R/create_collection.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/zoteror/HEAD/R/create_collection.R -------------------------------------------------------------------------------- /R/edit_item.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/zoteror/HEAD/R/edit_item.R -------------------------------------------------------------------------------- /R/options.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/zoteror/HEAD/R/options.R -------------------------------------------------------------------------------- /R/read.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/zoteror/HEAD/R/read.R -------------------------------------------------------------------------------- /R/size.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/zoteror/HEAD/R/size.R -------------------------------------------------------------------------------- /R/utils-pipe.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/zoteror/HEAD/R/utils-pipe.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/zoteror/HEAD/R/utils.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/zoteror/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/zoteror/HEAD/README.md -------------------------------------------------------------------------------- /man/pipe.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/zoteror/HEAD/man/pipe.Rd -------------------------------------------------------------------------------- /man/zot_add_to_collection.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/zoteror/HEAD/man/zot_add_to_collection.Rd -------------------------------------------------------------------------------- /man/zot_auth.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/zoteror/HEAD/man/zot_auth.Rd -------------------------------------------------------------------------------- /man/zot_convert_creators_to_df_list.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/zoteror/HEAD/man/zot_convert_creators_to_df_list.Rd -------------------------------------------------------------------------------- /man/zot_convert_tags_to_df_list.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/zoteror/HEAD/man/zot_convert_tags_to_df_list.Rd -------------------------------------------------------------------------------- /man/zot_create_collection.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/zoteror/HEAD/man/zot_create_collection.Rd -------------------------------------------------------------------------------- /man/zot_create_csv_template.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/zoteror/HEAD/man/zot_create_csv_template.Rd -------------------------------------------------------------------------------- /man/zot_create_items.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/zoteror/HEAD/man/zot_create_items.Rd -------------------------------------------------------------------------------- /man/zot_get_creator_types.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/zoteror/HEAD/man/zot_get_creator_types.Rd -------------------------------------------------------------------------------- /man/zot_get_item_template.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/zoteror/HEAD/man/zot_get_item_template.Rd -------------------------------------------------------------------------------- /man/zot_get_item_types.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/zoteror/HEAD/man/zot_get_item_types.Rd -------------------------------------------------------------------------------- /man/zot_get_item_types_fields.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/zoteror/HEAD/man/zot_get_item_types_fields.Rd -------------------------------------------------------------------------------- /man/zot_read_children.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/zoteror/HEAD/man/zot_read_children.Rd -------------------------------------------------------------------------------- /man/zot_read_children_id.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/zoteror/HEAD/man/zot_read_children_id.Rd -------------------------------------------------------------------------------- /man/zot_read_item.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/zoteror/HEAD/man/zot_read_item.Rd -------------------------------------------------------------------------------- /man/zot_set_options.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/zoteror/HEAD/man/zot_set_options.Rd -------------------------------------------------------------------------------- /man/zot_size.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/zoteror/HEAD/man/zot_size.Rd -------------------------------------------------------------------------------- /man/zot_which_collection.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/zoteror/HEAD/man/zot_which_collection.Rd -------------------------------------------------------------------------------- /zoteroR.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giocomai/zoteror/HEAD/zoteroR.Rproj --------------------------------------------------------------------------------