Fritz 1.1.0
See the version list below for details.
dotnet add package Fritz --version 1.1.0
NuGet\Install-Package Fritz -Version 1.1.0
<PackageReference Include="Fritz" Version="1.1.0" />
paket add Fritz --version 1.1.0
#r "nuget: Fritz, 1.1.0"
// Install Fritz as a Cake Addin #addin nuget:?package=Fritz&version=1.1.0 // Install Fritz as a Cake Tool #tool nuget:?package=Fritz&version=1.1.0
Fritz#
The FRITZ!Box is a popular device that provides internet access, telephony, and home networking services. It supports a protocol called TR064, which allows remote management and configuration of the device. However, the official TR064 implementation is proprietary and closed-source, which limits the users' freedom and control over their own devices. That's why we have developed a free and open-source TR064 implementation for the FRITZ!Box, which aims to provide a more transparent, secure, and customizable alternative. Our implementation is based on the TR064 specification and compatible with the existing FRITZ!Box features. It also offers some additional benefits, such as improved performance, enhanced security, and more options for customization. With our free and open-source TR064 implementation, you can take full advantage of your FRITZ!Box and enjoy a better internet experience.
Build Status
The current development branch ist master
.
Source code
- Clone the sources:
git clone https://github.com/chstorb/Fritz.git
Example
Write phonebook to csv file
- Open Visual Studio
- Create a new Console App
- Add the Fritz NuGet package to your project.
PM> Install-Package Fritz -Version 1.1.0
- Add the following code to the main method:
namespace ConsoleApp
{
class Program
{
static void Main(string[] args)
{
var fritzBox = new FritzClient()
{
UserName = "{YOUR_USERNAME}",
Password = "{YOUR_PASSWORD}"
};
// Write csv file to the application folder
fritzBox.WritePhonebookCsv(name: "Test Phonebook", folder: AppDomain.CurrentDomain.BaseDirectory, separator: ";");
}
}
}
- Run the program
License
Fritz# is licensed under the MIT license.
External links
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net48 is compatible. net481 was computed. |
This package has no dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Bug fixes and design improvement.