Skip to content

Instantly share code, notes, and snippets.

from beets import autotag
from beets.plugins import BeetsPlugin
from beets import ui
from beets.ui.commands import PromptChoice
from beets import config
class Nfo(BeetsPlugin):
def __init__(self):
super(Nfo, self).__init__()
#include <stdio.h>
#include <math.h>
#include <time.h>
#include <stdlib.h>
void swap(int *x, int *y) {
int temp = *x;
*x = *y;
*y = temp;