├── .gitignore ├── LICENSE ├── README.md ├── pyproject.toml ├── requirements.txt └── src └── gempaterkini_chatur ├── __init__.py └── example.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaturap/bmkg-latest-earthquake/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaturap/bmkg-latest-earthquake/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaturap/bmkg-latest-earthquake/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaturap/bmkg-latest-earthquake/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | beautifulsoup4 -------------------------------------------------------------------------------- /src/gempaterkini_chatur/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaturap/bmkg-latest-earthquake/HEAD/src/gempaterkini_chatur/__init__.py -------------------------------------------------------------------------------- /src/gempaterkini_chatur/example.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------