https://github.com/bropenguin847/opendosm
Python code for using OpenDOSM api
https://github.com/bropenguin847/opendosm
api openapi python requests
Last synced: about 14 hours ago
JSON representation
Python code for using OpenDOSM api
- Host: GitHub
- URL: https://github.com/bropenguin847/opendosm
- Owner: bropenguin847
- Created: 2025-02-21T10:11:18.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-08-14T05:05:53.000Z (11 months ago)
- Last Synced: 2025-10-24T01:39:58.331Z (9 months ago)
- Topics: api, openapi, python, requests
- Language: Python
- Homepage: https://open.dosm.gov.my
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# openDOSM 📊
OpenDOSM is a platform that collects, shows, and studies all the data from DOSM. Everything here is open-source and totally free for everyone to use for the good of the country.
It includes datasets ranging from Population from each states and annual births to household income by percentile.
---
### Alternative site 🌐
Another site to collect the data is [data.gov.my](https://data.gov.my/). It has the same UI with helpful graphs for visualization of data.
---
### Necessary library ⬇️
Requests is the primary library used in the Python files above. Requests is a HTTP library, written by the legendary [Kenneth Reitz](https://github.com/kennethreitz).
```Python
pip install requests
```
---
#### Data analyze 📈
Pandas can be used to quickly analyze the data, which can be arranged in your format of choice.
```Python
pip install pandas
```