├── .github └── workflows │ ├── first-github-action.yml │ ├── python-app.yml │ └── share-data.yml ├── LICENSE ├── README.md ├── crawling_yes24.py ├── github_utils.py ├── hello.py ├── main.py └── requirements.txt /.github/workflows/first-github-action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzsza/github-action-with-python/HEAD/.github/workflows/first-github-action.yml -------------------------------------------------------------------------------- /.github/workflows/python-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzsza/github-action-with-python/HEAD/.github/workflows/python-app.yml -------------------------------------------------------------------------------- /.github/workflows/share-data.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzsza/github-action-with-python/HEAD/.github/workflows/share-data.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzsza/github-action-with-python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzsza/github-action-with-python/HEAD/README.md -------------------------------------------------------------------------------- /crawling_yes24.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzsza/github-action-with-python/HEAD/crawling_yes24.py -------------------------------------------------------------------------------- /github_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzsza/github-action-with-python/HEAD/github_utils.py -------------------------------------------------------------------------------- /hello.py: -------------------------------------------------------------------------------- 1 | print("Hello, World!") 2 | -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzsza/github-action-with-python/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | beautifulsoup4==4.7.1 2 | requests==2.22.0 3 | PyGithub==1.51 4 | pytz==2019.1 --------------------------------------------------------------------------------