Skip to content

Instantly share code, notes, and snippets.

View misterdojo777's full-sized avatar
💫
building

dojo misterdojo777

💫
building
  • Freelance
  • Netherlands
View GitHub Profile
@gwangjinkim
gwangjinkim / uv-cheatsheet.org
Last active November 12, 2025 01:31
UV Cheatsheet
Replaces: pyenvPurposeCommand
Install a specific Python versionuv python install <version>
List available Python versionsuv python list
Use a specific Python version in a projectuv python use <version>
Automatically install the required Python versionuv run –python <version> script.py
Pin the Python version for a projectuv python pin
@daveebbelaar
daveebbelaar / document_intelligence.py
Created July 13, 2024 07:08
A service class for interacting with Azure Document Intelligence API.
import logging
import requests
import time
from typing import Union, Dict
from config.settings import get_settings
class DocumentIntelligenceService:
"""
A service class for interacting with Azure Document Intelligence API.