vapoursynth / vsrepo

A simple package repository for VapourSynth
MIT License
113 stars 29 forks source link

access_token necessary? #26

Closed theChaosCoder closed 6 years ago

theChaosCoder commented 6 years ago

An access_token is not needed to query releases via the github api, why force it?

https://github.com/vapoursynth/vsrepo/blob/22bc328ef638a37dc041afd1e64e1784fc83dfa0/vsrupdate.py#L63

This works too https://api.github.com/repos/HomeOfVapourSynthEvolution/VapourSynth-DFTTest/releases

myrsloik commented 6 years ago

You're only allowed to make 50 or so requests/hour/ip without a token. It will error out with 403 forbidden before everything has been queried.

theChaosCoder commented 6 years ago

ah ok, didn't know that.