Quick Start
You can
Installed Libraries
Install via pip:pip install affx
Quick Test Code & Output
import affx
import sys, os
import warnings
warnings.filterwarnings('ignore')
sys.stderr = open(os.devnull, 'w')
affx.key = "sk-yrccT4f0ZIae3cbDItMOH4UInbbdCoxhpA3eNOI7"
affx.model = "free"
affx.ls("site")
example1.com
example2.com
example3.com
- Create a new .py file.
- Copy and paste the Test Code.
- Press F5 or click the green ▷ button to run the program.
- Check if the console output is correct.
[IMPORTANT] Standard Import for AffX Function Calls
Code
import affx
import sys, os
import warnings
warnings.filterwarnings('ignore')
sys.stderr = open(os.devnull, 'w')
affx.key = "Enter Your Key"
affx.model = "free"
For Beginners: Install the Python Interpreter
It is recommended to download Spyder.
Suitable for Windows and Mac systems.
For Beginners: Run a Python program (using Spyder as an example).
- Left: Left: .py Program Code.
- Top Right: Help, Variable Display, etc.
- Bottom Right: Console, displaying program output.