- US Mint - Only modern US coins and proofs and such. But absolutely trustworthy.
- VCoins - meta seller. Lots of old coins, lots of price ranges.
- ma-shops - auction site, but "certified sellers"
- Great Collections - Small, but all certified from trusted sellers
- APMEX - good for silver Peace and Morgans
- USA Coin Book - great for US coins
- NumisBids - coin auction site. Lots of variety. Hard do search. Good for filling in a hole in a set (you can set an alert).
- Heritage Auctions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import os | |
| import threading | |
| from PyQt6.QtCore import QObject, pyqtSlot, pyqtSignal | |
| from pyffmpeg import FFmpeg | |
| class Converter(QObject): | |
| def __init__(self, parent=None): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import sys | |
| from PyQt6.QtGui import QGuiApplication | |
| from PyQt6.QtQml import QQmlApplicationEngine | |
| from PyQt6.QtQuick import QQuickWindow | |
| from func import Converter | |
| QQuickWindow.setSceneGraphBackend('software') |