Skip to content

Instantly share code, notes, and snippets.

# -*- coding: utf-8 -*-
from tinydb import TinyDB
from tinydb import Query
db = TinyDB('db.json')
def fake():
from faker import Faker
f = Faker()
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Use mycli (http://mycli.net/) through ssh
Usage:
$ mycli-ssh yourhost [extra args passed to mycli]
"""
# -*- coding: utf-8 -*-
# pip install "requests[socks]"
import requests
proxies = {
"http": "socks5://localhost:9150",
"https": "socks5://localhost:9150"
}
" IDE module for vim
@gawel
gawel / clientx.py
Last active February 11, 2024 18:02
Locust http2 client
import re
import time
from locust import User
from locust.exception import LocustError
import httpx
from httpx import Request, Response
from requests.auth import HTTPBasicAuth
from httpx import InvalidURL, RequestError
import irc3
from irc3.plugins.command import Commands
class Custom:
def __init__(self, context):
self.context = context
self.command = context.get_plugin(Commands)