Skip to content

joyz-inc/prototype-of-word-ref-server

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This is a mini server used to verify the validation of a word

Usage

$ docker pull zlczlc/word_validation
$ docker run -p 5000:5000 zlczlc/word_validation

Usage 1: Input "http://localhost:5000/login", input the test word in the form of the website and view the result.

Usage 2: Open a python script and use the following command to test the validation.

import requests
testWord = "example"
response = requests.get("http://127.0.0.1:5000",params = {'word': testWord})
validation = bytes.decode(response.content)

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 99.6%
  • Mako 0.1%
  • CSS 0.1%
  • JavaScript 0.1%
  • C 0.1%
  • Shell 0.0%