|
| 1 | +<div align="center"> |
| 2 | + |
| 3 | +# NoRA - Notion Research Assistant |
| 4 | + |
| 5 | +[](https://github.com/pre-commit/pre-commit) |
| 6 | +[](https://github.com/ashleve/lightning-hydra-template#license) |
| 7 | + |
| 8 | +A Notion template to help you keep track of the papers you read, their authors, |
| 9 | +your notes and more 🚀⚡🔥 |
| 10 | + |
| 11 | +</div> |
| 12 | + |
| 13 | +<br> |
| 14 | + |
| 15 | +## 📌 Introduction |
| 16 | + |
| 17 | +This project was built as a [Notion](https://www.notion.so)-based alternative to |
| 18 | +reference management softwares such as Zotero and Mendeley. |
| 19 | + |
| 20 | +It is composed of the **NoRA Notion template** for you to build on top of, as |
| 21 | +well as **NoRA-Tools** to programmatically: |
| 22 | +- 🔥 upload an arxiv paper to your NoRA library from its ID, URL or title |
| 23 | +- 🔥 move all your Zotero library to your NoRA library |
| 24 | + |
| 25 | +### 🧪 NoRA template |
| 26 | + |
| 27 | +The NoRA template provides you with a structure of interconnected databases to |
| 28 | +keep track of your research papers and notes. |
| 29 | +More specifically, the template contains the following databases: |
| 30 | +- `🏗️ Projects` |
| 31 | +- `📜 Papers` |
| 32 | +- `👤 People` |
| 33 | +- `🏢 Affiliations` |
| 34 | +- `🤹 Conferences & journals` |
| 35 | +- `🧲 Key topics` |
| 36 | + |
| 37 | +The inner workings of the template are quite straightforward, the best way to |
| 38 | +get familiar with it is probably to play with it 😉 ! |
| 39 | + |
| 40 | +### 🛠 NoRA-Tools |
| 41 | + |
| 42 | +The NoRA-Tools provide functionalities to programmatically upload data to your |
| 43 | +NoRA template. For now, the two main functionalities are uploading your whole |
| 44 | +Zotero library to NoRA and uploading an arxiv paper (and associated metadata) |
| 45 | +to NoRA. |
| 46 | + |
| 47 | +You can freely modify or extend the NoRA template. However, keep in mind that if |
| 48 | +you want to use NoRA-Tools after modifying some sensitive page fields, you will |
| 49 | +need to adjust your [Notion configuration](###notion-configuration) accordingly. |
| 50 | + |
| 51 | +<br> |
| 52 | + |
| 53 | +## 🧱 Installation |
| 54 | + |
| 55 | +### Installing the template |
| 56 | + |
| 57 | +Simply duplicate the [NoRA template](https://silent-switch-780.notion.site/Template-research-library-286d3393a7e845c6a689a5c693790987) to your personal Notion account. |
| 58 | + |
| 59 | +### Installing NoRA tools |
| 60 | + |
| 61 | +First, install the NoRA-Tools locally on your machine. |
| 62 | + |
| 63 | +```bash |
| 64 | +# clone project |
| 65 | +git clone [email protected]:drprojects/nora.git |
| 66 | +cd nora |
| 67 | + |
| 68 | +# create a 'nora' conda environment with required dependencies |
| 69 | +conda env create -f nora.yml |
| 70 | +``` |
| 71 | + |
| 72 | +### Notion configuration |
| 73 | + |
| 74 | +Next, you will need to configure your NoRA-Tools to connect to your NoRA databases in Notion. |
| 75 | +To this end, follow the official guide to [Create a Notion Integration](https://developers.notion.com/docs/create-a-notion-integration). |
| 76 | +Following all steps in this page you will: |
| 77 | +- Create an integration and get a **Token** |
| 78 | +- For each database in the NoRA template: |
| 79 | + - Share the database with your integration |
| 80 | + - Save the **database ID** |
| 81 | + |
| 82 | +You can then save the **Token** and the **database IDs** in the `configs/notion/default.yaml` file: |
| 83 | + |
| 84 | +````yaml |
| 85 | +# Adapt to your own Notion library. |
| 86 | +# See https://developers.notion.com/docs/create-a-notion-integration |
| 87 | +token: "your_integration_token" |
| 88 | +papers_db_id: "your_papers_database_id" |
| 89 | +people_db_id: "your_people_database_id" |
| 90 | +affiliations_db_id: "your_affiliations_database_id" |
| 91 | +venues_db_id: "your_venues_database_id" |
| 92 | +topics_db_id: "your_topics_database_id" |
| 93 | +```` |
| 94 | + |
| 95 | +<details> |
| 96 | +<summary><b>⚠️ Want to modify some field names in NoRA ?️</b></summary> |
| 97 | + |
| 98 | +By default, NoRA-Tools expect the attribute fields (eg column names in Notion) of your papers, people, etc. to have specific values. |
| 99 | +If you want to adjust those, you will also need to adjust the `configs/notion/default.yaml` file: |
| 100 | + |
| 101 | +````yaml |
| 102 | +# If you happen to modify your field names in Notion, update the |
| 103 | +# following database-specific keys |
| 104 | +person_keys: |
| 105 | + name: 'Name' |
| 106 | + affiliations: '🏢 Affiliations' |
| 107 | + papers: '📜 Papers' |
| 108 | + website: 'Website' |
| 109 | + |
| 110 | +paper_keys: |
| 111 | + name: 'Name' |
| 112 | + authors: '👤 Authors' |
| 113 | + abstract: 'Abstract' |
| 114 | + topics: '🧲 Key topics' |
| 115 | + url: 'URL' |
| 116 | + to_read: 'Reading status' |
| 117 | + year: 'Year' |
| 118 | + venue: '🤹 Venue' |
| 119 | + |
| 120 | +affiliation_keys: |
| 121 | + name: 'Name' |
| 122 | + |
| 123 | +venue_keys: |
| 124 | + name: 'Name' |
| 125 | +```` |
| 126 | + |
| 127 | +</details> |
| 128 | + |
| 129 | +<details> |
| 130 | +<summary><b> |
| 131 | +⚠️ Want to add your own 🤹 Conferences & journals ?️</b></summary> |
| 132 | + |
| 133 | +By default, when parsing an arxiv paper, NoRA-Tools will try to figure out |
| 134 | +which `🤹 Conferences & journals` to place it under. However, one can hardly |
| 135 | +account for all possible conference and journal names, nor for all the slight |
| 136 | +formatting differences used to describe how a paper was published. Yet, we |
| 137 | +attempt to group the most frequent ones using a predefined `VENUES` dictionary |
| 138 | +in `nora/utils/venues.py`. |
| 139 | + |
| 140 | +If many papers from your library are from a conference or journal absent from |
| 141 | +this dictionary, and you would like them to be grouped under the same |
| 142 | +`🤹 Conferences & journals` item, you can simply append your own entries in |
| 143 | +`VENUES`, using the following format: |
| 144 | + |
| 145 | +````python |
| 146 | +'lowercase_match_to_search_for_in_arxiv_metadata': 'shorthand_under_which_to_group' |
| 147 | +```` |
| 148 | + |
| 149 | +</details> |
| 150 | + |
| 151 | +### Zotero configuration (optional) |
| 152 | + |
| 153 | +If you intend to move your whole Zotero library to Notion, you will need to configure your NoRA-Tools accordingly. |
| 154 | +To this end, you will need to: |
| 155 | +- Get your Zotero **library ID** by checking the UserID in your [profile settings](https://www.zotero.org/settings/keys) |
| 156 | +- Create a Zotero **API key** in your [profile settings](https://www.zotero.org/settings/keys) |
| 157 | + |
| 158 | +You can then save your Zotero **library ID** and **API key** in the `configs/zotero/default.yaml` file: |
| 159 | + |
| 160 | +````yaml |
| 161 | +# Adapt to your own Zotero library |
| 162 | +library_id: 'your_library_id' |
| 163 | +api_token: 'your_api_key' |
| 164 | +```` |
| 165 | + |
| 166 | +By default, the `collections` (eg folders) in your Zotero library will be used to populate the `Key Topics` field of your papers in NoRA. |
| 167 | +If you want to exclude some of your collections from this behavior, your can list them in: |
| 168 | + |
| 169 | +````yaml |
| 170 | +ignored_collections: ['collection name 1', 'collection name 2'] |
| 171 | +```` |
| 172 | + |
| 173 | +### Proxy configuration (optional) |
| 174 | + |
| 175 | +If your machine has a proxy, you will need to configure your NoRA-Tools to use it. |
| 176 | +To this end, specify your `$HTTP_PROXY` and `$HTTPS_PROXY` in the `configs/proxy/default.yaml` file: |
| 177 | + |
| 178 | +````yaml |
| 179 | +http_proxy: 'your_http_proxy' |
| 180 | +https_proxy: 'your_https_proxy' |
| 181 | +```` |
| 182 | + |
| 183 | +<br> |
| 184 | + |
| 185 | +## ⚡ Using NoRA-Tools |
| 186 | + |
| 187 | +### Uploading an arxiv paper to NoRA |
| 188 | + |
| 189 | +From its arxiv ID: |
| 190 | + |
| 191 | +```bash |
| 192 | +python nora/arxiv_to_nora.py arxiv.id="'2204.07548'" |
| 193 | +``` |
| 194 | + |
| 195 | +From its url: |
| 196 | + |
| 197 | +```bash |
| 198 | +python nora/arxiv_to_nora.py arxiv.id="https://arxiv.org/abs/2204.07548" |
| 199 | +``` |
| 200 | + |
| 201 | +From its title: |
| 202 | + |
| 203 | +```bash |
| 204 | +python nora/arxiv_to_nora.py arxiv.title="Learning Multi-View Aggregation In the Wild for Large-Scale 3D Semantic Segmentation" |
| 205 | +``` |
| 206 | + |
| 207 | +### Uploading your entire Zotero library to NoRA |
| 208 | + |
| 209 | +```bash |
| 210 | +python nora/zotero_to_nora.py |
| 211 | +``` |
| 212 | + |
| 213 | +<br> |
| 214 | + |
| 215 | +## License |
| 216 | + |
| 217 | +NoRA is licensed under the MIT License. |
| 218 | + |
| 219 | +``` |
| 220 | +MIT License |
| 221 | + |
| 222 | +Copyright (c) 2021 ashleve |
| 223 | + |
| 224 | +Permission is hereby granted, free of charge, to any person obtaining a copy |
| 225 | +of this software and associated documentation files (the "Software"), to deal |
| 226 | +in the Software without restriction, including without limitation the rights |
| 227 | +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 228 | +copies of the Software, and to permit persons to whom the Software is |
| 229 | +furnished to do so, subject to the following conditions: |
| 230 | + |
| 231 | +The above copyright notice and this permission notice shall be included in all |
| 232 | +copies or substantial portions of the Software. |
| 233 | + |
| 234 | +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 235 | +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 236 | +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 237 | +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 238 | +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 239 | +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| 240 | +SOFTWARE. |
| 241 | +``` |
0 commit comments