https://github.com/khadkarajesh/aptoide
Aptoide app crawler using beautifulsoup
https://github.com/khadkarajesh/aptoide
beautifulsoup4 crawler flask python3 web-application
Last synced: about 1 month ago
JSON representation
Aptoide app crawler using beautifulsoup
- Host: GitHub
- URL: https://github.com/khadkarajesh/aptoide
- Owner: khadkarajesh
- Created: 2022-04-07T16:44:35.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-04-09T17:54:56.000Z (about 4 years ago)
- Last Synced: 2025-01-13T10:33:34.660Z (over 1 year ago)
- Topics: beautifulsoup4, crawler, flask, python3, web-application
- Language: Python
- Homepage:
- Size: 19.5 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# aptoide
Aptoide is web application built in flask to crawl information from [aptoide](https://en.aptoide.com/) about android application using beautifulsoup
## Run Application
### Install Dependencies
1. Create a virtual environment with python3
```shell
python3 -m venv venv
```
2. Activate the virtual environment:
```shell
cd venv
source /bin/activate
```
3. Install dependencies
```shell
pip install -r requirements.txt
```
### Prepare Environment Variable
Create `.env` file from `.env_example`
### Run Flask App
```shell
python app.py
```
## Run Tests
```shell
cd aptoide
pytest
```