I hereby claim:
- I am bharatkalluri on github.
- I am bharatkalluri (https://keybase.io/bharatkalluri) on keybase.
- I have a public key ASAhCXbBO7VtiV3EZQ1HD-wUzArgwhRyFdMw_lG3_3qUrQo
To claim this, I am signing this object:
| import requests | |
| from bs4 import BeautifulSoup | |
| import subprocess | |
| import time | |
| def sendmessage(message): | |
| subprocess.Popen(['notify-send', message]) | |
| return |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| # Thanks @glutanimate ! | |
| SP_DEST="org.mpris.MediaPlayer2.spotify" | |
| SP_PATH="/org/mpris/MediaPlayer2" | |
| SP_MEMB="org.mpris.MediaPlayer2.Player" | |
| LyricsAPI="http://makeitpersonal.co/lyrics/" |
| #!/usr/bin/env python | |
| import argparse | |
| def detect_text(path): | |
| """Detects text in the file.""" | |
| from google.cloud import vision | |
| import io | |
| client = vision.ImageAnnotatorClient() |
| from typing import List, Union | |
| from internetarchive import configure, get_session | |
| from olclient.openlibrary import OpenLibrary | |
| from models import IsbnData | |
| from models import EditionMetadata | |
| class IsbnNotFoundInOl(Exception): |
| { | |
| "work": { | |
| "provider_id": 42799938, | |
| "title": "The Boy Who Could Change the World", | |
| "authors": [ | |
| { | |
| "name": "Aaron Swartz", | |
| "provider_author_id": 6893150 | |
| } | |
| ], |
| #!/usr/bin/env python3 | |
| import csv | |
| import datetime | |
| import json | |
| import logging | |
| import os.path | |
| import sqlite3 | |
| import sys | |
| from enum import Enum | |
| from sqlite3 import Connection, Cursor |
| import asyncio | |
| from abc import ABC | |
| from enum import Enum | |
| from typing import Optional | |
| from odmantic import AIOEngine | |
| from odmantic import Model | |
| from odmantic.query import SortExpression | |
| interface IOptions { | |
| bucketSize: number, | |
| failurePercent: number | |
| canaryRequestInMilliSeconds: number | |
| minRecordings: number | |
| } | |
| interface IEvent { | |
| success: boolean | |
| createdAt: number |
| import {v4 as uuidV4} from 'uuid'; | |
| import rs from "jsrsasign"; | |
| const BASE_URL = 'https://aa-sandbox.setu.co' | |
| class AccountAggregatorClient { | |
| aa_id: string; | |
| fiu_id: string; | |
| client_api_key: string |