pyaudius


Namepyaudius JSON
Version 0.1.2 PyPI version JSON
download
home_pagehttps://github.com/samgutentag/pyaudius
SummaryA Python Implentation of the Audius API
upload_time2024-12-04 07:03:39
maintainerNone
docs_urlNone
authorSam Gutentag
requires_python<4.0,>=3.8
licenseNoLicense
keywords music audius api web3 crypto
VCS
bugtrack_url
requirements urllib3 python_dateutil pydantic typing-extensions
Travis-CI
coveralls test coverage No coveralls.
            # pyaudius
Audius V1 API

This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:

- API version: 1.0
- Package version: 1.0.0
- Generator version: 7.9.0
- Build package: org.openapitools.codegen.languages.PythonClientCodegen

## Requirements.

Python 3.7+

## Installation & Usage
### pip install

If the python package is hosted on a repository, you can install directly using:

```sh
pip install git+https://github.com/samgutentag/pyaudius.git
```
(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/samgutentag/pyaudius.git`)

Then import the package:
```python
import pyaudius
```

### Setuptools

Install via [Setuptools](http://pypi.python.org/pypi/setuptools).

```sh
python setup.py install --user
```
(or `sudo python setup.py install` to install the package for all users)

Then import the package:
```python
import pyaudius
```

### Tests

Execute `pytest` to run the tests.

## Getting Started

Please follow the [installation procedure](#installation--usage) and then run the following:

```python

import pyaudius
from pyaudius.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to https://discoveryprovider.audius.co/v1
# See configuration.py for a list of all supported configuration parameters.
configuration = pyaudius.Configuration(
    host = "https://discoveryprovider.audius.co/v1"
)



# Enter a context with an instance of the API client
with pyaudius.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = pyaudius.ChallengesApi(api_client)
    offset = 56 # int | The number of items to skip. Useful for pagination (page number * limit) (optional)
    limit = 56 # int | The number of items to fetch (optional)
    user_id = 'user_id_example' # str | A User ID to filter the undisbursed challenges to a particular user (optional)
    completed_blocknumber = 56 # int | Starting blocknumber to retrieve completed undisbursed challenges (optional)

    try:
        api_response = api_instance.get_undisbursed_challenges(offset=offset, limit=limit, user_id=user_id, completed_blocknumber=completed_blocknumber)
        print("The response of ChallengesApi->get_undisbursed_challenges:\n")
        pprint(api_response)
    except ApiException as e:
        print("Exception when calling ChallengesApi->get_undisbursed_challenges: %s\n" % e)

```

## Documentation for API Endpoints

All URIs are relative to *https://discoveryprovider.audius.co/v1*

Class | Method | HTTP request | Description
------------ | ------------- | ------------- | -------------
*ChallengesApi* | [**get_undisbursed_challenges**](docs/ChallengesApi.md#get_undisbursed_challenges) | **GET** /challenges/undisbursed | 
*CommentsApi* | [**get_comment_replies**](docs/CommentsApi.md#get_comment_replies) | **GET** /comments/{comment_id}/replies | 
*CommentsApi* | [**get_unclaimed_comment_id**](docs/CommentsApi.md#get_unclaimed_comment_id) | **GET** /comments/unclaimed_id | 
*DashboardWalletUsersApi* | [**bulk_get_dashboard_wallet_users**](docs/DashboardWalletUsersApi.md#bulk_get_dashboard_wallet_users) | **GET** /dashboard_wallet_users | 
*DeveloperAppsApi* | [**get_developer_app**](docs/DeveloperAppsApi.md#get_developer_app) | **GET** /developer_apps/{address} | 
*PlaylistsApi* | [**get_bulk_playlists**](docs/PlaylistsApi.md#get_bulk_playlists) | **GET** /playlists | 
*PlaylistsApi* | [**get_playlist**](docs/PlaylistsApi.md#get_playlist) | **GET** /playlists/{playlist_id} | 
*PlaylistsApi* | [**get_playlist_access_info**](docs/PlaylistsApi.md#get_playlist_access_info) | **GET** /playlists/{playlist_id}/access-info | 
*PlaylistsApi* | [**get_playlist_by_handle_and_slug**](docs/PlaylistsApi.md#get_playlist_by_handle_and_slug) | **GET** /playlists/by_permalink/{handle}/{slug} | 
*PlaylistsApi* | [**get_playlist_tracks**](docs/PlaylistsApi.md#get_playlist_tracks) | **GET** /playlists/{playlist_id}/tracks | 
*PlaylistsApi* | [**get_trending_playlists**](docs/PlaylistsApi.md#get_trending_playlists) | **GET** /playlists/trending | 
*PlaylistsApi* | [**search_playlists**](docs/PlaylistsApi.md#search_playlists) | **GET** /playlists/search | 
*ResolveApi* | [**resolve**](docs/ResolveApi.md#resolve) | **GET** /resolve | Resolves and redirects a provided Audius app URL to the API resource URL it represents
*TipsApi* | [**get_tips**](docs/TipsApi.md#get_tips) | **GET** /tips | 
*TracksApi* | [**download_track**](docs/TracksApi.md#download_track) | **GET** /tracks/{track_id}/download | Download the original or MP3 file of a track
*TracksApi* | [**get_bulk_tracks**](docs/TracksApi.md#get_bulk_tracks) | **GET** /tracks | 
*TracksApi* | [**get_track**](docs/TracksApi.md#get_track) | **GET** /tracks/{track_id} | 
*TracksApi* | [**get_track_access_info**](docs/TracksApi.md#get_track_access_info) | **GET** /tracks/{track_id}/access-info | 
*TracksApi* | [**get_track_stems**](docs/TracksApi.md#get_track_stems) | **GET** /tracks/{track_id}/stems | 
*TracksApi* | [**get_track_top_listeners**](docs/TracksApi.md#get_track_top_listeners) | **GET** /tracks/{track_id}/top_listeners | 
*TracksApi* | [**get_trending_tracks**](docs/TracksApi.md#get_trending_tracks) | **GET** /tracks/trending | 
*TracksApi* | [**get_underground_trending_tracks**](docs/TracksApi.md#get_underground_trending_tracks) | **GET** /tracks/trending/underground | 
*TracksApi* | [**inspect_track**](docs/TracksApi.md#inspect_track) | **GET** /tracks/{track_id}/inspect | Inspects the details of the file for a track
*TracksApi* | [**search_tracks**](docs/TracksApi.md#search_tracks) | **GET** /tracks/search | 
*TracksApi* | [**stream_track**](docs/TracksApi.md#stream_track) | **GET** /tracks/{track_id}/stream | Get the streamable MP3 file of a track
*TracksApi* | [**track_comment_count**](docs/TracksApi.md#track_comment_count) | **GET** /tracks/{track_id}/comment_count | 
*TracksApi* | [**track_comment_notification_setting**](docs/TracksApi.md#track_comment_notification_setting) | **GET** /tracks/{track_id}/comment_notification_setting | 
*TracksApi* | [**track_comments**](docs/TracksApi.md#track_comments) | **GET** /tracks/{track_id}/comments | 
*UsersApi* | [**download_purchases_as_csv**](docs/UsersApi.md#download_purchases_as_csv) | **GET** /users/{id}/purchases/download | 
*UsersApi* | [**download_sales_as_csv**](docs/UsersApi.md#download_sales_as_csv) | **GET** /users/{id}/sales/download | 
*UsersApi* | [**download_sales_as_json**](docs/UsersApi.md#download_sales_as_json) | **GET** /users/{id}/sales/download/json | 
*UsersApi* | [**download_usdc_withdrawals_as_csv**](docs/UsersApi.md#download_usdc_withdrawals_as_csv) | **GET** /users/{id}/withdrawals/download | 
*UsersApi* | [**get_ai_attributed_tracks_by_user_handle**](docs/UsersApi.md#get_ai_attributed_tracks_by_user_handle) | **GET** /users/handle/{handle}/tracks/ai_attributed | 
*UsersApi* | [**get_albums_by_user**](docs/UsersApi.md#get_albums_by_user) | **GET** /users/{id}/albums | 
*UsersApi* | [**get_authorized_apps**](docs/UsersApi.md#get_authorized_apps) | **GET** /users/{id}/authorized_apps | 
*UsersApi* | [**get_bulk_users**](docs/UsersApi.md#get_bulk_users) | **GET** /users | 
*UsersApi* | [**get_connected_wallets**](docs/UsersApi.md#get_connected_wallets) | **GET** /users/{id}/connected_wallets | 
*UsersApi* | [**get_developer_apps**](docs/UsersApi.md#get_developer_apps) | **GET** /users/{id}/developer_apps | 
*UsersApi* | [**get_favorites**](docs/UsersApi.md#get_favorites) | **GET** /users/{id}/favorites | 
*UsersApi* | [**get_followers**](docs/UsersApi.md#get_followers) | **GET** /users/{id}/followers | 
*UsersApi* | [**get_following**](docs/UsersApi.md#get_following) | **GET** /users/{id}/following | 
*UsersApi* | [**get_muted_users**](docs/UsersApi.md#get_muted_users) | **GET** /users/{id}/muted | 
*UsersApi* | [**get_playlists_by_user**](docs/UsersApi.md#get_playlists_by_user) | **GET** /users/{id}/playlists | 
*UsersApi* | [**get_purchasers**](docs/UsersApi.md#get_purchasers) | **GET** /users/{id}/purchasers | 
*UsersApi* | [**get_related_users**](docs/UsersApi.md#get_related_users) | **GET** /users/{id}/related | 
*UsersApi* | [**get_remixers**](docs/UsersApi.md#get_remixers) | **GET** /users/{id}/remixers | 
*UsersApi* | [**get_reposts**](docs/UsersApi.md#get_reposts) | **GET** /users/{id}/reposts | 
*UsersApi* | [**get_sales_aggregate**](docs/UsersApi.md#get_sales_aggregate) | **GET** /users/{id}/sales/aggregate | 
*UsersApi* | [**get_subscribers**](docs/UsersApi.md#get_subscribers) | **GET** /users/{id}/subscribers | 
*UsersApi* | [**get_supported_users**](docs/UsersApi.md#get_supported_users) | **GET** /users/{id}/supporting | 
*UsersApi* | [**get_supporters**](docs/UsersApi.md#get_supporters) | **GET** /users/{id}/supporters | 
*UsersApi* | [**get_top_track_tags**](docs/UsersApi.md#get_top_track_tags) | **GET** /users/{id}/tags | Fetch most used tags in a user&#39;s tracks
*UsersApi* | [**get_tracks_by_user**](docs/UsersApi.md#get_tracks_by_user) | **GET** /users/{id}/tracks | 
*UsersApi* | [**get_user**](docs/UsersApi.md#get_user) | **GET** /users/{id} | 
*UsersApi* | [**get_user_by_handle**](docs/UsersApi.md#get_user_by_handle) | **GET** /users/handle/{handle} | 
*UsersApi* | [**get_user_challenges**](docs/UsersApi.md#get_user_challenges) | **GET** /users/{id}/challenges | 
*UsersApi* | [**get_user_id_from_wallet**](docs/UsersApi.md#get_user_id_from_wallet) | **GET** /users/id | 
*UsersApi* | [**get_user_tracks_remixed**](docs/UsersApi.md#get_user_tracks_remixed) | **GET** /users/{id}/tracks/remixed | 
*UsersApi* | [**search_users**](docs/UsersApi.md#search_users) | **GET** /users/search | 
*UsersApi* | [**verify_id_token**](docs/UsersApi.md#verify_id_token) | **GET** /users/verify_token | 


## Documentation For Models

 - [Access](docs/Access.md)
 - [AccessInfoResponse](docs/AccessInfoResponse.md)
 - [Activity](docs/Activity.md)
 - [AlbumsResponse](docs/AlbumsResponse.md)
 - [AuthorizedApp](docs/AuthorizedApp.md)
 - [AuthorizedApps](docs/AuthorizedApps.md)
 - [BlobInfo](docs/BlobInfo.md)
 - [ChallengeResponse](docs/ChallengeResponse.md)
 - [CollectionActivity](docs/CollectionActivity.md)
 - [Comment](docs/Comment.md)
 - [CommentMention](docs/CommentMention.md)
 - [CommentNotificationSetting](docs/CommentNotificationSetting.md)
 - [CommentResponse](docs/CommentResponse.md)
 - [ConnectedWallets](docs/ConnectedWallets.md)
 - [ConnectedWalletsResponse](docs/ConnectedWalletsResponse.md)
 - [CoverPhoto](docs/CoverPhoto.md)
 - [DashboardWalletUser](docs/DashboardWalletUser.md)
 - [DashboardWalletUsersResponse](docs/DashboardWalletUsersResponse.md)
 - [DecodedUserToken](docs/DecodedUserToken.md)
 - [DeveloperApp](docs/DeveloperApp.md)
 - [DeveloperAppResponse](docs/DeveloperAppResponse.md)
 - [DeveloperApps](docs/DeveloperApps.md)
 - [EncodedUserId](docs/EncodedUserId.md)
 - [ExtendedPaymentSplit](docs/ExtendedPaymentSplit.md)
 - [ExtendedPurchaseGate](docs/ExtendedPurchaseGate.md)
 - [ExtendedUsdcGate](docs/ExtendedUsdcGate.md)
 - [Favorite](docs/Favorite.md)
 - [FavoritesResponse](docs/FavoritesResponse.md)
 - [FollowGate](docs/FollowGate.md)
 - [FollowersResponse](docs/FollowersResponse.md)
 - [FollowingResponse](docs/FollowingResponse.md)
 - [GetChallenges](docs/GetChallenges.md)
 - [GetSupportedUsers](docs/GetSupportedUsers.md)
 - [GetSupporters](docs/GetSupporters.md)
 - [GetTipsResponse](docs/GetTipsResponse.md)
 - [NftCollection](docs/NftCollection.md)
 - [NftGate](docs/NftGate.md)
 - [Playlist](docs/Playlist.md)
 - [PlaylistAddedTimestamp](docs/PlaylistAddedTimestamp.md)
 - [PlaylistArtwork](docs/PlaylistArtwork.md)
 - [PlaylistResponse](docs/PlaylistResponse.md)
 - [PlaylistSearchResult](docs/PlaylistSearchResult.md)
 - [PlaylistTracksResponse](docs/PlaylistTracksResponse.md)
 - [PlaylistsResponse](docs/PlaylistsResponse.md)
 - [ProfilePicture](docs/ProfilePicture.md)
 - [PurchasersResponse](docs/PurchasersResponse.md)
 - [RelatedArtistResponse](docs/RelatedArtistResponse.md)
 - [RemixParent](docs/RemixParent.md)
 - [RemixedTrackAggregate](docs/RemixedTrackAggregate.md)
 - [RemixersResponse](docs/RemixersResponse.md)
 - [ReplyComment](docs/ReplyComment.md)
 - [Reposts](docs/Reposts.md)
 - [SalesAggregate](docs/SalesAggregate.md)
 - [SalesAggregateResponse](docs/SalesAggregateResponse.md)
 - [Stem](docs/Stem.md)
 - [StemsResponse](docs/StemsResponse.md)
 - [StreamUrlResponse](docs/StreamUrlResponse.md)
 - [SubscribersResponse](docs/SubscribersResponse.md)
 - [Supporter](docs/Supporter.md)
 - [Supporting](docs/Supporting.md)
 - [TagsResponse](docs/TagsResponse.md)
 - [Tip](docs/Tip.md)
 - [TipGate](docs/TipGate.md)
 - [TopListener](docs/TopListener.md)
 - [Track](docs/Track.md)
 - [TrackAccessInfo](docs/TrackAccessInfo.md)
 - [TrackActivity](docs/TrackActivity.md)
 - [TrackArtwork](docs/TrackArtwork.md)
 - [TrackCommentCountResponse](docs/TrackCommentCountResponse.md)
 - [TrackCommentNotificationResponse](docs/TrackCommentNotificationResponse.md)
 - [TrackCommentsResponse](docs/TrackCommentsResponse.md)
 - [TrackElement](docs/TrackElement.md)
 - [TrackInspect](docs/TrackInspect.md)
 - [TrackResponse](docs/TrackResponse.md)
 - [TrackSearch](docs/TrackSearch.md)
 - [TracksResponse](docs/TracksResponse.md)
 - [TrendingPlaylistsResponse](docs/TrendingPlaylistsResponse.md)
 - [UnclaimedIdResponse](docs/UnclaimedIdResponse.md)
 - [UndisbursedChallenge](docs/UndisbursedChallenge.md)
 - [UndisbursedChallenges](docs/UndisbursedChallenges.md)
 - [User](docs/User.md)
 - [UserAssociatedWalletResponse](docs/UserAssociatedWalletResponse.md)
 - [UserResponse](docs/UserResponse.md)
 - [UserSearch](docs/UserSearch.md)
 - [UserTracksRemixedResponse](docs/UserTracksRemixedResponse.md)
 - [UsersResponse](docs/UsersResponse.md)
 - [VerifyToken](docs/VerifyToken.md)


<a id="documentation-for-authorization"></a>
## Documentation For Authorization

Endpoints do not require authorization.


## Author





            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/samgutentag/pyaudius",
    "name": "pyaudius",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<4.0,>=3.8",
    "maintainer_email": null,
    "keywords": "music, audius, API, web3, crypto",
    "author": "Sam Gutentag",
    "author_email": "sam@gutentag.dev",
    "download_url": "https://files.pythonhosted.org/packages/a9/62/717f19f39d9a1af06d8cdb0d7f0e746bf0f1fba95d80033db200ac6a89e7/pyaudius-0.1.2.tar.gz",
    "platform": null,
    "description": "# pyaudius\nAudius V1 API\n\nThis Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:\n\n- API version: 1.0\n- Package version: 1.0.0\n- Generator version: 7.9.0\n- Build package: org.openapitools.codegen.languages.PythonClientCodegen\n\n## Requirements.\n\nPython 3.7+\n\n## Installation & Usage\n### pip install\n\nIf the python package is hosted on a repository, you can install directly using:\n\n```sh\npip install git+https://github.com/samgutentag/pyaudius.git\n```\n(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/samgutentag/pyaudius.git`)\n\nThen import the package:\n```python\nimport pyaudius\n```\n\n### Setuptools\n\nInstall via [Setuptools](http://pypi.python.org/pypi/setuptools).\n\n```sh\npython setup.py install --user\n```\n(or `sudo python setup.py install` to install the package for all users)\n\nThen import the package:\n```python\nimport pyaudius\n```\n\n### Tests\n\nExecute `pytest` to run the tests.\n\n## Getting Started\n\nPlease follow the [installation procedure](#installation--usage) and then run the following:\n\n```python\n\nimport pyaudius\nfrom pyaudius.rest import ApiException\nfrom pprint import pprint\n\n# Defining the host is optional and defaults to https://discoveryprovider.audius.co/v1\n# See configuration.py for a list of all supported configuration parameters.\nconfiguration = pyaudius.Configuration(\n    host = \"https://discoveryprovider.audius.co/v1\"\n)\n\n\n\n# Enter a context with an instance of the API client\nwith pyaudius.ApiClient(configuration) as api_client:\n    # Create an instance of the API class\n    api_instance = pyaudius.ChallengesApi(api_client)\n    offset = 56 # int | The number of items to skip. Useful for pagination (page number * limit) (optional)\n    limit = 56 # int | The number of items to fetch (optional)\n    user_id = 'user_id_example' # str | A User ID to filter the undisbursed challenges to a particular user (optional)\n    completed_blocknumber = 56 # int | Starting blocknumber to retrieve completed undisbursed challenges (optional)\n\n    try:\n        api_response = api_instance.get_undisbursed_challenges(offset=offset, limit=limit, user_id=user_id, completed_blocknumber=completed_blocknumber)\n        print(\"The response of ChallengesApi->get_undisbursed_challenges:\\n\")\n        pprint(api_response)\n    except ApiException as e:\n        print(\"Exception when calling ChallengesApi->get_undisbursed_challenges: %s\\n\" % e)\n\n```\n\n## Documentation for API Endpoints\n\nAll URIs are relative to *https://discoveryprovider.audius.co/v1*\n\nClass | Method | HTTP request | Description\n------------ | ------------- | ------------- | -------------\n*ChallengesApi* | [**get_undisbursed_challenges**](docs/ChallengesApi.md#get_undisbursed_challenges) | **GET** /challenges/undisbursed | \n*CommentsApi* | [**get_comment_replies**](docs/CommentsApi.md#get_comment_replies) | **GET** /comments/{comment_id}/replies | \n*CommentsApi* | [**get_unclaimed_comment_id**](docs/CommentsApi.md#get_unclaimed_comment_id) | **GET** /comments/unclaimed_id | \n*DashboardWalletUsersApi* | [**bulk_get_dashboard_wallet_users**](docs/DashboardWalletUsersApi.md#bulk_get_dashboard_wallet_users) | **GET** /dashboard_wallet_users | \n*DeveloperAppsApi* | [**get_developer_app**](docs/DeveloperAppsApi.md#get_developer_app) | **GET** /developer_apps/{address} | \n*PlaylistsApi* | [**get_bulk_playlists**](docs/PlaylistsApi.md#get_bulk_playlists) | **GET** /playlists | \n*PlaylistsApi* | [**get_playlist**](docs/PlaylistsApi.md#get_playlist) | **GET** /playlists/{playlist_id} | \n*PlaylistsApi* | [**get_playlist_access_info**](docs/PlaylistsApi.md#get_playlist_access_info) | **GET** /playlists/{playlist_id}/access-info | \n*PlaylistsApi* | [**get_playlist_by_handle_and_slug**](docs/PlaylistsApi.md#get_playlist_by_handle_and_slug) | **GET** /playlists/by_permalink/{handle}/{slug} | \n*PlaylistsApi* | [**get_playlist_tracks**](docs/PlaylistsApi.md#get_playlist_tracks) | **GET** /playlists/{playlist_id}/tracks | \n*PlaylistsApi* | [**get_trending_playlists**](docs/PlaylistsApi.md#get_trending_playlists) | **GET** /playlists/trending | \n*PlaylistsApi* | [**search_playlists**](docs/PlaylistsApi.md#search_playlists) | **GET** /playlists/search | \n*ResolveApi* | [**resolve**](docs/ResolveApi.md#resolve) | **GET** /resolve | Resolves and redirects a provided Audius app URL to the API resource URL it represents\n*TipsApi* | [**get_tips**](docs/TipsApi.md#get_tips) | **GET** /tips | \n*TracksApi* | [**download_track**](docs/TracksApi.md#download_track) | **GET** /tracks/{track_id}/download | Download the original or MP3 file of a track\n*TracksApi* | [**get_bulk_tracks**](docs/TracksApi.md#get_bulk_tracks) | **GET** /tracks | \n*TracksApi* | [**get_track**](docs/TracksApi.md#get_track) | **GET** /tracks/{track_id} | \n*TracksApi* | [**get_track_access_info**](docs/TracksApi.md#get_track_access_info) | **GET** /tracks/{track_id}/access-info | \n*TracksApi* | [**get_track_stems**](docs/TracksApi.md#get_track_stems) | **GET** /tracks/{track_id}/stems | \n*TracksApi* | [**get_track_top_listeners**](docs/TracksApi.md#get_track_top_listeners) | **GET** /tracks/{track_id}/top_listeners | \n*TracksApi* | [**get_trending_tracks**](docs/TracksApi.md#get_trending_tracks) | **GET** /tracks/trending | \n*TracksApi* | [**get_underground_trending_tracks**](docs/TracksApi.md#get_underground_trending_tracks) | **GET** /tracks/trending/underground | \n*TracksApi* | [**inspect_track**](docs/TracksApi.md#inspect_track) | **GET** /tracks/{track_id}/inspect | Inspects the details of the file for a track\n*TracksApi* | [**search_tracks**](docs/TracksApi.md#search_tracks) | **GET** /tracks/search | \n*TracksApi* | [**stream_track**](docs/TracksApi.md#stream_track) | **GET** /tracks/{track_id}/stream | Get the streamable MP3 file of a track\n*TracksApi* | [**track_comment_count**](docs/TracksApi.md#track_comment_count) | **GET** /tracks/{track_id}/comment_count | \n*TracksApi* | [**track_comment_notification_setting**](docs/TracksApi.md#track_comment_notification_setting) | **GET** /tracks/{track_id}/comment_notification_setting | \n*TracksApi* | [**track_comments**](docs/TracksApi.md#track_comments) | **GET** /tracks/{track_id}/comments | \n*UsersApi* | [**download_purchases_as_csv**](docs/UsersApi.md#download_purchases_as_csv) | **GET** /users/{id}/purchases/download | \n*UsersApi* | [**download_sales_as_csv**](docs/UsersApi.md#download_sales_as_csv) | **GET** /users/{id}/sales/download | \n*UsersApi* | [**download_sales_as_json**](docs/UsersApi.md#download_sales_as_json) | **GET** /users/{id}/sales/download/json | \n*UsersApi* | [**download_usdc_withdrawals_as_csv**](docs/UsersApi.md#download_usdc_withdrawals_as_csv) | **GET** /users/{id}/withdrawals/download | \n*UsersApi* | [**get_ai_attributed_tracks_by_user_handle**](docs/UsersApi.md#get_ai_attributed_tracks_by_user_handle) | **GET** /users/handle/{handle}/tracks/ai_attributed | \n*UsersApi* | [**get_albums_by_user**](docs/UsersApi.md#get_albums_by_user) | **GET** /users/{id}/albums | \n*UsersApi* | [**get_authorized_apps**](docs/UsersApi.md#get_authorized_apps) | **GET** /users/{id}/authorized_apps | \n*UsersApi* | [**get_bulk_users**](docs/UsersApi.md#get_bulk_users) | **GET** /users | \n*UsersApi* | [**get_connected_wallets**](docs/UsersApi.md#get_connected_wallets) | **GET** /users/{id}/connected_wallets | \n*UsersApi* | [**get_developer_apps**](docs/UsersApi.md#get_developer_apps) | **GET** /users/{id}/developer_apps | \n*UsersApi* | [**get_favorites**](docs/UsersApi.md#get_favorites) | **GET** /users/{id}/favorites | \n*UsersApi* | [**get_followers**](docs/UsersApi.md#get_followers) | **GET** /users/{id}/followers | \n*UsersApi* | [**get_following**](docs/UsersApi.md#get_following) | **GET** /users/{id}/following | \n*UsersApi* | [**get_muted_users**](docs/UsersApi.md#get_muted_users) | **GET** /users/{id}/muted | \n*UsersApi* | [**get_playlists_by_user**](docs/UsersApi.md#get_playlists_by_user) | **GET** /users/{id}/playlists | \n*UsersApi* | [**get_purchasers**](docs/UsersApi.md#get_purchasers) | **GET** /users/{id}/purchasers | \n*UsersApi* | [**get_related_users**](docs/UsersApi.md#get_related_users) | **GET** /users/{id}/related | \n*UsersApi* | [**get_remixers**](docs/UsersApi.md#get_remixers) | **GET** /users/{id}/remixers | \n*UsersApi* | [**get_reposts**](docs/UsersApi.md#get_reposts) | **GET** /users/{id}/reposts | \n*UsersApi* | [**get_sales_aggregate**](docs/UsersApi.md#get_sales_aggregate) | **GET** /users/{id}/sales/aggregate | \n*UsersApi* | [**get_subscribers**](docs/UsersApi.md#get_subscribers) | **GET** /users/{id}/subscribers | \n*UsersApi* | [**get_supported_users**](docs/UsersApi.md#get_supported_users) | **GET** /users/{id}/supporting | \n*UsersApi* | [**get_supporters**](docs/UsersApi.md#get_supporters) | **GET** /users/{id}/supporters | \n*UsersApi* | [**get_top_track_tags**](docs/UsersApi.md#get_top_track_tags) | **GET** /users/{id}/tags | Fetch most used tags in a user&#39;s tracks\n*UsersApi* | [**get_tracks_by_user**](docs/UsersApi.md#get_tracks_by_user) | **GET** /users/{id}/tracks | \n*UsersApi* | [**get_user**](docs/UsersApi.md#get_user) | **GET** /users/{id} | \n*UsersApi* | [**get_user_by_handle**](docs/UsersApi.md#get_user_by_handle) | **GET** /users/handle/{handle} | \n*UsersApi* | [**get_user_challenges**](docs/UsersApi.md#get_user_challenges) | **GET** /users/{id}/challenges | \n*UsersApi* | [**get_user_id_from_wallet**](docs/UsersApi.md#get_user_id_from_wallet) | **GET** /users/id | \n*UsersApi* | [**get_user_tracks_remixed**](docs/UsersApi.md#get_user_tracks_remixed) | **GET** /users/{id}/tracks/remixed | \n*UsersApi* | [**search_users**](docs/UsersApi.md#search_users) | **GET** /users/search | \n*UsersApi* | [**verify_id_token**](docs/UsersApi.md#verify_id_token) | **GET** /users/verify_token | \n\n\n## Documentation For Models\n\n - [Access](docs/Access.md)\n - [AccessInfoResponse](docs/AccessInfoResponse.md)\n - [Activity](docs/Activity.md)\n - [AlbumsResponse](docs/AlbumsResponse.md)\n - [AuthorizedApp](docs/AuthorizedApp.md)\n - [AuthorizedApps](docs/AuthorizedApps.md)\n - [BlobInfo](docs/BlobInfo.md)\n - [ChallengeResponse](docs/ChallengeResponse.md)\n - [CollectionActivity](docs/CollectionActivity.md)\n - [Comment](docs/Comment.md)\n - [CommentMention](docs/CommentMention.md)\n - [CommentNotificationSetting](docs/CommentNotificationSetting.md)\n - [CommentResponse](docs/CommentResponse.md)\n - [ConnectedWallets](docs/ConnectedWallets.md)\n - [ConnectedWalletsResponse](docs/ConnectedWalletsResponse.md)\n - [CoverPhoto](docs/CoverPhoto.md)\n - [DashboardWalletUser](docs/DashboardWalletUser.md)\n - [DashboardWalletUsersResponse](docs/DashboardWalletUsersResponse.md)\n - [DecodedUserToken](docs/DecodedUserToken.md)\n - [DeveloperApp](docs/DeveloperApp.md)\n - [DeveloperAppResponse](docs/DeveloperAppResponse.md)\n - [DeveloperApps](docs/DeveloperApps.md)\n - [EncodedUserId](docs/EncodedUserId.md)\n - [ExtendedPaymentSplit](docs/ExtendedPaymentSplit.md)\n - [ExtendedPurchaseGate](docs/ExtendedPurchaseGate.md)\n - [ExtendedUsdcGate](docs/ExtendedUsdcGate.md)\n - [Favorite](docs/Favorite.md)\n - [FavoritesResponse](docs/FavoritesResponse.md)\n - [FollowGate](docs/FollowGate.md)\n - [FollowersResponse](docs/FollowersResponse.md)\n - [FollowingResponse](docs/FollowingResponse.md)\n - [GetChallenges](docs/GetChallenges.md)\n - [GetSupportedUsers](docs/GetSupportedUsers.md)\n - [GetSupporters](docs/GetSupporters.md)\n - [GetTipsResponse](docs/GetTipsResponse.md)\n - [NftCollection](docs/NftCollection.md)\n - [NftGate](docs/NftGate.md)\n - [Playlist](docs/Playlist.md)\n - [PlaylistAddedTimestamp](docs/PlaylistAddedTimestamp.md)\n - [PlaylistArtwork](docs/PlaylistArtwork.md)\n - [PlaylistResponse](docs/PlaylistResponse.md)\n - [PlaylistSearchResult](docs/PlaylistSearchResult.md)\n - [PlaylistTracksResponse](docs/PlaylistTracksResponse.md)\n - [PlaylistsResponse](docs/PlaylistsResponse.md)\n - [ProfilePicture](docs/ProfilePicture.md)\n - [PurchasersResponse](docs/PurchasersResponse.md)\n - [RelatedArtistResponse](docs/RelatedArtistResponse.md)\n - [RemixParent](docs/RemixParent.md)\n - [RemixedTrackAggregate](docs/RemixedTrackAggregate.md)\n - [RemixersResponse](docs/RemixersResponse.md)\n - [ReplyComment](docs/ReplyComment.md)\n - [Reposts](docs/Reposts.md)\n - [SalesAggregate](docs/SalesAggregate.md)\n - [SalesAggregateResponse](docs/SalesAggregateResponse.md)\n - [Stem](docs/Stem.md)\n - [StemsResponse](docs/StemsResponse.md)\n - [StreamUrlResponse](docs/StreamUrlResponse.md)\n - [SubscribersResponse](docs/SubscribersResponse.md)\n - [Supporter](docs/Supporter.md)\n - [Supporting](docs/Supporting.md)\n - [TagsResponse](docs/TagsResponse.md)\n - [Tip](docs/Tip.md)\n - [TipGate](docs/TipGate.md)\n - [TopListener](docs/TopListener.md)\n - [Track](docs/Track.md)\n - [TrackAccessInfo](docs/TrackAccessInfo.md)\n - [TrackActivity](docs/TrackActivity.md)\n - [TrackArtwork](docs/TrackArtwork.md)\n - [TrackCommentCountResponse](docs/TrackCommentCountResponse.md)\n - [TrackCommentNotificationResponse](docs/TrackCommentNotificationResponse.md)\n - [TrackCommentsResponse](docs/TrackCommentsResponse.md)\n - [TrackElement](docs/TrackElement.md)\n - [TrackInspect](docs/TrackInspect.md)\n - [TrackResponse](docs/TrackResponse.md)\n - [TrackSearch](docs/TrackSearch.md)\n - [TracksResponse](docs/TracksResponse.md)\n - [TrendingPlaylistsResponse](docs/TrendingPlaylistsResponse.md)\n - [UnclaimedIdResponse](docs/UnclaimedIdResponse.md)\n - [UndisbursedChallenge](docs/UndisbursedChallenge.md)\n - [UndisbursedChallenges](docs/UndisbursedChallenges.md)\n - [User](docs/User.md)\n - [UserAssociatedWalletResponse](docs/UserAssociatedWalletResponse.md)\n - [UserResponse](docs/UserResponse.md)\n - [UserSearch](docs/UserSearch.md)\n - [UserTracksRemixedResponse](docs/UserTracksRemixedResponse.md)\n - [UsersResponse](docs/UsersResponse.md)\n - [VerifyToken](docs/VerifyToken.md)\n\n\n<a id=\"documentation-for-authorization\"></a>\n## Documentation For Authorization\n\nEndpoints do not require authorization.\n\n\n## Author\n\n\n\n\n",
    "bugtrack_url": null,
    "license": "NoLicense",
    "summary": "A Python Implentation of the Audius API",
    "version": "0.1.2",
    "project_urls": {
        "Homepage": "https://github.com/samgutentag/pyaudius",
        "Repository": "https://github.com/samgutentag/pyaudius"
    },
    "split_keywords": [
        "music",
        " audius",
        " api",
        " web3",
        " crypto"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "18948f690b7a1ec8f656344ef5499be2cf12ac6ce30ae5ccd6c8df7e1ea53315",
                "md5": "039d935551581ccf36e7f133b0c2f968",
                "sha256": "a691c0ff1fdc3437ba60cf288d44eba2a86956eabafbea37ac6f0eef3183e7cc"
            },
            "downloads": -1,
            "filename": "pyaudius-0.1.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "039d935551581ccf36e7f133b0c2f968",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4.0,>=3.8",
            "size": 171228,
            "upload_time": "2024-12-04T07:03:37",
            "upload_time_iso_8601": "2024-12-04T07:03:37.965832Z",
            "url": "https://files.pythonhosted.org/packages/18/94/8f690b7a1ec8f656344ef5499be2cf12ac6ce30ae5ccd6c8df7e1ea53315/pyaudius-0.1.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a962717f19f39d9a1af06d8cdb0d7f0e746bf0f1fba95d80033db200ac6a89e7",
                "md5": "0abb627e92e98c3c030b981018e47c79",
                "sha256": "b778092a96c5d321353cbb039617e3321305053c80e640faa63541f3506a714f"
            },
            "downloads": -1,
            "filename": "pyaudius-0.1.2.tar.gz",
            "has_sig": false,
            "md5_digest": "0abb627e92e98c3c030b981018e47c79",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4.0,>=3.8",
            "size": 61389,
            "upload_time": "2024-12-04T07:03:39",
            "upload_time_iso_8601": "2024-12-04T07:03:39.726542Z",
            "url": "https://files.pythonhosted.org/packages/a9/62/717f19f39d9a1af06d8cdb0d7f0e746bf0f1fba95d80033db200ac6a89e7/pyaudius-0.1.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-12-04 07:03:39",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "samgutentag",
    "github_project": "pyaudius",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "urllib3",
            "specs": [
                [
                    ">=",
                    "1.25.3"
                ],
                [
                    "<",
                    "3.0.0"
                ]
            ]
        },
        {
            "name": "python_dateutil",
            "specs": [
                [
                    ">=",
                    "2.8.2"
                ]
            ]
        },
        {
            "name": "pydantic",
            "specs": [
                [
                    ">=",
                    "2"
                ]
            ]
        },
        {
            "name": "typing-extensions",
            "specs": [
                [
                    ">=",
                    "4.7.1"
                ]
            ]
        }
    ],
    "tox": true,
    "lcname": "pyaudius"
}
        
Elapsed time: 0.44387s