* @throws URISyntaxException
* @throws NugetFormatException ошибка вычисления HASH пакета
*/
public TempNupkgFile getPackage(String id, Version version) throws IOException, URISyntaxException, NugetFormatException {
IdEqIgnoreCase eqIgnoreCase = new IdEqIgnoreCase(id);
VersionEq versionEq = new VersionEq(version);
AndExpression andExpression = new AndExpression(eqIgnoreCase, versionEq);
String filter = andExpression.toString();
PackageFeed feed = getPackages(filter, null, 100, null, 0);
if(feed.getEntries().isEmpty()) {
return null;