bmc/params.py.example

33 lines
790 B
Plaintext
Raw Normal View History

2014-05-26 16:12:21 +02:00
# -*- coding: utf8 -*-
2014-05-27 12:17:59 +02:00
2014-04-26 12:35:07 +02:00
# The folder in which the papers should be stored
folder = "/home/phyks/Papers/"
2014-06-11 14:37:10 +02:00
if folder[-1] != '/':
folder = folder+'/'
2014-04-26 12:35:07 +02:00
# The various proxies available to retrieve the content
proxies = [
'',
'socks5://localhost:4711'
]
# The mask to rename files
# %f = last name of first author
# %l = last name of last author
# %j = name of the journal
# %Y = published year
# %t = title
# %a = authors
# %v = arXiv version (e.g. '-v1') or nothing if not an arXiv paper
format_articles = "%f_%l-%j-%Y%v"
2014-04-26 12:35:07 +02:00
format_books = "%a-%t"
# Other customization
# List of lambda functions to apply
# E.g. : format_custom = [lambda x: x.replace('test', 'some_expr')]
format_custom = []
2014-05-27 12:17:59 +02:00
# Fields to ignore when exporting Bibtex entries
ignore_fields = ['file', 'doi', 'tag']