-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* better cli output * updating documentation * updating documentation * updating badge * updating changelog * Update publish.yml * updating setup.py * Update README.md * first stable release Signed-off-by: Deepak Raj <[email protected]> * Update CHANGELOG.md * updating cli * refactoring code Signed-off-by: Deepak Raj <[email protected]> * fixing flake8 error * bug fixed Signed-off-by: Deepak Raj <[email protected]> * tested * flake8 error * flake8 error * refactroing code * updating docs Signed-off-by: Deepak Raj <[email protected]> * test cases updated * test cases updated * adding scripts for release automation (#49) * bumping version 1.0.0 to 2.0.0 (#50) * adding scripts for release automation * v2.0.0 releasing * updating changelog Signed-off-by: Deepak Raj <[email protected]> * Delete update_package.sh * Update FUNDING.yml * Update FUNDING.yml * Issue #44 (#52) * add gender options for first names * add gender options for first names, random card * add job experience according to years of age * add parameter option for logging (not implemented yet) * add handpicked locations to cities in list * add float coords generation * add coordinates string formatting * fix ages in job level generation * start of unit tests * add more tests * add assertregex ussage in tests * fix missing imports * lint fixes * two lines padding before class * solving git conflict * refactoring code Signed-off-by: Deepak Raj <[email protected]> * refacoting code and changelog update * Update FUNDING.yml Signed-off-by: Deepak Raj <[email protected]> Co-authored-by: Rahul Sharma <[email protected]> Co-authored-by: DavidCano98 <[email protected]>
- Loading branch information
1 parent
620d18f
commit abc6f8e
Showing
25 changed files
with
1,583 additions
and
302 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,5 @@ | ||
custom: ["https://www.buymeacoffee.com/codeperfectplus"] | ||
github: [codeperfectplus] | ||
|
||
|
||
|
||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,6 @@ | |
<h1 align="center"> | ||
<a href="https://pypi.org/project/random-profile/"> | ||
Random Profile Generator | ||
</a> | ||
V2.0.0 | ||
</h1> | ||
|
||
<h4 align="center">Python Module To Generate Random Profile Data</h4> | ||
|
@@ -19,34 +17,27 @@ | |
<img src="https://img.shields.io/pypi/dw/random-profile.svg"> | ||
<img src="https://img.shields.io/pypi/dm/random-profile.svg"> | ||
</p> | ||
<p align="center"> | ||
<p align="center"> | ||
|
||
<img alt="GitHub pull-requests" src="https://img.shields.io/github/issues-pr/Py-Contributors/RandomProfileGenerator"> | ||
|
||
<img alt="GitHub forks" src="https://img.shields.io/github/forks/Py-Contributors/RandomProfileGenerator"> | ||
<img alt="GitHub forks" src="https://img.shields.io/github/forks/Py-Contributors/RandomProfileGenerator"> | ||
|
||
<img alt="contributors" src="https://img.shields.io/github/contributors/Py-Contributors/RandomProfileGenerator"> | ||
<img alt="contributors" src="https://img.shields.io/github/contributors/Py-Contributors/RandomProfileGenerator"> | ||
|
||
<img alt="GitHub stars" src="https://img.shields.io/github/stars/Py-Contributors/RandomProfileGenerator"> </p> | ||
|
||
|
||
[RandomProfile](https://pypi.org/project/random-profile/) is a powerful and simple tool to generate fake data. You can use it to mock classes, populate databases and much more. You can check the full documentation here. Check on [Pypi](https://pypi.org/project/random-profile/) | ||
|
||
```sh | ||
pip install random-profile | ||
``` | ||
|
||
## Documentation | ||
|
||
Full Documentation is available at [ReadTheDocs](https://randomprofilegenerator.readthedocs.io/en/latest/) | ||
Documentation is available at [ReadTheDocs](https://randomprofilegenerator.readthedocs.io/en/latest/) | ||
|
||
## Upcoming Features | ||
|
||
- More Data Fields | ||
- More Data Types | ||
- Make it more user friendly and easy to use | ||
- Make it more efficient and faster | ||
- Cython Support | ||
- Support for more languages | ||
|
||
## Changelog | ||
|
||
|
@@ -58,14 +49,10 @@ Check the [Contributing](/CONTRIBUTING.md) for the contribution guidelines. | |
|
||
## License | ||
|
||
The project is licensed under the <a href="/LICENSE">MIT</a> license. | ||
The project is licensed under the <a href="/LICENSE">MIT</a> license. | ||
|
||
## Contributors | ||
|
||
<a href="https://github.com/codePerfectPlus/awesomeScripts/graphs/contributors"> | ||
<img src="https://contrib.rocks/image?repo=codePerfectPlus/randomprofilegenerator" /> | ||
</a> | ||
|
||
## Sponsor | ||
|
||
Email: [Pycontributors](mailto:[email protected]) for sponsorship details. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
Import as module | ||
---------------- | ||
------------ | ||
|
||
You can import the module and use it in your own scripts. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.