JBugmenot

Java Bugmenot library to find account and password for various sites.

Лицензия

Лицензия

Категории

Категории

IDE Инструменты разработки
Группа

Группа

com.github.davidepastore
Идентификатор

Идентификатор

jbugmenot
Последняя версия

Последняя версия

0.2.1
Дата

Дата

Тип

Тип

jar
Описание

Описание

JBugmenot
Java Bugmenot library to find account and password for various sites.
Ссылка на сайт

Ссылка на сайт

https://github.com/DavidePastore/JBugmenot
Система контроля версий

Система контроля версий

https://github.com/DavidePastore/JBugmenot.git

Скачать jbugmenot

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/com.github.davidepastore/jbugmenot/ -->
<dependency>
    <groupId>com.github.davidepastore</groupId>
    <artifactId>jbugmenot</artifactId>
    <version>0.2.1</version>
</dependency>
// https://jarcasting.com/artifacts/com.github.davidepastore/jbugmenot/
implementation 'com.github.davidepastore:jbugmenot:0.2.1'
// https://jarcasting.com/artifacts/com.github.davidepastore/jbugmenot/
implementation ("com.github.davidepastore:jbugmenot:0.2.1")
'com.github.davidepastore:jbugmenot:jar:0.2.1'
<dependency org="com.github.davidepastore" name="jbugmenot" rev="0.2.1">
  <artifact name="jbugmenot" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.github.davidepastore', module='jbugmenot', version='0.2.1')
)
libraryDependencies += "com.github.davidepastore" % "jbugmenot" % "0.2.1"
[com.github.davidepastore/jbugmenot "0.2.1"]

Зависимости

compile (1)

Идентификатор библиотеки Тип Версия
org.jsoup : jsoup jar 1.10.2

test (1)

Идентификатор библиотеки Тип Версия
junit : junit jar 4.1

Модули Проекта

Данный проект не имеет модулей.

JBugmenot

Build Status Known Vulnerabilities

Java Bugmenot library to find account and password for various sites.

Install

If you use Maven to manage the dependencies in your Java project (and you should!), you do not need to download; just place the following into your POM's section:

<dependency>
  <!-- Bugmenot library to find account and password for various sites -->
  <groupId>com.github.davidepastore</groupId>
  <artifactId>jbugmenot</artifactId>
  <version>0.2.1</version>
</dependency>

Usage

Find all the accounts of a site:

ArrayList<Account> accounts = JBugMeNot.getAllAccounts("nypost.com");

Find the first login of a site:

ArrayList<Account> accounts = JBugMeNot.getAllAccounts("imdb.com");
Account firstAccount = accounts.get(0);
String username = firstAccount.getUsername();
String password = firstAccount.getPassword();
long votes = firstAccount.getVotes();
Date addingDate = firstAccount.getAddingDate();

Find all the accounts that have a given succes rate:

JBugmenot.setMinimumSuccessRate(50);
ArrayList<Account> accounts = JBugmenot.getAllAccounts("nypost.com");

Vote an account:

ArrayList<Account> accounts = JBugmenot.getAllAccounts("corriere.it");
Account lastAccount = accounts.get(accounts.size() - 1);
JBugmenot.vote(lastAccount, false);
//OR
lastAccount.vote(false);

Issues

If you find problems, please open an issue here.

Версии библиотеки

Версия
0.2.1
0.2.0
0.1.0
0.0.1