{"id":15010307,"url":"https://github.com/atesbazi/dataimitator","last_synced_at":"2026-02-08T09:04:11.688Z","repository":{"id":253442517,"uuid":"829414869","full_name":"atesbazi/dataimitator","owner":"atesbazi","description":"Generates random data for your needs.","archived":false,"fork":false,"pushed_at":"2024-07-19T13:26:47.000Z","size":58,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-12T21:41:46.463Z","etag":null,"topics":["clojure","clojure-library","data","fake","fake-data","random-data","random-data-generation","random-generation"],"latest_commit_sha":null,"homepage":"https://dataimitator.netlify.app/","language":"Clojure","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"epl-1.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/atesbazi.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-07-16T11:36:18.000Z","updated_at":"2024-07-19T14:16:18.000Z","dependencies_parsed_at":"2024-08-16T19:21:27.069Z","dependency_job_id":null,"html_url":"https://github.com/atesbazi/dataimitator","commit_stats":null,"previous_names":["atesbazi/dataimitator"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/atesbazi/dataimitator","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atesbazi%2Fdataimitator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atesbazi%2Fdataimitator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atesbazi%2Fdataimitator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atesbazi%2Fdataimitator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/atesbazi","download_url":"https://codeload.github.com/atesbazi/dataimitator/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atesbazi%2Fdataimitator/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29225714,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-08T06:05:31.539Z","status":"ssl_error","status_checked_at":"2026-02-08T05:58:33.853Z","response_time":57,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["clojure","clojure-library","data","fake","fake-data","random-data","random-data-generation","random-generation"],"created_at":"2024-09-24T19:33:29.937Z","updated_at":"2026-02-08T09:04:11.673Z","avatar_url":"https://github.com/atesbazi.png","language":"Clojure","readme":"# dataimitator\n[![Clojars Project](https://img.shields.io/clojars/v/org.clojars.atesbazi/dataimitator.svg)](https://clojars.org/org.clojars.atesbazi/dataimitator)\n\n\nDataImitator is a Clojure library designed to generate random words, phrases and ready-to-use data in multiple languages. It prepares data to meet your needs in many areas, from address information to finance, from person information to vehicle information.\n\n## Features\n-   **Multi-language support:** Generate random words in Arabic, German, English, Spanish, French and Turkish .\n-   **Random data:** Generate random animal species, color, company data, datetime, finance, geometry, person, phone, shopping, unit, vehicle and word.\n\n## Installation\n\nAdd the following dependency to your `project.clj` file:\n```clojure\n[dataimitator \"0.0.3\"]\n```\n\n## Usage\nYou can see some example uses below.\n\n### Random Conjunctions\n\nGenerate a random conjunction in a specified language. Defaults to English if no language is specified.\n\n```clojure\n(ns example.core \n(:require [dataimitator.word.conjuction.core :refer [random-conjunction]])) \n\n;; Generate a random English conjunction \n(random-conjunction) \n;; =\u003e \"and\" \n\n;; Generate a random German conjunction \n(random-conjunction :de)\n;; =\u003e \"aber\"\n```\n\n### Random Nouns\n\nGenerate a random noun in a specified language. Defaults to English if no language is specified.\n\n```clojure\n(ns example.core\n  (:require [dataimitator.word.noun.core :refer [random-noun]]))\n\n;; Generate a random English noun\n(random-noun)\n;; =\u003e \"car\"\n\n;; Generate a random Spanish noun\n(random-noun :es)\n;; =\u003e \"coche\"\n```\n\n### Random Prepositions\n\nGenerate a random preposition in a specified language. Defaults to English if no language is specified.\n\n```clojure\n(ns example.core\n  (:require [dataimitator.word.preposition.core :refer [random-preposition]]))\n\n;; Generate a random English preposition\n(random-preposition)\n;; =\u003e \"in\"\n\n;; Generate a random French preposition\n(random-preposition :fr)\n;; =\u003e \"à\"\n```\n\n### Random Verbs\nGenerate a random verb in a specified language. Defaults to English if no language is specified.\n\n```clojure\n(ns example.core\n  (:require [dataimitator.word.verb.core :refer [random-verb]]))\n\n;; Generate a random English verb\n(random-verb)\n;; =\u003e \"run\"\n\n;; Generate a random Turkish verb\n(random-verb :tr)\n;; =\u003e \"çalışmak\"\n```\n\n### Random Lorem Ipsum Text\nGenerate random lorem ipsum text with a specified number of words.\n\n```clojure\n(ns example.core\n  (:require [dataimitator.word.lorem.core :refer [random-lorem-ipsum]]))\n\n;; Generate random lorem ipsum text with 50 words\n(random-lorem-ipsum 50)\n;; =\u003e \"Lorem ipsum dolor sit amet consectetur adipiscing elit...\"\n\n;; Generate random lorem ipsum text with 100 words\n(random-lorem-ipsum 100)\n;; =\u003e \"Lorem ipsum dolor sit amet consectetur adipiscing elit...\"\n```\n\n## License\n\nLicensed under the EPL.\n\nCopyright © 2024 \n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fatesbazi%2Fdataimitator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fatesbazi%2Fdataimitator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fatesbazi%2Fdataimitator/lists"}