All Projects → Krisseck → Detect Cms

Krisseck / Detect Cms

Licence: mit
PHP Library for detecting CMS

Projects that are alternatives of or similar to Detect Cms

top-github-scraper
Scape top GitHub repositories and users based on keywords
Stars: ✭ 40 (-48.72%)
Mutual labels:  scraping, web-scraper, web-scraping
Scrapple
A framework for creating semi-automatic web content extractors
Stars: ✭ 464 (+494.87%)
Mutual labels:  scraping, web-scraping, web-scraper
Phpscraper
PHP Scraper - an highly opinionated web-interface for PHP
Stars: ✭ 148 (+89.74%)
Mutual labels:  scraping, web-scraping, web-scraper
Scrape Linkedin Selenium
`scrape_linkedin` is a python package that allows you to scrape personal LinkedIn profiles & company pages - turning the data into structured json.
Stars: ✭ 239 (+206.41%)
Mutual labels:  scraping, web-scraping, web-scraper
raspagem-de-dados-fatec
📓 Minicurso de raspagem de dados web com Python ministrado na Semana de Tecnologia da FATEC Jundiaí
Stars: ✭ 22 (-71.79%)
Mutual labels:  scraping, web-scraping
papercut
Papercut is a scraping/crawling library for Node.js built on top of JSDOM. It provides basic selector features together with features like Page Caching and Geosearch.
Stars: ✭ 15 (-80.77%)
Mutual labels:  scraping, web-scraping
Apify Js
Apify SDK — The scalable web scraping and crawling library for JavaScript/Node.js. Enables development of data extraction and web automation jobs (not only) with headless Chrome and Puppeteer.
Stars: ✭ 3,154 (+3943.59%)
Mutual labels:  scraping, web-scraping
Gopa
[WIP] GOPA, a spider written in Golang, for Elasticsearch. DEMO: http://index.elasticsearch.cn
Stars: ✭ 277 (+255.13%)
Mutual labels:  scraping, web-scraping
Basketball reference web scraper
NBA Stats API via Basketball Reference
Stars: ✭ 279 (+257.69%)
Mutual labels:  web-scraping, web-scraper
Autoscraper
A Smart, Automatic, Fast and Lightweight Web Scraper for Python
Stars: ✭ 4,077 (+5126.92%)
Mutual labels:  scraping, web-scraping
Arachnid
Powerful web scraping framework for Crystal
Stars: ✭ 68 (-12.82%)
Mutual labels:  web-scraping, web-scraper
Spidr
A versatile Ruby web spidering library that can spider a site, multiple domains, certain links or infinitely. Spidr is designed to be fast and easy to use.
Stars: ✭ 656 (+741.03%)
Mutual labels:  web-scraping, web-scraper
Cascadia
Go cascadia package command line CSS selector
Stars: ✭ 67 (-14.1%)
Mutual labels:  web-scraping, web-scraper
OLX Scraper
📻 An OLX Scraper using Scrapy + MongoDB. It Scrapes recent ads posted regarding requested product and dumps to NOSQL MONGODB.
Stars: ✭ 15 (-80.77%)
Mutual labels:  web-scraper, web-scraping
Php Curl Class
PHP Curl Class makes it easy to send HTTP requests and integrate with web APIs
Stars: ✭ 2,903 (+3621.79%)
Mutual labels:  web-scraping, web-scraper
browser-pool
A Node.js library to easily manage and rotate a pool of web browsers, using any of the popular browser automation libraries like Puppeteer, Playwright, or SecretAgent.
Stars: ✭ 71 (-8.97%)
Mutual labels:  scraping, web-scraping
Linkedin-Client
Web scraper for grabing data from Linkedin profiles or company pages (personal project)
Stars: ✭ 42 (-46.15%)
Mutual labels:  web-scraper, web-scraping
Scrapy Craigslist
Web Scraping Craigslist's Engineering Jobs in NY with Scrapy
Stars: ✭ 54 (-30.77%)
Mutual labels:  web-scraping, web-scraper
ioweb
Web Scraping Framework
Stars: ✭ 31 (-60.26%)
Mutual labels:  scraping, web-scraping
selectorlib
A library to read a YML file with Xpath or CSS Selectors and extract data from HTML pages using them
Stars: ✭ 53 (-32.05%)
Mutual labels:  scraping, web-scraping

Detect-CMS

PHP Library for detecting CMS

Install

composer require krisseck/detect-cms:dev-master

How to use:

include(__DIR__ . "/vendor/autoload.php");
$domain = "http://google.com";
$cms = new \DetectCMS\DetectCMS($domain);
if($cms->getResult()) {
    echo "Detected CMS: ".$cms->getResult();
} else {
    echo "CMS couldn't be detected";
} 
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].