Skip to content

Commit b52797c

Browse files
updated the code with new fix
1 parent 58a6e5e commit b52797c

14 files changed

+1186
-40
lines changed

README.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -31,42 +31,42 @@ pydatascraper is a Python application that provides web scraping capabilities, i
3131

3232
2. Install the package directly:
3333

34-
```bash
34+
```
3535
36-
pip install pydatascraper
36+
pip install pydatascraper
3737
3838
```
3939
3. import the webscraper model:
4040

41-
```bash
42-
from pydatascraper.models import main
41+
```
42+
from pydatascraper.pyscraper import main
4343
```
4444
4. Run the application:
45-
```bash
46-
main()
45+
```
46+
main()
4747
```
4848

4949
The GUI will appear, allowing you to choose different services and perform web scraping tasks.
5050

51-
Services
51+
#### Services
5252
Web Scraping
5353

5454
Enter a URL and click "Search" to explore available data types.
5555

5656
Choose the desired data type, enter a file name, and click "Download" to save the data.
5757

58-
Google Reviews
58+
#### Google Reviews
5959
Select "Google reviews" from the services dropdown.
6060

6161
Enter the business or location name and address.
6262
Provide a file name and click "Download" to fetch and save Google reviews.
6363

64-
Yelp Reviews
64+
#### Yelp Reviews
6565
Select "Yelp reviews" from the services dropdown.
6666
Enter the business name and address.
6767
Provide a file name and click "Download" to fetch and save Yelp reviews.
6868

69-
OpenStreetMap
69+
#### OpenStreetMap
7070
Select "Open Street Map" from the services dropdown.
7171
Enter the map URL, provide a file name, and click "Download" to extract map data.
7272

build/lib/pydatascraper/init.py

Whitespace-only changes.
File renamed without changes.
-3.18 KB
Binary file not shown.

dist/pydatascraper-1.0.3.tar.gz

-2.99 KB
Binary file not shown.
12.7 KB
Binary file not shown.

dist/pydatascraper-1.0.4.tar.gz

13.5 KB
Binary file not shown.

pydatascraper.egg-info/PKG-INFO

+11-11
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Metadata-Version: 2.1
22
Name: pydatascraper
3-
Version: 1.0.3
3+
Version: 1.0.4
44
Summary: A Python application that provides web scraping capabilities, including fetching Google and Yelp reviews.
55
Home-page: https://github.com/arjunlimat/pydatascraper
66
Author: Tamilselvan_Arjunan
@@ -49,42 +49,42 @@ pydatascraper is a Python application that provides web scraping capabilities, i
4949

5050
2. Install the package directly:
5151

52-
```bash
52+
```
5353

54-
pip install pydatascraper
54+
pip install pydatascraper
5555

5656
```
5757
3. import the webscraper model:
5858

59-
```bash
60-
from pydatascraper.models import main
59+
```
60+
from pydatascraper.pyscraper import main
6161
```
6262
4. Run the application:
63-
```bash
64-
main()
63+
```
64+
main()
6565
```
6666

6767
The GUI will appear, allowing you to choose different services and perform web scraping tasks.
6868

69-
Services
69+
#### Services
7070
Web Scraping
7171

7272
Enter a URL and click "Search" to explore available data types.
7373

7474
Choose the desired data type, enter a file name, and click "Download" to save the data.
7575

76-
Google Reviews
76+
#### Google Reviews
7777
Select "Google reviews" from the services dropdown.
7878

7979
Enter the business or location name and address.
8080
Provide a file name and click "Download" to fetch and save Google reviews.
8181

82-
Yelp Reviews
82+
#### Yelp Reviews
8383
Select "Yelp reviews" from the services dropdown.
8484
Enter the business name and address.
8585
Provide a file name and click "Download" to fetch and save Yelp reviews.
8686

87-
OpenStreetMap
87+
#### OpenStreetMap
8888
Select "Open Street Map" from the services dropdown.
8989
Enter the map URL, provide a file name, and click "Download" to extract map data.
9090

pydatascraper.egg-info/SOURCES.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
LICENSE
22
README.md
33
setup.py
4+
pydatascraper/init.py
5+
pydatascraper/pyscraper.py
46
pydatascraper.egg-info/PKG-INFO
57
pydatascraper.egg-info/SOURCES.txt
68
pydatascraper.egg-info/dependency_links.txt
7-
pydatascraper.egg-info/entry_points.txt
89
pydatascraper.egg-info/requires.txt
910
pydatascraper.egg-info/top_level.txt

pydatascraper.egg-info/entry_points.txt

-2
This file was deleted.

pydatascraper.egg-info/top_level.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1+
pydatascraper
-27.1 KB
Binary file not shown.

0 commit comments

Comments
 (0)