معرفی شرکت ها


arxiv-filter-0.3.3


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Quickly filter the daily arXiv email for your interests.
ویژگی مقدار
سیستم عامل -
نام فایل arxiv-filter-0.3.3
نام arxiv-filter
نسخه کتابخانه 0.3.3
نگهدارنده []
ایمیل نگهدارنده []
نویسنده deragent
ایمیل نویسنده github@deragent.net
آدرس صفحه اصلی https://github.com/deragent/arXivFilter
آدرس اینترنتی https://pypi.org/project/arxiv-filter/
مجوز MIT
# arXiv Filter ## Content - [Usage](#usage) - [Installation](#installation) - [Config File](#config-File) - [Dependencies](#dependencies) **Tired of scanning hundreds of arXiv entries like this manually?** ![Example of an arXiv email entry](https://github.com/deragent/arXivFilter/raw/master/doc/images/ArxivEmail.png) This is a simple GUI program, which can be used to filter the daily arXiv email according to criteria defined in a custom config file. The filtering / matching of individual arXiv entries is according to the following properties: - Author name - Keywords in the title - Keywords in the abstract - Collaboration name - Category name The filtering is done by attributing a score to each entry of the arXiv email. The additive score for each keyword can be specified in the [config file](#config-file). In the program window, papers where at least one keyword was found, are shown in the list at the top (_Filtered Entries_) and papers with no match in the list below (_Other Entries_). Papers with a higher score (for example matching multiple keywords) are shown in darker blue and at the top of the list. **This allows for quickly scanning the resulting filtered list and finding papers which are relevant to your interests / research.** ## Installation The quickest way to install this program is via [pip / pypi](https://pypi.org/project/arxiv-filter/): # pip3 install arxiv_filter You can also directly clone this repository onto your computer. In this case make sure to manually install the [dependencies](#dependencies). ## Usage Run with # python3 -m arxiv_filter or when installed via pip # arxiv-filter The program looks for a config file in 4 default locations: 1. `./arxiv_filter.yaml` 2. `~/.config/arxiv_filter.yaml` 3. `~/arxiv_filter.yaml` 4. `/etc/arxiv_filter.yaml` The first config file of this list which exists is used. Alternatively, a custom config file can be passed to the program via the `-c PATH_TO_FILE` option. ### Interface ![Empty program window after start-up.](https://github.com/deragent/arXivFilter/raw/master/doc/images/WindowEmpty.png) Once the program has launched, an empty window is presented. Copy and past or drag and drop the text of an arXiv email into the window in order to start the filtering process. ![Program window showing filtered arXiv entries after copy/paste or drag-n-drop.](https://github.com/deragent/arXivFilter/raw/master/doc/images/WindowFiltered.png) Once the filtering is done, the two lists in the window are populated with entries. The top entries are highlighted in different shades of blue, according to the total score of an entry. In the image, the paper "High-resolution for IAXO: MMC-based X-ray Detectors" has obtained the highest score of 24 and is therefore listed at the top. The score for each entry is given. The letters underneath the score indicate, which parts of the arXiv entry were matched: - [**P**]eople: At least one author was matched. - [**T**]itle: At least on keyword appears in the paper title. - [**A**]bstract: At least one keyword appears in the abstract. - [**C**]ategory: At least one category was matched. - [**G**]roup: The collaboration matches. In the above example, the first paper has a match of a keyword in the title and in the abstract. By clicking on the title of the paper, the corresponding arXiv page is opened in a browser. ![Entry of the filtered list showing the details of the paper](https://github.com/deragent/arXivFilter/raw/master/doc/images/WindowDetails.png) By clicking on the [**>**] symbol, the details of the paper is shown. The details include: - Abstract: Always shown (if present) - Collaboration: Always shown (if present) - Authors: Only matched authors are shown - Categories: Only matched categories are shown If another arXiv email should be filtered, it can again be copy-pasted or drag and dropped onto the window. The list will then be updated with the information of the new email. In general: Only information present in the arXiv email is processed and shown. The program does not retrieve any further data over the internet! ## Config File The config file is structured in the YAML format. It allows for 4 different top level keys: - _author_: For filtering according to name of the paper author(s) - _keyword_: For filter according to keywords in the title and abstract of the paper. - _category_: To filter according to the category name(s) of the paper. - _collaboration_: To filter according to the name of the collaboration publishing the paper. Under each key follows a list of keywords together with a weight. And example config file is shown here: collaboration: cms: 5 atlas: 10 aegis: 5 author: Higgs: 10 Currie: 12 Gianotti: 8 keyword: sipm: 3 mppc: 3 silicon: 5 gallium: 4 arsenide: 4 The score of each keyword, author, collaboration etc. which is found in a given arXiv entry is added to the total score of the paper (for example a paper written by _Fabiola Gianotti_, as part of the _CMS_ collaboration will get a score of 5 + 10 = **15**). The matching of keywords is done in lower case and ignoring special characters as well as most common Umlauts (like ä, ö, ü, é, è etc.). So specifying for example `gaas: 20` as a keyword, will match `GaAs`, `Ga-As` etc. ## Dependencies - Python 3 Packages: - pyyaml - PyQt5 - Qt5 ### Qt5 The Qt5 runtime needs to be installed on your system. Under standard Linux distributions, this can easily be achieved via the package manager. For example under Debian: apt install qt5-default ### Python Packages The python packages can conveniently be installed via pip: pip3 install pyyaml PyQt5 #### PyQt5 Installation Issue In case the installation of `PyQt5` via pip fails with an error similar to FileNotFoundError: [Errno 2] No such file or directory: '/tmp/pip-build-gzep4mr7/PyQt5/setup.py' this is most likely due to an outdated version of pip. To fix this, upgrade your pip version with: pip3 install --upgrade pip See also: https://stackoverflow.com/questions/59711301/install-pyqt5-5-14-1-on-linux/59797479#59797479


نیازمندی

مقدار نام
- PyQt5
- pyyaml


نحوه نصب


نصب پکیج whl arxiv-filter-0.3.3:

    pip install arxiv-filter-0.3.3.whl


نصب پکیج tar.gz arxiv-filter-0.3.3:

    pip install arxiv-filter-0.3.3.tar.gz