Upload folder using huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-4.0
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
---
|
| 6 |
+
|
| 7 |
+
# Indian Government Tenders and Awards Dataset
|
| 8 |
+
|
| 9 |
+
A dataset of tenders and awards scraped from the Central Public Procurement Portal (CPPP) of India. Data sourced from https://tender.sarthaksidhant.com/ and then joined and converted to parquet via https://gist.github.com/rhnvrm/8060dedb15ae592dae492ec62f725c0c.
|
| 10 |
+
|
| 11 |
+
## Using the dataset
|
| 12 |
+
|
| 13 |
+
```python
|
| 14 |
+
from datasets import load_dataset
|
| 15 |
+
|
| 16 |
+
data = load_dataset("rumourscape/tenders")
|
| 17 |
+
```
|
| 18 |
+
|
| 19 |
+
## Acknowledgements
|
| 20 |
+
|
| 21 |
+
- [Sarthak Siddhant](https://sarthaksidhant.com/) for scraping and publishing the data.
|
| 22 |
+
- [Rohan Verma](https://github.com/rhnvrm) for creating the data conversion script
|
| 23 |
+
|
| 24 |
+
## License
|
| 25 |
+
|
| 26 |
+
This dataset is licensed under the [Creative Commons Attribution 4.0 International License](https://creativecommons.org/licenses/by/4.0/).
|