Soulseek 7.1.0

dotnet add package Soulseek --version 7.1.0
                    
NuGet\Install-Package Soulseek -Version 7.1.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Soulseek" Version="7.1.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soulseek" Version="7.1.0" />
                    
Directory.Packages.props
<PackageReference Include="Soulseek" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Soulseek --version 7.1.0
                    
#r "nuget: Soulseek, 7.1.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Soulseek@7.1.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Soulseek&version=7.1.0
                    
Install as a Cake Addin
#tool nuget:?package=Soulseek&version=7.1.0
                    
Install as a Cake Tool

Soulseek.NET

NuGet version Semantic Versioning license

CircleCI codecov Maintainability Rating Reliability Rating Security Rating

A .NET Standard client library for the Soulseek network.

Quick Start

Install from NuGet.

Connect to a Soulseek server

var client = new SoulseekClient();
await client.ConnectAsync("Username", "Password");

Search for something

IEnumerable<SearchResponse> responses = await Client.SearchAsync(SearchQuery.FromText("some search"));

Note: SearchAsync accepts a SearchQuery with the constructor SearchQuery(string query, IEnumerable<string> exclusions, int? minimumBitrate, int? minimumFileSize, int? minimumFilesInFolder, bool isVBR, bool isCBR), allowing all of the options provided by the official client.

SearchResponse has the following shape:

int FileCount
IReadOnlyCollection<File> Files
int LockedFileCount
IReadOnlyCollection<File> LockedFiles
int FreeUploadSlots
long QueueLength
int Token
int UploadSpeed
string Username

File has a number of properties; you'll need for Filename and Size for downloading.

Download a file

byte[] file = await Client.DownloadAsync(username: "some username", filename: "some fully qualified filename", size: 42);

OR (ideally)

var fs = new FileStream("c:\downloads\local filename", FileMode.Create);
await Client.DownloadAsync(username: "some username", filename: "some fully qualified filename", outputStream: fs, size: 42);

Note: Download to a stream where possible to reduce memory overhead.

Documentation

The external interface of the library is sparse and well documented; the best resource is the code itself. Of particular interest:

Excluded Search Phrases

Starting around the beginning of 2024, the Soulseek server has begun sending a list of 'excluded search phrases' as a way to restrict content exchanged on the network and appease copyright trolls.

This list of phrases is delivered in the event ExcludedSearchPhrassReceived, and it is my expectation that any outgoing search results must be filtered to exclude files that contain any of the excluded phrases in the path or filename.

I appreciate everyone's cooperation and commitment to ensuring the long term health of the Soulseek network.

Example Web Application

Note that the example application as been superseded by slskd and will no longer be maintained.

Included is a small web application which serves as an example.

It's important to note that there are currently no controls over uploads; anything you share can be downloaded by any number of people at any given time. With this in mind, consider sharing a small number of files from the example.

It's also important to note that some displays in the application poll the daemon for updates; this is inefficient, and you really shouldn't use this application over a mobile data connection.

Running with Docker

A Docker image containing the application can be pulled from jpdillingham/slsk-web-example.

A minimal run would look like:

docker run -i \
    -p 5000:5000 \
    -v <path/to/downloads>:/var/slsk/download \
    -v <path/to/shared>:/var/slsk/shared \
    -e "SLSK_USERNAME=<your username>" \
    -e "SLSK_PASSWORD=<your password>" \
    jpdillingham/slsk-web-example:latest

