Python interface for querying the editorial manager journal submission system
Project description
Python interface for the Aries Editorial Manager journal submission system at https://www.editorialmanager.com.
Currently supported:
Main menu: Reading of number of submissions per category (e.g. “Submissions being processed”)
Pending submissions: Dates & status of pending submissions (e.g. “under review”)
Completed submissions: Dates & status of completed submissions (e.g. “accepted”)
Not (yet) supported:
Creation of new submissions
Modification of existing submissions
Requirements
beautifulsoup
pandas
html5lib (because the responses of the editorialmanager are malformed HTML, the python html parser from beautifulsoup cannot be used)
Installation
pip install editorialmanager
Usage
from editorialmanager import Journal
# instantiate the journal by using the abbreviation that is used by editorialmanager
# For example: The journal "Critical Care" has the EditorialManager URL https://www.editorialmanager.com/cric/
# Therefore, the journal name to use here is "cric"
cric = Journal('cric', username='my-username', password='my-password')
# Get the overview of submissions per type/category from the main menu
cric.overview()
# Returns:
'''
| | name | count | type |
|---:|:------------------------------------------|--------:|:----------------|
| 0 | Submissions Sent Back to Author | 0 | New Submissions |
| 1 | Incomplete Submissions | 0 | New Submissions |
| 2 | Submissions Waiting for Author's Approval | 0 | New Submissions |
| 3 | Submissions Being Processed | 1 | New Submissions |
| 4 | Submissions Needing Revision | 0 | Revisions |
| 5 | Revisions Sent Back to Author | 0 | Revisions |
| 6 | Incomplete Submissions Being Revised | 0 | Revisions |
| 7 | Revisions Waiting for Author's Approval | 0 | Revisions |
| 8 | Revisions Being Processed | 0 | Revisions |
| 9 | Declined Revisions | 0 | Revisions |
| 10 | Submissions with a Decision | 1 | Completed |
| 11 | Submissions with Production Completed | 0 | Completed |
'''
# Get information about currently pending submissions
cric.pending_submissions()
# Returns:
'''
| | Manuscript Number | Title | Initial Date Submitted | Status Date | Current Status |
|---:|:--------------------|:-------------------|:-------------------------|:--------------------|:-----------------|
| 0 | CRIC-x-xx-xxxx x | <Manuscript title> | 2020-12-02 00:00:00 | 2020-12-03 00:00:00 | Editor Invited |
'''
# Get information about completed submissions
cric.completed_submissions()
# Returns:
'''
| | Manuscript Number | Title | Initial Date Submitted | Status Date | Current Status | Date Final Disposition Set | Final Disposition |
|---:|:--------------------|:-------------------|:-------------------------|:--------------------|:----------------------|:-----------------------------|:--------------------|
| 0 | CRIC-x-xx-xxxxx | <Manuscript title> | 2016-07-03 00:00:00 | 2016-07-19 00:00:00 | Final Decision Reject | 2016-07-19 00:00:00 | Accept |
'''
Notes
The actual displayed columns from pending and completed submissions are specified by each journal independently and different columns maybe included or missing depending on the journal.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file editorialmanager-0.1.1.tar.gz
.
File metadata
- Download URL: editorialmanager-0.1.1.tar.gz
- Upload date:
- Size: 4.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.1.post20201107 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2ed0de01848908ed951e2aed2d12bc6d33b40903b99a0cd55f00c451599054b5 |
|
MD5 | 7801d1c75a5c93bd6e5e7a6f097689ef |
|
BLAKE2b-256 | 6c0a05ed0666a29c2ff8c8e836936b9a8bdbdefb51e1f59b7d108e7cd0026a2e |
File details
Details for the file editorialmanager-0.1.1-py3-none-any.whl
.
File metadata
- Download URL: editorialmanager-0.1.1-py3-none-any.whl
- Upload date:
- Size: 16.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.1.post20201107 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 74906844424ae5ee6244aa75ce9c2284822ab33ee2a2ea6617b31d1e4476ad7d |
|
MD5 | 66925d2ef2c4c273c8b396f5e6d6eb4c |
|
BLAKE2b-256 | 4e171876ccef332bba0a0b1d4364e3ae79b2ee73228f204ccc8065b9889745f1 |