This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' | |
pip install download-stats | |
get your API key from https://pepy.tech | |
''' | |
import os | |
from download_stats import stats | |
os.environ['PEPY_API_KEY'] = 'yOuRkeYHeRE' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
James: | |
Not really in the spirit of respect and community kindness | |
Your post is actually really good | |
And I actually commented this way in another group | |
But .. you didn’t actually cover what was mentioned in my post | |
Abdur-Rahmaan: | |
Oh i mean, your post is like the world is doing it wrong and you are doing it right | |
James: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3.6.2 | |
# -*- coding: utf-8 -*- | |
# run script from command line via python3 keyword_search_github_repositories.py | |
import click | |
import datetime | |
import time | |
from github import Github |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
postfix = ['111', '2', '+', '33', '2', '**', '+', '1', '1', '*', '-'] | |
def is_number(num): | |
# quick way | |
return num[0] in '0123456789' | |
def eval_postfix(postfix): | |
stack = [] | |
for element in postfix: | |
if is_number(element): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tokens = ['111', '+', '2', '+', '(', '33', '**', '2', ')', '-', '1', '*', '1'] | |
# 111 2 + 33 2 ^ + 1 1 * - | |
def is_number(num): | |
# quick way | |
return (num[0] in '0123456789') | |
def to_postfix(tokens): | |
operators = { | |
'**': 3, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def identify_symbols(string): | |
elements = [] | |
num_stack = [] # holds numbers | |
index = 0 | |
while index < len(string): | |
char = string[index] | |
if char in '+-/*()': | |
# Add number to elements | |
if num_stack: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def isbalanced(string): | |
stack = [] | |
for char in string: | |
if char == '(': | |
stack.append(char) | |
elif char == ')': | |
if not stack: # stack empty trying to remove | |
return False | |
else: | |
stack.pop() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# using rich console | |
def ensure_internet(): | |
console = Console() | |
domains = [ | |
'https://google.com', | |
'https://yahoo.com', | |
'https://bing.com', | |
'https://www.ecosia.org', | |
'https://www.wikipedia.org' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import ast | |
import os | |
stats = { | |
'funcs':0, | |
'classes':0, | |
'analysed':0 | |
} | |
base_path = 'C:\\Python37-32\\Lib' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Placed into public domain by | |
anatoly techtonik <[email protected]> | |
Show HTML in GUI window through PyQt4/PySide. | |
[ ] position window at the center of the screen | |
(right now it is middle bottom) | |
[ ] implement lazy loading for PyQt4/PySide | |
""" |
NewerOlder