The application will then be accessible on port 5000 (e.g. http://localhost:5000). With this configuration the application won't be able to accept incoming connections and won't connect to the distributed network. You may receive limited search results and users won't find your files via search. Other users may have difficulty browsing your shares.

The full set of options is as follows:

docker run -i \
    -p 5000:5000 \
    -p 50000:50000 \
    -v <path/to/downloads>:/var/slsk/download \
    -v <path/to/shared>:/var/slsk/shared \
    -e "SLSK_USERNAME=<your username>" \
    -e "SLSK_PASSWORD=<your password>" \
    -e "SLSK_LISTEN_PORT=50000" \
    -e "SLSK_CONNECT_TIMEOUT=5000" \
    -e "SLSK_INACTIVITY_TIMEOUT=15000" \
    -e "SLSK_READ_BUFFER_SIZE=16384" \
    -e "SLSK_WRITE_BUFFER_SIZE=16384" \
    -e "SLSK_ENABLE_DNET=true" \
    -e "SLSK_DNET_CHILD_LIMIT=10" \
    -e "SLSK_DIAGNOSTIC=Info" \
    -e "SLSK_SHARED_CACHE_TTL=3600000" \
    -e "SLSK_ENABLE_SECURITY=true" \
    -e "SLSK_SECURITY_TOKEN_TTL=604800000" \
    -e "SLSK_ROOM_MESSAGE_LIMIT=250" \
    -e "SLSK_BASE_PATH=/"
    jpdillingham/slsk-web-example:latest

With this configuration the application will listen on port 50000 and will connect to the distributed network, allowing up to 10 child connections. The application shouldn't have any trouble connecting provided you've forwarded port 50000 properly, and will receive and respond to distributed search requests.

If SLSK_ENABLE_SECURITY is true, you will be prompted to log in. Supply the values you specified for the SLSK_USERNAME and SLSK_PASSWORD fields. Setting this option to false will disable the prompt.

If you would like to run the application behind a reverse proxy, set SLSK_BASE_PATH to your proxied path.

For convenience, two scripts, run and start, have been included in examples/Web/bin for running the example interactively and as a daemon, respectively.

Running without Docker

The example application is split into two projects; a .NET 5.0 WebAPI and a React application bootstrapped with create-react-app. If you'd like to run these outside of Docker you'll need to start both applications; dotnet run for the API and yarn|npm start for the React application. You can connect to http://localhost:3000, or the API serves Swagger UI at http://localhost:5000/swagger.

A build script included in the bin directory of the example which will build the React app, copy the static files to the wwwroot directory of the API, build the API, then attempt to build the Docker image.

See also

References

Alternative Clients and Libraries

Much of Soulseek.NET was made possible by the work of others. The following resources were used as a reference:

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories (2)

Showing the top 2 popular GitHub repositories that depend on Soulseek:

Repository Stars
slskd/slskd
A modern client-server application for the Soulseek file sharing network.
fiso64/slsk-batchdl
Advanced download tool for Soulseek.
Version Downloads Last Updated
7.1.0 430 6/15/2025
7.0.3 495 4/11/2025
7.0.2 772 3/31/2025
7.0.1 322 3/27/2025
7.0.0 493 3/25/2025
6.5.0 3,602 6/22/2024
6.4.1 1,206 2/19/2024
6.4.0 288 2/18/2024
6.3.0 786 1/14/2024
6.2.0 1,141 11/30/2023
6.1.3 722 11/11/2023
6.1.2 468 11/11/2023
6.1.1 3,113 12/31/2022
6.1.0 961 12/25/2022
6.0.0 1,065 11/27/2022
6.0.0-pre.4 146 11/26/2022
6.0.0-pre.3 209 11/23/2022
6.0.0-pre.2 135 11/23/2022
6.0.0-pre.1 978 10/16/2022
5.1.5 1,614 9/8/2022
5.1.4 923 9/8/2022
5.1.3 1,092 9/1/2022
5.1.2 975 9/1/2022
5.1.1 1,062 8/27/2022
5.1.0 1,460 8/3/2022
5.0.0 1,409 7/6/2022
4.5.3 1,443 5/12/2022
4.5.2 1,800 4/21/2022
4.5.1 1,109 4/11/2022
4.5.0 1,232 3/13/2022
4.4.5 1,120 2/21/2022
4.4.4 1,130 2/21/2022
4.4.3 1,032 2/10/2022
4.4.2 1,182 2/2/2022
4.4.1 1,018 1/31/2022
4.4.0 1,078 1/29/2022
4.3.0 1,006 1/23/2022
4.2.0 1,019 1/18/2022
4.1.0 1,079 1/13/2022
4.0.0 829 1/7/2022
3.4.2 870 12/22/2021
3.4.1 969 12/22/2021
3.4.0 918 12/20/2021
3.3.2 972 12/13/2021
3.3.1 905 12/12/2021
3.2.1 2,145 11/26/2021
3.1.2 920 11/23/2021
3.1.1 911 11/22/2021
3.1.0 1,111 11/21/2021
3.0.0 1,607 11/20/2021
3.0.0-pre-991116210933 774 11/16/2021
3.0.0-pre-991115211729 788 11/15/2021
3.0.0-pre-991115211101 736 11/15/2021
3.0.0-pre-991115210834 811 11/15/2021
3.0.0-pre-991114210811 741 11/14/2021
3.0.0-pre-991113212349 782 11/14/2021
3.0.0-pre-991113212333 787 11/14/2021
3.0.0-pre-991113212231 766 11/14/2021
3.0.0-pre-991113210753 836 11/13/2021
3.0.0-pre-991113210652 819 11/13/2021
3.0.0-pre-918211156 1,020 9/18/2021
3.0.0-pre-916212204 749 9/17/2021
3.0.0-pre-913212123 839 9/14/2021
3.0.0-pre-913211833 772 9/13/2021
3.0.0-pre-905211220 869 9/5/2021
3.0.0-pre-828211031 886 8/29/2021
3.0.0-pre-70321953 775 7/4/2021
3.0.0-pre-62621233 1,374 6/26/2021
3.0.0-pre-60821754 892 6/8/2021
3.0.0-pre-52521953 845 5/26/2021
3.0.0-pre-1102210644 944 11/2/2021
2.3.8 1,085 5/15/2021
2.3.7 978 5/11/2021
2.3.6-pre 780 5/11/2021
2.3.5-pre 835 5/10/2021
2.3.4-pre 799 5/10/2021
2.3.3 937 5/10/2021
2.3.2 983 5/7/2021
2.3.1 970 5/4/2021
2.3.0 953 5/2/2021
2.3.0-pre 751 5/1/2021
2.2.1 971 3/22/2021
2.2.0 1,043 3/19/2021
2.1.1 967 3/22/2021
2.1.0 985 3/10/2021
2.0.4 1,066 3/9/2021
2.0.3 981 2/23/2021
2.0.2 990 2/18/2021
2.0.1 953 2/14/2021
2.0.0 1,473 1/29/2021
1.0.1 1,111 1/12/2021
1.0.0 1,489 12/31/2020
1.0.0-rc3.1 316 9/9/2020
1.0.0-rc3 999 9/2/2020
1.0.0-rc2.3 345 8/27/2020
1.0.0-rc2.2 345 8/27/2020
1.0.0-rc2.1 385 5/16/2020
1.0.0-rc2 920 5/5/2020
1.0.0-rc1 936 4/7/2020
0.9.9.1-beta 1,021 4/6/2020
0.9.9-beta 948 4/5/2020
0.9.7-beta 986 2/2/2020
0.9.6-beta 970 2/2/2020
0.9.5-beta 1,029 2/2/2020
0.9.4-beta 1,028 2/2/2020
0.9.3-beta 963 2/1/2020
0.9.2-beta 995 2/1/2020
0.9.1-beta 995 2/1/2020
0.9.0-beta 1,048 2/1/2020