Skip to content
View kozmonaut's full-sized avatar

Block or report kozmonaut

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. pingu-track pingu-track Public

    Light Linux monitoring dashboard.

    JavaScript 7 1

  2. Extract links from "beautiful soup" Extract links from "beautiful soup"
    1
    from bs4 import BeautifulSoup
    2
    import csv
    3
    import re
    4
    import requests
    5
    
                  
  3. Parse RSS feed and store it to file Parse RSS feed and store it to file
    1
    from urllib import urlopen
    2
    from xml.etree.ElementTree import parse
    3
    
                  
    4
    rss_url = urlopen('http://www.dropsql.com/feed')
    5
    xml = parse(rss_url)
  4. Use OpenWeatherMap API with Python Use OpenWeatherMap API with Python
    1
    import urllib
    2
    import json
    3
    
                  
    4
    # Define url you wanna fetch
    5
    url = "http://api.openweathermap.org/data/2.5/find?q=London&units=metric"
  5. django-blog-unchained django-blog-unchained Public

    Blog CMS built with Django 1.6.

    JavaScript

  6. docker-nodejs docker-nodejs Public

    Simple example of using nodejs with docker

    Dockerfile