Download the file and install it:
pipenv install <path to local wheel>
There you go.
| Abigail - Nabby, Abby, Gail | |
| Abraham - Abe, Bram | |
| Adelaida - Ida, Idly | |
| Alan - Al | |
| Alastair - Al, Alex | |
| Albert - Al, Bert | |
| Alexander - Alex, Lex, Xander, Sander, Sandy | |
| Alexandra - Alex, Ali, Lexie, Sandy | |
| Alfred - Al, Alf, Alfie, Fred, Fredo | |
| Alonzo - Lonnie |
| import happybase | |
| connection = happybase.Connection(HBASE_MASTER_IP) | |
| table = connection.table(TABLE_NAME) | |
| while True: | |
| batch = table.batch() | |
| for key, _ in table.scan(columns=[COLUMN_NAMES], filter="RowFilter(=, 'regexstring:.*\x09.*')", limit=10000): | |
| batch.delete(key) | |
| batch.send() | |
| print(key) |
Download the file and install it:
pipenv install <path to local wheel>
There you go.