Giter Site home page Giter Site logo

Seed Support about exrex HOT 2 OPEN

asciimoo avatar asciimoo commented on July 18, 2024
Seed Support

from exrex.

Comments (2)

vwyu avatar vwyu commented on July 18, 2024 2

I was thinking that having an optional seed argument would be useful too. But after realizing that randomint and choice from random library do not also have seed arguments, I now think it is better to set the seed separately for consistency.

import exrex
import random

pattern = r'(A|N)[0-5]{3}'
random.seed(777)
string1 = exrex.getone(pattern)
random.seed(777)
string2 = exrex.getone(pattern)

string1 == string2  # returns True

Perhaps, getone can be implemented as a method of a class derived from the base class Random.

from exrex.

gaborod16 avatar gaborod16 commented on July 18, 2024

The functions used from the random module, in the function called by exrex.getone, could be taken from an instance of random.Random. Once this change is done, setting the seed as proposed by @ghosalya is easy.

_rng = random.Random()

def _randone(d, limit=20, grouprefs=None, seed=None):
    _rng.seed(seed)
    ...
    _rng.choice(...)
    ...

def getone(regex_string, limit=20, seed=None):
    return _randone(parse(regex_string), limit, seed)

string1 = exrex.getone(pattern, seed=777)

It would also be easy to support the solution proposed by @vwyu in a more integrated manner.

def seed(seed):
    _rng.seed(seed)

pattern = r'(A|N)[0-5]{3}'
exrex.seed(777)
string1 = exrex.getone(pattern)
exrex.seed(777)
string2 = exrex.getone(pattern)

string1 == string2  # returns True

from exrex.

Related Issues (20)

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.