Metadata-Version: 2.1
Name: pexelsPy
Version: 1.0.1
Summary: Use Pexels API v1 with Python
Home-page: https://github.com/kingsamurai123/pexels-api
Author: Sravan Kumar
Author-email: demonlyf98@protonmail.com
License: UNKNOWN
Description: # PexelsPy
        A Python package form API for pexels website. All the variables in the documentation are included.
        
        # Sample Program
        This is a sample program to run in your terminal irrespective of your Operating system.
        ```python
        from pexelsPy import API
        PEXELS_API = "YOUR-PEXELS-API"
        api = API(PEXELS_API)
        
        #For photos
        api.search_photos('your search',page=no of pages, results_per_page=number)    
        photos = api.get_photos()
        
        #for videos
        api.search_videos('your search',page=no of pages, results_per_page=number)
        videos = api.get_videos()
        
        #To access the details in the variables photos and videos LOOP through the variable
        #for photos
        for data in photos:
        	print(data.[Your-required-data_structure])
        
        #for videos
        for data in videos:
          print(data.[data_structure])
        ```
        
Keywords: pexels api images photos videos python
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
