Skip to content

swkim101/cspapers.org

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cspapers.org

Rapid search engine for Computer Science papers

Continuous Deployment


Why not Google Scholar

Poor conference filter:

google scholar

¯\(ツ)

Tips

  1. Use "double quote" for exact matching
  2. API is open. Curl and NodeJS work:
$ curl 'https://api.cspapers.org/?query=bluetooth&yearFrom=2019&yearTo=2025&venue=NDSS%2CUsenix%2CSP%2CCCS&orderBy=score&ascending=false&skip=0'
const q = {
  query:     "bluetooth fuzzing",
  orderBy:   "score",
  ascending: false,
  venue:     ["Usenix", "SP"],
  yearFrom:  2024,
  yearTo:    2025,
  skip:      0,
  must: ["bluetooth"]
}
const qs = new URLSearchParams(q)
fetch(`https://api.cspapers.org/?${qs}`)
.then(async (res) => {
  console.log(await res.json());
})

And then you can retrieve abstract here:

https://raw.githubusercontent.com/swkim101/cspapers.org/main/{index}

Research

If you need any help, feel free to contact me at iam@sungwoo-kim.

Acknowlegement

@misc{https://doi.org/10.48550/arxiv.2301.10140,
 title = {The Semantic Scholar Open Data Platform},
 author = {Kinney, Rodney and Anastasiades, Chloe and Authur, Russell and Beltagy, Iz and Bragg, Jonathan and Buraczynski, Alexandra and Cachola, Isabel and Candra, Stefan and Chandrasekhar, Yoganand and Cohan, Arman and Crawford, Miles and Downey, Doug and Dunkelberger, Jason and Etzioni, Oren and Evans, Rob and Feldman, Sergey and Gorney, Joseph and Graham, David and Hu, Fangzhou and Huff, Regan and King, Daniel and Kohlmeier, Sebastian and Kuehl, Bailey and Langan, Michael and Lin, Daniel and Liu, Haokun and Lo, Kyle and Lochner, Jaron and MacMillan, Kelsey and Murray, Tyler and Newell, Chris and Rao, Smita and Rohatgi, Shaurya and Sayre, Paul and Shen, Zejiang and Singh, Amanpreet and Soldaini, Luca and Subramanian, Shivashankar and Tanaka, Amber and Wade, Alex D. and Wagner, Linda and Wang, Lucy Lu and Wilhelm, Chris and Wu, Caroline and Yang, Jiangjiang and Zamarron, Angele and Van Zuylen, Madeleine and Weld, Daniel S.},
 publisher = {arXiv},
 year = {2023},
 doi = {10.48550/ARXIV.2301.10140},
 url = {https://arxiv.org/abs/2301.10140},
 }

Disclaimer

  • cspapers.org indexes titles and abstracts. Paper contents and authors are not indexed.
  • All data is from Semantic Scholar Dataset: https://api.semanticscholar.org/api-docs/datasets.
  • cspapers.org is served as implemented as is in this repository. I do not modify source code or data in and after distributions.
  • cspapers.org uses cloudflare for caching and fly.io for serving.
  • cspapers.org does not collect user data, such as search history and IP address. However, Cloudflare and fly.io may do this for pricing and security purposes.

About

A search engine dedicated to CS conferences. It provides useful filters for conferences and year range.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published