jobsdb-scraper 1.0.3 → 1.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/package.json +2 -1
- package/sample_output.csv +1716 -0
- package/sample_output.ndjson +32 -0
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
<img src="https://raw.githubusercontent.com/krishgalani/jobsdb-scraper/main/assets/jobsdb.png" width="300" alt="JobsDB Logo"><br>
|
|
5
5
|
|
|
6
|
-
](https://www.npmjs.com/package/jobsdb-scraper?activeTab=readme)
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
About this scraper:
|
|
@@ -25,7 +25,7 @@ A few cool highlights:
|
|
|
25
25
|
|
|
26
26
|
- While not strictly required, a residential IP address is highly recommended. Run this from your home for safest guarantees to avoid bot detection. If you must run from outside of home, I recommend using a residential IP proxy.
|
|
27
27
|
|
|
28
|
-
### Option 1: Install globally (
|
|
28
|
+
### Option 1: Install globally (Recommended for most users)
|
|
29
29
|
|
|
30
30
|
```shell script
|
|
31
31
|
|
|
@@ -113,4 +113,4 @@ The client program uses the ulixee framework (github.com/ulixee), where each wor
|
|
|
113
113
|
|
|
114
114
|
## License
|
|
115
115
|
|
|
116
|
-
[PROPRIETARY](
|
|
116
|
+
[PROPRIETARY](LICENSE)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jobsdb-scraper",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"description": "A tool for automatically collecting job information from JobsDB",
|
|
5
5
|
"main": "dist/src/scrape_jobsdb.js",
|
|
6
6
|
"bin": {
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
"dist",
|
|
12
12
|
"README.md",
|
|
13
13
|
"sample_output.ndjson",
|
|
14
|
+
"sample_output.csv",
|
|
14
15
|
"assets",
|
|
15
16
|
"LICENSE"
|
|
16
17
|
],
|