Skip to content

Commit

Permalink
Removed old thing I did cuz im stupid
Browse files Browse the repository at this point in the history
  • Loading branch information
DefinetlyNotAI committed Oct 29, 2024
1 parent fc97e18 commit b967da8
Showing 1 changed file with 0 additions and 34 deletions.
34 changes: 0 additions & 34 deletions ReadMe.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,37 +77,3 @@ make your changes, and submit a pull request.
## License

**AlgoPy** is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.


---

# Usage

## Faker

### Personal
```python
from algopy import faker

# Initialize the Personal class with extra data
extra_data = {
"extra_first_names": ["Liam", "Olivia"],
"extra_last_names": ["Anderson", "Clark"],
"extra_cities": ["Austin", "Seattle"],
"extra_countries": ["Brazil", "India"],
"extra_street_names": ["Sunset", "Ocean"],
"extra_domains": ["newdomain.com", "anotherdomain.org"]
}

# Create an instance of the Personal class with the extra data
faker.Personal.__init__(extra_data=extra_data)

# Generate random names, addresses, and emails using the updated data
names = faker.Personal.name(amount=5)
addresses = faker.Personal.address(amount=5)
emails = faker.Personal.email(amount=5)

print("Names:", names)
print("Addresses:", addresses)
print("Emails:", emails)
```

0 comments on commit b967da8

Please sign in to comment.