
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
amplitude-python-sdk
Advanced tools
Client for the Amplitude HTTP V1 and V2 API (https://developers.amplitude.com/docs).
Unofficial SDK for the Amplitude HTTP API, providing a user-friendly interface through Pydantic models.
See the Amplitude docs for more information on the various API methods and their parameters.
WARNING: This library is in very early development, and APIs are not guaranteed to be stable. Please bear that in mind when using this library.
pip install amplitude-python-sdk
Currently, only the Identify API and the HTTP API V2 are supported. Support for other API methods coming soon!
import logging
from amplitude_python_sdk.common.exceptions import AmplitudeAPIException
from amplitude_python_sdk.v1.client import AmplitudeV1APIClient
from amplitude_python_sdk.v1.models.identify import Identification, UserProperties
client = AmplitudeV1APIClient(api_key='<YOUR API KEY HERE>')
try:
resp = client.identify([Identification(user_id='example', user_properties=UserProperties()])
except AmplitudeAPIException:
logging.exception('Failed to send identify request to Amplitude')
import logging
from amplitude_python_sdk.common.exceptions import AmplitudeAPIException
from amplitude_python_sdk.v2.clients.event_client import EventAPIClient
from amplitude_python_sdk.v2.models.event import Event
from amplitude_python_sdk.v2.models.event.options import EventAPIOptions
client = EventAPIClient(api_key='<YOUR API KEY HERE>')
try:
events = [
Event(
user_id='example',
event_type='Clicked on Foo',
event_properties={
'foo_id': 'bar',
'click_position': 5,
}
)
]
client.upload(
events=events,
options=EventAPIOptions(min_id_length=1),
)
except AmplitudeAPIException:
logging.exception('Failed to log event to Amplitude')
Exactly the same as the Event V2 API example, just substitute client.batch_upload for client.upload.
FAQs
Client for the Amplitude HTTP V1 and V2 API (https://developers.amplitude.com/docs).
We found that amplitude-python-sdk demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.