Skip to content
View kishore7snehil's full-sized avatar
  • Auth0(Okta)
  • Bengaluru, India
  • 20:18 (UTC +05:30)

Block or report kishore7snehil

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
kishore7snehil/README.md

Hi, I’m Snehil Kishore 👋

Full‑stack developer & SDK architect with 4+ years of experience building authentication libraries and developer tools at Auth0/Okta. I design secure, scalable APIs in Python (FastAPI) and PHP, and I’ve contributed extensively to the official Auth0 Python and PHP SDKs.

from dataclasses import dataclass, field
from typing import List


PRONOUNS = ("he", "him")

@dataclass(frozen=True)
class Role:
    company: str
    team: str
    title: str


@dataclass
class Developer:
    name: str
    pronouns: tuple = field(default=PRONOUNS)
    role: Role = field(default=None)
    skills: List[str] = field(default_factory=list)

    def introduce(self) -> str:
        return (
            f"Hi, I'm {self.name}. "
            f"I work at {self.role.company} on the {self.role.team} team as a {self.role.title}. "
            f"My pronouns are {', '.join(self.pronouns)}."
        )

    def list_skills(self) -> str:
        return "Some of my tools & technologies: " + ", ".join(self.skills)


if __name__ == "__main__":
    snehil = Developer(
        name="Snehil Kishore",
        role=Role(company="Okta", team="SDKs / Identity", title="Senior Software Engineer"),
        skills=[
            "Python", "FastAPI", "React", "Node.js", "PHP", "Laravel",
            "Postgres", "Redis", "Docker", "GitHub Actions", "OAuth2/OIDC"
        ]
    )

    print(snehil.introduce())
    print(snehil.list_skills())

📫 Let’s connect

Always open to collaborating on open‑source projects and building products.

Pinned Loading

  1. auth0/auth0-python auth0/auth0-python Public

    Auth0 SDK for Python

    Python 560 181

  2. quickstart-prompt-generator quickstart-prompt-generator Public

    Language-agnostic CLI tool for generating LLM prompts for SDK quickstart documentation.

    Python

  3. auth0/auth0-fastapi auth0/auth0-fastapi Public

    Python 3

  4. auth0/auth0-PHP auth0/auth0-PHP Public

    PHP SDK for Auth0 Authentication and Management APIs.

    PHP 401 217

  5. auth0/auth0-fastapi-api auth0/auth0-fastapi-api Public

    Python 4

  6. auth0/laravel-auth0 auth0/laravel-auth0 Public

    Laravel SDK for Auth0 Authentication and Management APIs.

    PHP 268 141