fork download
  1. import requests
  2.  
  3. def main():
  4. group_id = '-35488145'
  5. r = requests.get('https://a...content-available-to-author-only...k.com/method/wall.get',
  6. params={'owner_id': group_id, 'count': 100, 'offset': 0})
  7.  
  8. print(r.json())
  9.  
  10. if __name__ == '__main__':
  11. main()
  12.  
Runtime error #stdin #stdout #stderr 0.02s 28376KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
Traceback (most recent call last):
  File "./prog.py", line 1, in <module>
ImportError: No module named 'requests'