Skip to content

Instantly share code, notes, and snippets.

View yozx's full-sized avatar
🎀
Duck Typing

Z yozx

🎀
Duck Typing
View GitHub Profile
@yozx
yozx / bitly_shorten_app.py
Created July 12, 2020 18:11
bitly_shorten_async
# Non-blocking script for shorten link via https://bit.ly Api
import asyncio
import logging
from typing import Dict, Optional
from aiohttp import ClientSession
logger = logging.getLogger('bitly_app')