#
luhn
Here are 70 public repositories matching this topic...
A C# library for validating and generating credit card numbers.
-
Updated
Jun 28, 2022 - C#
Minimal, zero-dependency implementation of the Luhn Algorithm for PHP.
php
card
personnummer
creditcard
luhn
luhn-algorithm
credit
luhn-php
creditcard-validator
luhn-checksum
-
Updated
Mar 11, 2022 - PHP
Open
Additional Tests
2
good first issue
Good for newcomers
codebase
Issues relating to the source code
tests
Issues relating to testing the source code
Open
Error handling
1
aloisdg
commented
Oct 18, 2021
Hi!
All flags are not covered by the documentation and showcase as example. We need more :)
documentation
Improvements or additions to documentation
good first issue
Good for newcomers
hacktoberfest
Hacktoberfest encourages participation in the open source community, which grows bigger every year.
hacktoberfest-accepted
A Java library for generating mathematically-valid credit card numbers for software testing. The API provides customizable criteria for generation, and is extensible to apply to any payment card type which uses Luhn validation (not limited to just credit cards).
credit-card
java-library
amex
criteria
discover
visa
credit-cards
card-number
luhn
mastercard
mod10
payment-cards
credit-card-generator
number-generator
luhn-validation
credit-card-number-generator
american-express
discover-card
-
Updated
Jun 7, 2021 - Java
This Python code scrapes Google search results then applies sentiment analysis, generates text summaries, and ranks keywords.
python
search-engine
scraper
google
sentiment-analysis
scraping
sentiment
python3
keywords
scrape
scrapers
python-3
lsa
keyword-extraction
scraping-websites
luhn
sentiment-classification
lexrank
keyword-extractor
keywords-extraction
-
Updated
Feb 14, 2021 - Python
Fake credit card generator and validator. This is only meant for educational purpose.
-
Updated
Aug 17, 2020 - Python
Luhn (Modulo 10 or mod 10 algorithm) for PHP
-
Updated
Dec 2, 2021 - PHP
Fastest JavaScript implementation of the Luhn algorithm
-
Updated
Dec 21, 2019 - JavaScript
PHP implementation of the Luhn algorithm.
-
Updated
May 16, 2022 - PHP
A set of check digit algorithms implemented in Dart
-
Updated
Sep 8, 2021 - Dart
Simple validator for identification numbers based on the Luhn algorithm
-
Updated
Feb 12, 2022 - Python
Contains helper classes that I find useful every now and then.
-
Updated
Aug 13, 2021 - Java
Luhn algorithm written in Go
go
checksum
luhn
luhn-algorithm
checksum-calculation
luhn-checksum
checksum-validator
luhn-validation
golan
mod-10
modulus-10
-
Updated
Oct 4, 2019 - Go
The Luhn algorithm is a simple checksum formula used to validate a variety of identification numbers, such as credit card numbers and Canadian Social Insurance Numbers.
-
Updated
Sep 22, 2020 - JavaScript
Checks if a number is valid per the luhn algorithm
-
Updated
May 19, 2020 - R
Kata : implémenter la formule de Luhn pour vérifier des numéros de cartes bancaires
-
Updated
Oct 4, 2021
Clojure implementation for Luhn algorithm number check
-
Updated
Oct 7, 2019 - Clojure
This Python code retrieves thousands of tweets, classifies them using TextBlob and VADER in tandem, summarizes each classification using LexRank, Luhn, LSA, and LSA with stopwords, and then ranks stopwords-scrubbed keywords per classification.
python
twitter
twitter-api
python3
keywords
keyword
python-3
lsa
stopwords
twitter-sentiment-analysis
keyword-extraction
vader-sentiment-analysis
luhn
textblob
lexrank
vader
stopwords-removal
keywords-extraction
vadersentiment
textblob-sentiment-analysis
-
Updated
Aug 31, 2019 - Python
luhn check-digit validator and generator
-
Updated
Feb 18, 2021 - Go
Calculate the check digit(mod10 algorithm)
-
Updated
Jun 2, 2019 - JavaScript
luhn check-digit validator and generator
-
Updated
Dec 11, 2017 - JavaScript
Luhn's Algorithm implementation in Nim
-
Updated
Feb 28, 2020 - Nim
Luhn algorithm written in Java
-
Updated
Oct 13, 2020 - Java
Improve this page
Add a description, image, and links to the luhn topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the luhn topic, visit your repo's landing page and select "manage topics."
Having more tests can never be a bad thing!
Tests can be found in the tests.py file. An example would be the following:
https://github.com/harens/checkdigit/blob/59c3ee329f4f2f32655a78a12ba55476f8d636d7/tests.py#L64
The first parameter of
testis the function to be tested, and the second is the expected value.EDIT: This is