Oh like this
-
Bullet point
Some code More code
-
I am good at markdown
Port,Commodity,Country,Time,Customs Value (Gen) ($US) | |
Total All Ports,"27 Mineral Fuel, Oil Etc.; Bitumin Subst; Mineral Wax",Colombia,2024 through November,"6,914,148,053" | |
Total All Ports,"71 Nat Etc Pearls, Prec Etc Stones, Pr Met Etc; Coin",Colombia,2024 through November,"1,986,812,521" | |
Total All Ports,"09 Coffee, Tea, Mate & Spices",Colombia,2024 through November,"1,307,370,016" | |
Total All Ports,"06 Live Trees, Plants, Bulbs Etc.; Cut Flowers Etc.",Colombia,2024 through November,"1,270,951,937" | |
Total All Ports,76 Aluminum And Articles Thereof,Colombia,2024 through November,"600,206,124" | |
Total All Ports,08 Edible Fruit & Nuts; Citrus Fruit Or Melon Peel,Colombia,2024 through November,"467,395,081" | |
Total All Ports,"99 Special Import Provisions, Nesoi",Colombia,2024 through November,"434,383,242" | |
Total All Ports,85 Electric Machinery Etc; Sound Equip; Tv Equip; Pts,Colombia,2024 through November,"407,556,287" | |
Total All Ports,"98 Special Classification Provisions, Nesoi",Colombia,2024 through November,"255,131 |
import colorsys | |
FNV_OFFSET = 0x811C9DC5 # 2166136261, FNV-1 32-bit offset basis | |
FNV_PRIME = 0x01000193 # FNV-1a 32-bit prime | |
def fnv1a_32(value: str) -> int: | |
""" | |
Compute the FNV-1a (32-bit) hash of a given data string. | |
https://en.wikipedia.org/wiki/Fowler–Noll–Vo_hash_function |
State | Postal | FIPS | |
---|---|---|---|
Alabama | AL | 1 | |
Alaska | AK | 2 | |
Arizona | AZ | 4 | |
Arkansas | AR | 5 | |
California | CA | 6 | |
Colorado | CO | 8 | |
Connecticut | CT | 9 | |
Delaware | DE | 10 | |
District of Columbia | DC | 11 |
CBSA | Metro | State | Postal | State FIPS | |
---|---|---|---|---|---|
10180 | Abilene, TX | Texas | TX | 48 | |
10380 | Aguadilla, PR | Puerto Rico | PR | 72 | |
10420 | Akron, OH | Ohio | OH | 39 | |
10500 | Albany, GA | Georgia | GA | 13 | |
10540 | Albany, OR | Oregon | OR | 41 | |
10580 | Albany-Schenectady-Troy, NY | New York | NY | 36 | |
10740 | Albuquerque, NM | New Mexico | NM | 35 | |
10780 | Alexandria, LA | Louisiana | LA | 22 | |
10900 | Allentown-Bethlehem-Easton, PA-NJ | Pennsylvania | PA | 42 |
country | year | murder_rate | top1 | |
---|---|---|---|---|
Afghanistan | 2018 | 6.6555611518 | 0.1508 | |
Albania | 2018 | 2.2894924438 | 0.0929 | |
Algeria | 2015 | 1.3642763974 | 0.0991 | |
Angola | 2012 | 4.8470751765 | 0.1958 | |
Argentina | 2018 | 5.3244787387 | 0.145 | |
Armenia | 2018 | 1.693915557 | 0.1746 | |
Australia | 2018 | 0.89163240342 | 0.0967 | |
Austria | 2018 | 0.96722860774 | 0.0982 | |
Azerbaijan | 2018 | 2.2011074485 | 0.1399 |
Country | Top 1% Share of Income | Murder Rate (per 100k) | |
---|---|---|---|
AE | 0.1531 | 0.4637824877 | |
AF | 0.1508 | 6.6555611518 | |
AL | 0.0924 | 2.2894924438 | |
AM | 0.15 | 1.693915557 | |
AO | 0.2598 | 4.8470751765 | |
AR | 0.1514 | 5.3244787387 | |
AT | 0.1074 | 0.96722860774 | |
AU | 0.0992 | 0.89163240342 | |
AZ | 0.1399 | 2.2011074485 |
[ | |
{ | |
"model": "json_search.document", | |
"pk": 1, | |
"fields": { | |
"content": { | |
"title": "No Man Is An Island", | |
"author": "John Donne", | |
"body": "No man is an island,\nEntire of itself,\nEvery man is a piece of the continent,\nA part of the main.\nIf a clod be washed away by the sea,\nEurope is the less.\nAs well as if a promontory were.\nAs well as if a manor of thy friend\u2019s\nOr of thine own were:\nAny man\u2019s death diminishes me,\nBecause I am involved in mankind,\nAnd therefore never send to know for whom the bell tolls;\nIt tolls for thee.\n" | |
} |
""" | |
Parse an Nginx access.log file into a Pandas DataFrame. Also works with gzipped files. | |
""" | |
import argparse | |
import pathlib | |
import pandas as pd |
import csv | |
from collections import namedtuple | |
import gzip | |
from os import listdir | |
from os.path import join | |
Entry = namedtuple("Entry", "ip, blank, user, time, offset, request, status, sent, referer, agent") |
Oh like this
Bullet point
Some code
More code
I am good at markdown