Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hendrapaiton/turangga
Get data "inspiriasi nama bayi berdasarkan nama hewan" with scrapy and pandas
https://github.com/hendrapaiton/turangga
Last synced: 6 days ago
JSON representation
Get data "inspiriasi nama bayi berdasarkan nama hewan" with scrapy and pandas
- Host: GitHub
- URL: https://github.com/hendrapaiton/turangga
- Owner: hendrapaiton
- License: mit
- Created: 2022-10-23T01:54:15.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-10-25T15:40:48.000Z (about 2 years ago)
- Last Synced: 2023-03-07T07:56:52.581Z (over 1 year ago)
- Language: Python
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# turangga
Get data "inspiriasi nama bayi berdasarkan nama hewan" with scrapy and pandas### First after clone the project
Make a virtual environment (depending your operating system)
```python
python3 -m virtualenv venv
source ./venv/bin/activate # Linux
source .\venv\Scripts\activate # Windows
```Install scrapy library after get in new environment
```python
pip install scrapy
```Crawl the spider (in this project is nama)
```python
scrapy crawl nama
```To export to json file using -o option
```python
scrapy crawl nama -o json
```Happy Coding!