Skip to content

Latest commit

 

History

History
122 lines (88 loc) · 3.25 KB

README.md

File metadata and controls

122 lines (88 loc) · 3.25 KB

WhoIs4K

A library for who is requests.

Discord

GitHub last commit GitHub commit activity
GitHub code size in bytes GitHub contributors

Usage

Import

Replace ${version} with the current version!

Gradle KTS
repositories {
    maven("https://jitpack.io")
}

dependencies {
    implementation("com.github.Lyzev:WhoIs4K:${version}")
}
Gradle Groovy
repositories {
	maven { url 'https://jitpack.io' }
}

dependencies {
    implementation 'com.github.Lyzev:WhoIs4K:${version}'
}
Maven
<repositories>
    <repository>
        <id>jitpack.io</id>
        <url>https://jitpack.io</url>
    </repository>
</repositories>

<dependencies>
    <dependency>
        <groupId>com.github.Lyzev</groupId>
        <artifactId>WhoIs4K</artifactId>
        <version>${version}</version>
    </dependency>
</dependencies>
Raw Jar
  1. Go to the release page.
  2. Download WhoIs4K-${version}.jar.
  3. Add the jar to your classpath.

Example

Kotlin
val whoIs = WhoIs("google.com")
whoIs.doRequest().forEach(::println)
Java
WhoIs whoIs = new WhoIs("google.com");
whoIs.doRequest().forEach(System.out::println);

Documentation

You can find the documentation here.

Code Quality Monitoring

You can find the qodana report here.

Bugs and Suggestions

Bug reports and suggestions should be made in this repo's issue tracker using the templates provided. Please provide as much information as you can to best help us understand your issue and give a better chance of it being resolved.

What is a WHOIS?

WHOIS (pronounced as the phrase "who is") is a query and response protocol that is widely used for querying databases that store the registered users or assignees of an Internet resource, such as a domain name, an IP address block or an autonomous system, but is also used for a wider range of other information. The protocol stores and delivers database content in a human-readable format. The current iteration of the WHOIS protocol was drafted by the Internet Society, and is documented in RFC 3912.

Source: Wikipedia
See Wikipedia for more information.