New papers in Network Science provides a semi-automatically curated list of new publications in Network Science. New publications are shared on weekdays on Bluesky (@networkspapers.sky.social), on Mastodon (@networkspapers@social.skewed.de), on Twitter (@networkspapers), via a mailing list, and via a RSS feed (beta version).
New publications are flagged if their title or abstract (when available) contains any of the following keywords
Connectome, connectome, Connectomes, connectomes, Connectomics, connectomics, Network, network, Networks, networks, networked, Networked, Percolation, percolation, Graph, graph, Graphs, graphs, Hypergraph, hypergraph, Hypergraphs, hypergraphs, Simplex, simplex, Simplices, simplices, Simplicial, simplicial
Flagged publications are then manually reviewed prior to being posted to insure broad relevancy.
Our wish is to make this account as useful as possible to the diverse Network Science community; comments or suggestions are welcome (see the issues tab).
The file past_posts.json
contains every new paper in network science identified and posted by @networkspapers since Nov. 30th 2017. The Mastodon account @networkspapers@social.skewed.de started posting on Nov. 8th 2022. The Bluesky account @networkspapers.bsky.social started posting on Aug. 25th 2023. The mailing list started on Oct. 12th 2023. We keep it updated in case this (incomplete and obviously biased) list could be useful in anyway to researchers.
- Applied Mathematics and Computation (journal's website, feed's url)
- Applied Network Science (journal's website, feed's url)
- Chaos (journal's website, feed's url)
- Communications Physics (journal's website, feed's url)
- Current Opinion in Structural Biology (journal's website, feed's url)
- Current Research in Structural Biology (journal's website, feed's url)
- EPJ Data Science (journal's website, feed's url)
- EPL (Europhysics Letters) (journal's website, feed's url)
- European Journal of Physics (journal's website, feed's url)
- European Physical Journal B (journal's website, feed's url)
- Frontiers in Molecular Biosciences (journal's website, feed's url)
- Frontiers in Physics (journal's website, feed's url)
- iScience (journal's website, feed's url)
- Journal of Complex Networks (journal's website, feed's url)
- Journal of Machine Learning Research (journal's website, feed's url)
- Journal of Mathematical Sociology (journal's website, feed's url)
- Journal of Physics A: Mathematical and General (journal's website, feed's url)
- Journal of Physics A: Mathematical and Theoretical (feed's url)
- Journal of Physics: Complexity (journal's website, feed's url)
- Journal of the Royal Society Interface (journal's website, feed's url)
- Journal of Statistical Mechanics (journal's website, feed's url)
- Nature Communications (journal's website, feed's url)
- Nature Computational Science (journal's website, feed's url)
- Nature Human Behaviour (journal's website, feed's url)
- Nature Neuroscience (journal's website, feed's url)
- Nature Physics (journal's website, feed's url)
- Nature Reviews Neuroscience (journal's website, feed's url)
- Nature Reviews Physics (journal's website, feed's url)
- Nature (journal's website, feed's url)
- New Journal of Physics (journal's website, feed's url)
- PLOS Computational Biology (journal's website, feed's url)
- PLOS ONE (journal's website, feed's url)
- Proceedings of the National Academy of Sciences USA (journal's website, feed's url)
- PNAS Nexus (journal's website, feed's url)
- Philosophical Transactions of the Royal Society A (journal's website, feed's url)
- Philosophical Transactions of the Royal Society B (journal's website, feed's url)
- Physics Reports (journal's website, feed's url)
- Physical Review E (journal's website, feed's url)
- Physical Review Letters (journal's website, feed's url)
- Physical Review Research (journal's website, feed's url)
- Physical Review X (journal's website, feed's url)
- Proceedings of the Royal Society A (journal's website, feed's url)
- Proceedings of the Royal Society B (journal's website, feed's url)
- Royal Society Open Science (journal's website, feed's url)
- Research (journal's website, feed's url)
- Reviews of Modern Phyics (journal's website, feed's url)
- SIAM Journal on Applied Dynamical Systems (journal's website, feed's url)
- SIAM Journal on Applied Mathematics (journal's website, feed's url)
- SIAM Journal on Discrete Mathematics (journal's website, feed's url)
- SIAM Journal on Mathematics of Data Science (journal's website, feed's url)
- SIAM Review (journal's website, feed's url)
- Science Advances (journal's website, feed's url)
- Scientific Reports (journal's website, feed's url)
- Science (journal's website, feed's url)
- Social Networks (journal's website, feed's url)
If you wish to use this code, you will need to add your Twitter Access Keys in the file config/twitter_cred.json
as
{
"consumer_key" : "",
"consumer_secret" : "",
"access_token" : "",
"access_token_secret" : ""
}
Posting on Mastodon is done via the Python wrapper for the Mastodon API Mastodon.py. You will need to run the following script once
from mastodon import Mastodon
Mastodon.create_app(
"pytooterapp",
api_base_url = INSTANCE_URL,
to_file = "pytooter_clientcred.secret"
)
mastodon = Mastodon(
client_id = "pytooter_clientcred.secret",
api_base_url = INSTANCE_URL
)
mastodon.log_in(
USERNAME,
PASSWORD,
to_file = "pytooter_usercred.secret"
)
and then create the file config/mastodon_cred.json
with
{
"access_token": pytooter_usercred.secret,
"api_base_url": INSTANCE_URL
}
Posting to a Slack channel is done via the slack_sdk Python package. Simple instructions can be found here. You will have to create the file config/slack_CUSTOMNAME_cred.json
with
{
"channel": CHANNEL_ID,
"slack_bot_token": TOKEN
}
Simple instructions to post on Bluesky can be found here. You will have to create the file config/bsky_cred.json
with
{
"handle": USERNAME,
"app_password": PASSWORD
}
Instructions to use GMail's SMTP server can be found here. You will have to create the file config/googlegroup_cred.json
with
{
"email_sender": "write-email-here",
"email_password": "write-password-here",
"email_receiver": "write-email-receiver-here"
}