Skip to content

Instantly share code, notes, and snippets.

View MartinEls's full-sized avatar
:atom:

Martin Elstner MartinEls

:atom:
View GitHub Profile

UNIFORM SALES & USE TAX RESALE CERTIFICATE — MULTIJURISDICTION

The below-listed states have indicated that this certificate is acceptable as a resale/exemption certificate for sales/use tax, subject to the instructions and notes on pages 2-6. The issuing Buyer and the recipient Seller have the responsibility to determine the proper use of this certificate under applicable laws in each state, as these may change from time to time. This form was revised as of October 14, 2022.

Issued to Seller:___

Address:___

I certify that:

@MartinEls
MartinEls / zinc20_download.py
Last active February 24, 2023 17:39
ZINC20 download
import os
import requests
from tqdm import tqdm
def download(zinc20_url):
tranch = (zinc20_url.split('/')[-1]).split('.')[0]
r = requests.get(zinc20_url.strip())
with open('all_tranches/' + tranch + '.tsv', 'wb') as f:
f.write(r.content)