# dmhy-sdk **Repository Path**: mirrors_Inndy/dmhy-sdk ## Basic Information - **Project Name**: dmhy-sdk - **Description**: a parser for dmhy - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2026-04-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # dmhy ## Desciption a really simple library for dmhy ( http://share.dmhy.org/ ) ## Functions ### search keywords it needs one parameter which can be a string or a list. note that when using string type, all keywords should split by space. return a list contains all topics in first page of searching result. ## Class ### AnimateEntry This class contains fields such `title`, `date`, `url`, `magnet` whch represents an animate search record. ## Installation ``` pip3 install git+https://github.com/azdkj532/dmhy-sdk.git ``` ## Usage ```python import dmhy for record in dmhy.search('shinsekai'): print('%s - %s\n%s' % (record.date, record.title, record.url)) ``` ## Dependency - BeautifulSoup4 - requests