All Projects → RamblingCookieMonster → Psstackexchange

RamblingCookieMonster / Psstackexchange

Licence: mit
PowerShell module to query Stack Exchange API

Programming Languages

powershell
5483 projects

Projects that are alternatives of or similar to Psstackexchange

soCareers-Data
Data and data processing scripts of StackOverflow Careers pages
Stars: ✭ 18 (-73.13%)
Mutual labels:  stackoverflow
Rebound
Command-line tool that instantly fetches Stack Overflow results when an exception is thrown
Stars: ✭ 3,763 (+5516.42%)
Mutual labels:  stackoverflow
Binexp
Linux Binary Exploitation
Stars: ✭ 742 (+1007.46%)
Mutual labels:  stackoverflow
stackoverflow-slack-bot
Track a tag on StackOverflow and push to Slack
Stars: ✭ 17 (-74.63%)
Mutual labels:  stackoverflow
android-questions
Small projects for asking at Stackoverflow
Stars: ✭ 31 (-53.73%)
Mutual labels:  stackoverflow
Reprex
Render bits of R code for sharing, e.g., on GitHub or StackOverflow.
Stars: ✭ 553 (+725.37%)
Mutual labels:  stackoverflow
2017-year-in-review
Year in Review with R Rmd Template
Stars: ✭ 34 (-49.25%)
Mutual labels:  stackoverflow
Socli
Stack overflow command line client. Search and browse stack overflow without leaving the terminal 💻
Stars: ✭ 911 (+1259.7%)
Mutual labels:  stackoverflow
Stack Overflow Import
Import arbitrary code from Stack Overflow as Python modules.
Stars: ✭ 3,480 (+5094.03%)
Mutual labels:  stackoverflow
So
A terminal interface for Stack Overflow
Stars: ✭ 694 (+935.82%)
Mutual labels:  stackoverflow
stack
An Android app for browsing Stack Overflow and other Stack Exchange sites.
Stars: ✭ 218 (+225.37%)
Mutual labels:  stackoverflow
jobs-stackoverflow
Making it easy to integrate with the Stack Overflow job board API
Stars: ✭ 17 (-74.63%)
Mutual labels:  stackoverflow
Sx.el
Stack Exchange for Emacs
Stars: ✭ 667 (+895.52%)
Mutual labels:  stackoverflow
so-trends
📈 StackOverflow trends
Stars: ✭ 21 (-68.66%)
Mutual labels:  stackoverflow
Custombottomsheetbehavior
Custom BottomSheetBehavior for Android that mimic Google Maps behavior
Stars: ✭ 844 (+1159.7%)
Mutual labels:  stackoverflow
cerebro-stackoverflow
Cerebro plugin to search and show stackoverflow Q&A
Stars: ✭ 14 (-79.1%)
Mutual labels:  stackoverflow
Scoold
A Stack Overflow clone for teams (self-hosted)
Stars: ✭ 463 (+591.04%)
Mutual labels:  stackoverflow
Blog Post Workflow
Show your latest blog posts from any sources or StackOverflow activity or Youtube Videos on your GitHub profile/project readme automatically using the RSS feed
Stars: ✭ 910 (+1258.21%)
Mutual labels:  stackoverflow
Sosl
StackOverflow Search Library
Stars: ✭ 10 (-85.07%)
Mutual labels:  stackoverflow
Stackoverflow Dark
📚 Dark theme for Stack Overflow & most Stack Exchange network sites
Stars: ✭ 671 (+901.49%)
Mutual labels:  stackoverflow

Build status

PSStackExchange

This is a rudimentary PowerShell module for querying the Stack Exchange API, written to illustrate a basic PowerShell module organization and workflow.

This is not fully featured or tested, but pull requests would be welcome!

#Instructions

# One time setup
    # Download the repository
    # Unblock the zip
    # Extract the PSStackExchange folder to a module path (e.g. $env:USERPROFILE\Documents\WindowsPowerShell\Modules\)

    #Simple alternative, if you have PowerShell 5, or the PowerShellGet module:
        Install-Module PSStackExchange

# Import the module.
    Import-Module PSStackExchange    #Alternatively, Import-Module \\Path\To\PSStackExchange

# Get commands in the module
    Get-Command -Module PSStackExchange

# Get help
    Get-Help Get-SEObject -Full
    Get-Help about_PSStackExchange

#Examples

Find Stack Exchange Sites and Urls

# Find Stack Exchange sites and urls
    Get-SEObject -Object Sites |
        Sort -Property api_site_parameter |
        Select -Property api_site_parameter, site_url

Get Sites

Search Stack Exchange Questions

# Search questions on stack overflow, tagged PowerShell, with System.DBNull in the title
    Search-SEQuestion -Title System.DBNull -Tag PowerShell -Site StackOverflow

# Search questions on ServerFault
#     Posted by User with ID 105072
#     With PowerShell in the Title
#     Without the tag windows-server-2008-r2
    Search-SEQuestion -User 105072 `
                      -Site ServerFault `
                      -ExcludeTag 'windows-server-2008-r2' `
                      -Title PowerShell

Search Questions

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].