This file contains hidden or 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 os | |
| import discord | |
| from dotenv import load_dotenv | |
| import sys | |
| load_dotenv() | |
| TOKEN = os.getenv('DISCORD_TOKEN') | |
| SERVER_ID = os.getenv('SERVER_ID') | |
| print(SERVER_ID) | |
| client = discord.Client() |
This file contains hidden or 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 requests | |
| d = {} | |
| with open("metabolicpathways.txt") as f: | |
| for line in f: | |
| (key, val) = line.split('\t') | |
| d[key] = val | |
This file contains hidden or 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
| from bs4 import BeautifulSoup | |
| import requests | |
| import urllib | |
| import sys | |
| # python uniprot_ec.py 2.3.1.29 | |
| # | |
| ec=sys.argv[1] | |
| id=[] | |
| url='http://www.uniprot.org' |
This file contains hidden or 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/bash | |
| # | |
| # | |
| #2000-07-11 ftp://ftp.su.se/pub/mirrors/lunar-linux.org/lunar/mirrors/sybase-ase-11_0_3_3-6_i386.rpm | |
| 2000-07-11 ftp://ftp.gtlib.gatech.edu/nv/ao3/lxmirror/sourcemage/grimoire/fallback/fallback/sybase-ase-11_0_3_3-6_i386.rpm | |
| 2000-07-11 ftp://distro.ibiblio.org/sourcemage/grimoire/fallback/fallback/sybase-ase-11_0_3_3-6_i386.rpm | |
| 2000-07-11 ftp://ubuntu.mirror.su.se/pub/mirrors/lunar-linux.org/lunar/mirrors/sybase-ase-11_0_3_3-6_i386.rpm | |
| 2000-07-11 ftp://77.238.36.56/pub/mirrors/lunar-linux.org/lunar/mirrors/sybase-ase-11_0_3_3-6_i386.rpm | |
| 2000-07-11 ftp://ftp.eu.openbsd.org/pub/mirrors/lunar-linux.org/lunar/mirrors/sybase-ase-11_0_3_3-6_i386.rpm |
This file contains hidden or 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/perl | |
| use strict; | |
| package File; | |
| =head1 | |
| Title : new | |
| Usage : my $fileobj=File->new(-file=>"D\\testing.txt") | |
| Function : Creates a File Object | |
| Returns : None |