{"id":19640178,"url":"https://github.com/gearplug/eventbrite-python","last_synced_at":"2025-10-14T08:01:58.654Z","repository":{"id":174978911,"uuid":"653139914","full_name":"GearPlug/eventbrite-python","owner":"GearPlug","description":"eventbrite-python is an API wrapper for Eventbrite, written in Python.","archived":false,"fork":false,"pushed_at":"2023-08-03T14:38:14.000Z","size":11,"stargazers_count":5,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-07T14:44:09.194Z","etag":null,"topics":["api","eventbrite","events","oauth2","user-authentication","webhooks","wrapper"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/GearPlug.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-06-13T13:30:52.000Z","updated_at":"2025-06-23T06:46:12.000Z","dependencies_parsed_at":null,"dependency_job_id":"e7dcc610-54c5-4ef5-8a2f-7264d9c6fb3a","html_url":"https://github.com/GearPlug/eventbrite-python","commit_stats":null,"previous_names":["gearplug/eventbrite-python"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/GearPlug/eventbrite-python","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GearPlug%2Feventbrite-python","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GearPlug%2Feventbrite-python/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GearPlug%2Feventbrite-python/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GearPlug%2Feventbrite-python/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/GearPlug","download_url":"https://codeload.github.com/GearPlug/eventbrite-python/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GearPlug%2Feventbrite-python/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279018180,"owners_count":26086307,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-14T02:00:06.444Z","response_time":60,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api","eventbrite","events","oauth2","user-authentication","webhooks","wrapper"],"created_at":"2024-11-11T14:04:56.824Z","updated_at":"2025-10-14T08:01:58.624Z","avatar_url":"https://github.com/GearPlug.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# eventbrite-python\n![](https://img.shields.io/badge/version-0.1.0-success) ![](https://img.shields.io/badge/Python-3.8%20|%203.9%20|%203.10%20|%203.11-4B8BBE?logo=python\u0026logoColor=white)  \n\n*eventbrite-python* is an API wrapper for Eventbrite, written in Python.  \nThis library uses Oauth2 for authentication.\n## Installing\n```\npip install eventbrite-python\n```\n## Usage\n```python\n# if you have an access token:\nfrom eventbrite.client import Client\nclient = Client(access_token=access_token)\n```\n```python\n# Or if you are using Oauth2 to get an access_token:\nfrom eventbrite.client import Client\nclient = Client(api_key, client_secret, redirect_uri)\n```\nTo obtain and set an access token:\n1. ***Build authorization URL***\n```python\nurl = client.authorization_url(state=\"123456\")\n```\n2. ***Get access token***\n```python\ntoken = client.get_access_token(code)\n```\n3. ***Set token***\n```python\nclient.set_token(access_token)\n```\n### Info\n#### Get current user\n```python\nme = client.get_current_user()\n```\n#### Get user organizations\n```python\norganizations = client.get_user_organizations()\n```\n#### List categories\n```python\ncategories = client.list_categories()\n```\n#### List subcategories\n```python\nsubcategories = client.list_subcategories()\n```\n#### List formats\n```python\nformats = client.list_formats()\n```\n#### List venues\n```python\nvenues = client.list_venues(organization_id)\n```\n#### List organizers\n```python\norganizers = client.list_organizers(organization_id)\n```\n### Events\n#### List events\n```python\nevents = client.list_events(organization_id)\n```\n#### Get event\n```python\nevent = client.get_event(event_id)\n```\n#### Create event\n```python\nevent = client.create_event(organization_id, data)\n```\n### Orders\n#### Get order\n```python\norder = client.get_order(order_id)\n```\n### Webhooks\n#### List webhooks\n```python\nwebhooks = client.list_webhooks(organization_id)\n```\n#### Create webhook\n```python\nwebhook = client.create_webhook(organization_id,  endpoint_url, actions, event_id=\"\")\n```\n#### Delete webhook\n```python\ndeleted = client.delete_webhook(webhook_id)\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgearplug%2Feventbrite-python","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgearplug%2Feventbrite-python","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgearplug%2Feventbrite-python/lists"}