Skip to content

Duplicates #4

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Apr 4, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@ cython_debug/
.DS_Store

# Dont track big csv files
files/
*500000.csv
*1000000.csv
*2000000.csv
48 changes: 48 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,57 @@ The datasets are generated using random values. Mosly using Python [Faker](https
- Industry
- Number of employees

## Leads CSV Samples

- [leads-100.csv](https://drive.google.com/uc?id=1lGNKLeKjS7n03JrEgtiGsw6hUMbdnOO5&export=download) - [Zip version](https://drive.google.com/uc?id=1v4cIPFyS38utm2LG3wr1Lj7czfgK0x7i&export=download) - Leads CSV with 100 records
- [leads-1000.csv](https://drive.google.com/uc?id=1oRXTuvdsZ0HKcpVzV7I5I9-BYKheR1RM&export=download) - [Zip version](https://drive.google.com/uc?id=1EXby0tTtKWN_V75z7ezVuVHnPr99_oIV&export=download) - Leads CSV with 1000 records
- [leads-10000.csv](https://drive.google.com/uc?id=1IHpMYaUbCwOjzVANMm818FlFG0u3-9iC&export=download) - [Zip version](https://drive.google.com/uc?id=1BKpNWE1NcKTl7rN-52o83nZbTX3sqX9E&export=download) - Leads CSV with 10000 records
- [leads-100000.csv](https://drive.google.com/uc?id=1mCFMwc_Y0nU8G99-AUznqqBvh6t2Kg8B&export=download) - [Zip version](https://drive.google.com/uc?id=1qW9jbDnlFzxVr8QbYipEohvvSAj6yXSi&export=download) - Leads CSV with 100000 records


### Lead Schema

- Index
- Account Id
- Lead Owner
- First Name
- Last Name
- Company
- Phone 1
- Phone 2
- Email 1
- Email 2
- Website
- Source
- Deal Stage
- Notes


## Products CSV Samples

- [products-100.csv](https://drive.google.com/uc?id=107Sqmt1sk6oGcKL_TwNVqz5wMJBavsoq&export=download) - [Zip version](https://drive.google.com/uc?id=1QelGM4sjuCbLQ8eJBkHuagsDyQZm5YKC&export=download) - Products CSV with 100 records
- [products-1000.csv](https://drive.google.com/uc?id=1aZNLCVO0VoHmvPNvSC2teeFmZfiViE6u&export=download) - [Zip version](https://drive.google.com/uc?id=1uyd43hna_IVm6ZitUBLty5-GVUSGfMVK&export=download) - Products CSV with 1000 records
- [products-10000.csv](https://drive.google.com/uc?id=1BE-dfkrb6oyLKDuqXAq2fDYMkDz2f9hM&export=download) - [Zip version](https://drive.google.com/uc?id=1MOB6cYB3GtzU88lf4XKqNEJMl2HRYrZd&export=download) - Products CSV with 10000 records
- [products-100000.csv](https://drive.google.com/uc?id=1xkWZDg0qDEsDBDeSg7VSn5YcCLxQTmin&export=download) - [Zip version](https://drive.google.com/uc?id=103kKeLAlkdgn1oysubJPU7vnE0x0x58a&export=download) - Products CSV with 100000 records
- [products-1000000.csv](https://drive.google.com/uc?id=1u5t7wfkWDW4W2TYJDuh1m0pa-7E0_Sr3&export=download) - [Zip version](https://drive.google.com/uc?id=1kAyOE06v069e-i9XA45Y2kHJpNAMqZiJ&export=download) - Products CSV with 1000000 records
- [products-2000000.csv](https://drive.google.com/uc?id=18BLAZDeH74Ll3b4GsMNY3s-YVnNmWblC&export=download) - [Zip version](https://drive.google.com/uc?id=1LU_DT7j5YjTMnNHeI0VSTWMsHveSRpoz&export=download) - Products CSV with 2000000 records

### Products Schema

- Index
- Name
- Description
- Brand
- Category
- Price
- Currency
- Stock
- EAN
- Color
- Size
- Availability
- Internal ID

## Local Set up to generate files

#### Python Environments
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Faker==13
Faker==37
Loading