Metadata-Version: 2.1
Name: dinosource
Version: 0.0.1
Summary: A small package that extracts Dinosaurs data from dinosaurpictures.org
Home-page: https://github.com/thesyamsulzaman/dinosource
Author: Syamsul Zaman
Author-email: thesyamsulzaman@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/pypa/sampleproject/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 2 - Pre-Alpha
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# Dinosource
Python package for getting dinosaurs data

## Usage

```python
import dinosource

# get all dinosaurs
dinosaurs = dinosource.get_dinosaurs()

# for specific period, eg. jurassic | triassic
dinosaurs = dinosource.get_dinosaurs_by_period("jurassic")

```



