Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit b967da8

Browse files
Removed old thing I did cuz im stupid
1 parent fc97e18 commit b967da8

File tree

1 file changed

+0
-34
lines changed

1 file changed

+0
-34
lines changed

ReadMe.md

Lines changed: 0 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -77,37 +77,3 @@ make your changes, and submit a pull request.
7777
## License
7878

7979
**AlgoPy** is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.
80-
81-
82-
---
83-
84-
# Usage
85-
86-
## Faker
87-
88-
### Personal
89-
```python
90-
from algopy import faker
91-
92-
# Initialize the Personal class with extra data
93-
extra_data = {
94-
"extra_first_names": ["Liam", "Olivia"],
95-
"extra_last_names": ["Anderson", "Clark"],
96-
"extra_cities": ["Austin", "Seattle"],
97-
"extra_countries": ["Brazil", "India"],
98-
"extra_street_names": ["Sunset", "Ocean"],
99-
"extra_domains": ["newdomain.com", "anotherdomain.org"]
100-
}
101-
102-
# Create an instance of the Personal class with the extra data
103-
faker.Personal.__init__(extra_data=extra_data)
104-
105-
# Generate random names, addresses, and emails using the updated data
106-
names = faker.Personal.name(amount=5)
107-
addresses = faker.Personal.address(amount=5)
108-
emails = faker.Personal.email(amount=5)
109-
110-
print("Names:", names)
111-
print("Addresses:", addresses)
112-
print("Emails:", emails)
113-
```

0 commit comments

Comments
 (0)