Skip to content

Instantly share code, notes, and snippets.

#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;
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__()