Giter Site home page Giter Site logo

jonny-exe / german-words-library Goto Github PK

View Code? Open in Web Editor NEW
25.0 3.0 5.0 16.85 MB

German words library in JSON with either 5,000 words or 1,600,000 words

License: GNU General Public License v3.0

library german words deutsch worterbuch worter dictionary woerterbuch

german-words-library's Introduction

German-Words-Library in JSON

This is a collection of 2 German word lists. One 1.6 million words long. The other 5,000 words long.

Das ist eine Deutsche Wörter Sammlung in JSON Format.

Features

  • JSON format
  • original spelling including uppercase and lowercase
  • original spelling including letters liket ä, ö, ü, ß, ect.
  • Two sizes: 1,6M and 5K.
  • The 5000 words have been selected randomly
  • Both lists are alphabetically sorted

Files

["Abbaumaschinen",
"Abbauorte",
"Abbausituationen",
"Abendwache",
"Abfallens",
"Abfalltasche",
...
"übersäten",
"überzeugend",
"üblicheres"]

Original source

Example usage in JavaScript

var getJSON = function(url, callback) {
  var xhr = new XMLHttpRequest();
  xhr.open('GET', url, true);
  xhr.responseType = 'json';
  xhr.onload = function() {
    var status = xhr.status;
    if (status === 200) {
      callback(null, xhr.response);
    } else {
      callback(status, xhr.response);
    }
  };
  xhr.send();
};

getJSON('https://raw.githubusercontent.com/Jonny-exe/German-Words-Library/master/German-words-5000-words.json',
    function(err, data) {  
      if (err !== null) {
        alert('Something went wrong: ' + err);
      } else {
        // Data is the JS array
      }
    }
  );

Enjoy

  • Fork
  • or use directly from Github (e.g. https://raw.githubusercontent.com/Jonny-exe/German-Words-Library/master/German-words-5000-words.json)
  • and if you like it or use it, please give me a ⭐ on Github

german-words-library's People

Contributors

alfred-pro avatar jonny-exe avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

german-words-library's Issues

project description could be improved

  • current desccription is A german words library with a 1,6 million words options and a 5000 words. In JSON files.
  • maybe something like: German words library in JSON with either 5,000 words or 1,600,000 words would be better

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.