Mimesis: A Powerful Python Library for Realistic Fake Data Generation
This repository profile is provided by osrepos.com, an open source repository discovery platform.

Summary
Mimesis is a robust Python library designed for generating fake yet realistic data across various languages and locales. It simplifies the creation of diverse data types, from personal information to financial details. This makes it an invaluable tool for development, testing, and anonymization tasks.
Repository Information
Topics
Click on any tag to explore related repositories
Use at your own risk
OSRepos shares public repositories for knowledge and discovery only. Any installation, execution, configuration, or use of code from these repositories is the user's own responsibility. Always review the repository, source code, dependencies, licenses, and security implications before running or installing anything. OSRepos is not responsible for issues, damages, or losses resulting from third-party repositories.
Introduction
Mimesis is a powerful Python library designed for generating fake, yet realistic, data across multiple languages and locales. It serves as an essential tool for developers and testers who need to populate databases, mock API responses, create sample datasets, or anonymize sensitive production data. With its simple, consistent API, Mimesis makes it straightforward to produce diverse data types, including names, addresses, dates, phone numbers, emails, and financial information.
Key features of Mimesis include:
- Multilingual Support: Generates data in 47 different locales.
- Extensibility: Allows for custom data providers and field handlers.
- Ease of Use: Features a simple design and clear documentation.
- High Performance: Recognized as one of the fastest Python data generators.
- Data Variety: Offers numerous data providers for various use cases.
- Schema-based Generation: Effortlessly produces complex data structures.
- Relational Data: Supports generating related datasets with foreign keys.
- Intuitive Development: Provides full type hints for excellent editor support and autocompletion.
Installation
To get started with Mimesis, install it using pip:
pip install mimesis
Examples
Mimesis provides various data providers. For instance, the Person provider can generate personal information like names and emails:
from mimesis import Person
from mimesis.locales import Locale
person = Person(Locale.EN)
person.full_name()
# Output: 'Brande Sears'
person.email(domains=['example.com'])
# Output: 'roccelline1878@example.com'
person.email(domains=['mimesis.name'], unique=True)
# Output: 'f272a05d39ec46fdac5be4ac7be45f3f@mimesis.name'
person.telephone(mask='1-4##-8##-5##3')
# Output: '1-436-896-5213'
Why Use Mimesis?
Mimesis stands out due to its exceptional performance, extensive multilingual support, and ability to generate complex, structured, and relational data. Its intuitive API and comprehensive documentation make it easy to integrate into any project requiring realistic fake data. Whether you're building test suites, developing new features, or creating anonymized datasets, Mimesis offers a robust and efficient solution to streamline your workflow and ensure data quality.
Links
Related repositories
Similar repositories that may be relevant next.

oh-my-hermes: Enhance Hermes Agent with Advanced AI Workflow and Memory
September 17, 2026
oh-my-hermes is an all-in-one plugin designed to significantly enhance the Hermes Agent. It provides advanced coding intelligence, a robust long-term memory system, and optimized workflow packages, transforming standard Hermes requests into structured, actionable tasks with clear operational layers.
ASC: A Super Fast Android Decompiler for Mobile Reverse Engineering
September 17, 2026
ASC is an innovative and exceptionally fast Android decompiler front-end, specifically designed for mobile researchers and agents. It redefines traditional decompilation by directly querying compiled artifacts, offering on-demand code extraction and analysis without heavy preprocessing. This approach results in significantly reduced memory usage and lightning-fast performance, even on large APKs.

Open Index: A Deterministic Memory Layer for Your AI Agents
September 16, 2026
Open Index is a powerful tool for building domain-specific, accurate, and structured data that AI agents can effectively operate on. It enables the creation of a "brain," a searchable and continuously improving context graph tailored to any domain. This system ensures agents have access to reliable, up-to-date information, enhancing their capabilities and decision-making processes.
tooltrim: Drastically Reduce LLM Agent Tool Output Tokens, Improve Accuracy
September 16, 2026
tooltrim provides drop-in compression for LLM agent tool outputs, drastically cutting tokens while often improving answer accuracy. This provider-agnostic solution offers content-aware compression, faithfulness benchmarks, and seamless integration with popular frameworks or as an OpenAI-compatible proxy.
Source repository
Open the original repository on GitHub.
12 counted GitHub visits