Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
r = requests.get("https://anaconda.org/cf-staging/repo/history?label=all", headers={'Authorization': 'token %s' % token}) | |
from bs4 import BeautifulSoup | |
soup = BeautifulSoup(r.text, 'html.parser') | |
# this is the table | |
tb = soup.find("table", class_="full-width") | |
# this iterates over all of the rows | |
for r in soup.find_all("tr"): | |
print(r) |
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
(base) clarence:Downloads beckermr$ diff -qr gcc_impl_linux-64-7.3.0-hd420e75_5/x86_64-conda_cos6-linux-gnu/sysroot sysroot_linux-64-2.12-0/x86_64-conda-linux-gnu/sysroot | grep "Only in" | |
Only in sysroot_linux-64-2.12-0/x86_64-conda-linux-gnu/sysroot/etc: default | |
Only in sysroot_linux-64-2.12-0/x86_64-conda-linux-gnu/sysroot/etc: gai.conf | |
Only in sysroot_linux-64-2.12-0/x86_64-conda-linux-gnu/sysroot/etc: ld.so.conf | |
Only in sysroot_linux-64-2.12-0/x86_64-conda-linux-gnu/sysroot/etc: nsswitch.conf | |
Only in gcc_impl_linux-64-7.3.0-hd420e75_5/x86_64-conda_cos6-linux-gnu/sysroot/lib: ld-2.12.2.so | |
Only in sysroot_linux-64-2.12-0/x86_64-conda-linux-gnu/sysroot/lib: ld-2.12.so | |
Only in gcc_impl_linux-64-7.3.0-hd420e75_5/x86_64-conda_cos6-linux-gnu/sysroot/lib: libBrokenLocale-2.12.2.so | |
Only in sysroot_linux-64-2.12-0/x86_64-conda-linux-gnu/sysroot/lib: libBrokenLocale-2.12.so | |
Only in gcc_impl_linux-64-7.3.0-hd420e75_5/x86_64-conda_cos6-linux-gnu/sysroot/lib: libanl-2.12.2.so |
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 python | |
from __future__ import print_function | |
import os | |
import subprocess | |
import shutil | |
import uuid | |
import sys | |
MANGLE_STR = 'h' + uuid.uuid4().hex[0:6] |
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
channels: | |
- conda-forge | |
- defaults | |
show_channel_urls: True | |
channel_priority: strict |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.