Advertisement
xosski

Pastebin.py

Mar 6th, 2025
18
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 26.99 KB | None | 0 0
  1. #!/usr/bin/env python
  2.  
  3. #############################################################################
  4. # Pastebin.py - Python 3.2 Pastebin API.
  5. # Copyright (C) 2012 Ian Havelock
  6. #
  7. # This program is free software: you can redistribute it and/or modify
  8. # it under the terms of the GNU General Public License as published by
  9. # the Free Software Foundation, either version 3 of the License, or
  10. # (at your option) any later version.
  11. #
  12. # This program is distributed in the hope that it will be useful,
  13. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. # GNU General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU General Public License
  18. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  19. #
  20.  
  21. #############################################################################
  22.  
  23. # This software is a derivative work of:
  24. # http://winappdbg.sourceforge.net/blog/pastebin.py
  25.  
  26. #############################################################################
  27.  
  28.  
  29. __ALL__ = ['delete_paste', 'user_details', 'trending', 'pastes_by_user',
  30. 'generate_user_key', 'paste', 'Pastebin', 'PastebinError',
  31. 'PostLimitError']
  32.  
  33. import urllib
  34.  
  35.  
  36. class PastebinError(RuntimeError):
  37. """Pastebin API error.
  38.  
  39. The error message returned by the web application is stored as the Python
  40. exception message."""
  41.  
  42.  
  43. class PostLimitError(PastebinError):
  44. """The user reached the limit of posts that can do in a day.
  45. For more information look at: http://pastebin.com/faq#11a
  46. """
  47.  
  48.  
  49. class PastebinAPI(object):
  50. """Pastebin API interaction object.
  51.  
  52. Public functions:
  53.  
  54. paste -- Pastes a user-specified file or string using the new API-key POST
  55. method.
  56.  
  57. legacy_paste -- Pastes a user-specified file or string using the old
  58. anonymous POST method.
  59.  
  60. generate_user_key -- Generates a session-key that is required for other
  61. functions.
  62.  
  63. pastes_by_user -- Returns all public pastes submitted by the specified
  64. login credentials.
  65.  
  66. trending -- Returns the top trending paste.
  67.  
  68. user_details -- Returns details about the user for the specified API user
  69. key.
  70.  
  71. delete_paste -- Adds two numbers together and returns the result."""
  72.  
  73. # String to determine bad API requests
  74. _bad_request = 'Bad API request'
  75.  
  76. # String to determine if we reached the max post limit per day
  77. _post_limit = 'Post limit, maximum pastes per 24h reached'
  78.  
  79. # Base domain name
  80. _base_domain = 'pastebin.com'
  81.  
  82. # Valid Pastebin URLs begin with this string (kinda obvious)
  83. _prefix_url = 'http://%s/' % _base_domain
  84.  
  85. # Valid Pastebin URLs with a custom subdomain begin with this string
  86. _subdomain_url = 'http://%%s.%s/' % _base_domain
  87.  
  88. # URL to the LEGACY POST API
  89. _legacy_api_url = 'http://%s/api_public.php' % _base_domain
  90.  
  91. # URL to the POST API
  92. _api_url = 'http://%s/api/api_post.php' % _base_domain
  93.  
  94. # URL to the login POST API
  95. _api_login_url = 'http://%s/api/api_login.php' % _base_domain
  96.  
  97. # Valid paste_expire_date values: Never, 10 minutes, 1 Hour, 1 Day, 1 Month
  98. paste_expire_date = ('N', '10M', '1H', '1D', '1M')
  99.  
  100. # Valid paste_expire_date values (0 = public, 1 = unlisted, 2 = private)
  101. paste_private = ('public', 'unlisted', 'private')
  102.  
  103. # Valid parse_format values
  104. paste_format = (
  105. '4cs', # 4CS
  106. '6502acme', # 6502 ACME Cross Assembler
  107. '6502kickass', # 6502 Kick Assembler
  108. '6502tasm', # 6502 TASM/64TASS
  109. 'abap', # ABAP
  110. 'actionscript', # ActionScript
  111. 'actionscript3', # ActionScript 3
  112. 'ada', # Ada
  113. 'algol68', # ALGOL 68
  114. 'apache', # Apache Log
  115. 'applescript', # AppleScript
  116. 'apt_sources', # APT Sources
  117. 'asm', # ASM (NASM)
  118. 'asp', # ASP
  119. 'autoconf', # autoconf
  120. 'autohotkey', # Autohotkey
  121. 'autoit', # AutoIt
  122. 'avisynth', # Avisynth
  123. 'awk', # Awk
  124. 'bascomavr', # BASCOM AVR
  125. 'bash', # Bash
  126. 'basic4gl', # Basic4GL
  127. 'bibtex', # BibTeX
  128. 'blitzbasic', # Blitz Basic
  129. 'bnf', # BNF
  130. 'boo', # BOO
  131. 'bf', # BrainFuck
  132. 'c', # C
  133. 'c_mac', # C for Macs
  134. 'cil', # C Intermediate Language
  135. 'csharp', # C#
  136. 'cpp', # C++
  137. 'cpp-qt', # C++ (with QT extensions)
  138. 'c_loadrunner', # C: Loadrunner
  139. 'caddcl', # CAD DCL
  140. 'cadlisp', # CAD Lisp
  141. 'cfdg', # CFDG
  142. 'chaiscript', # ChaiScript
  143. 'clojure', # Clojure
  144. 'klonec', # Clone C
  145. 'klonecpp', # Clone C++
  146. 'cmake', # CMake
  147. 'cobol', # COBOL
  148. 'coffeescript', # CoffeeScript
  149. 'cfm', # ColdFusion
  150. 'css', # CSS
  151. 'cuesheet', # Cuesheet
  152. 'd', # D
  153. 'dcs', # DCS
  154. 'delphi', # Delphi
  155. 'oxygene', # Delphi Prism (Oxygene)
  156. 'diff', # Diff
  157. 'div', # DIV
  158. 'dos', # DOS
  159. 'dot', # DOT
  160. 'e', # E
  161. 'ecmascript', # ECMAScript
  162. 'eiffel', # Eiffel
  163. 'email', # Email
  164. 'epc', # EPC
  165. 'erlang', # Erlang
  166. 'fsharp', # F#
  167. 'falcon', # Falcon
  168. 'fo', # FO Language
  169. 'f1', # Formula One
  170. 'fortran', # Fortran
  171. 'freebasic', # FreeBasic
  172. 'freeswitch', # FreeSWITCH
  173. 'gambas', # GAMBAS
  174. 'gml', # Game Maker
  175. 'gdb', # GDB
  176. 'genero', # Genero
  177. 'genie', # Genie
  178. 'gettext', # GetText
  179. 'go', # Go
  180. 'groovy', # Groovy
  181. 'gwbasic', # GwBasic
  182. 'haskell', # Haskell
  183. 'hicest', # HicEst
  184. 'hq9plus', # HQ9 Plus
  185. 'html4strict', # HTML
  186. 'html5', # HTML 5
  187. 'icon', # Icon
  188. 'idl', # IDL
  189. 'ini', # INI file
  190. 'inno', # Inno Script
  191. 'intercal', # INTERCAL
  192. 'io', # IO
  193. 'j', # J
  194. 'java', # Java
  195. 'java5', # Java 5
  196. 'javascript', # JavaScript
  197. 'jquery', # jQuery
  198. 'kixtart', # KiXtart
  199. 'latex', # Latex
  200. 'lb', # Liberty BASIC
  201. 'lsl2', # Linden Scripting
  202. 'lisp', # Lisp
  203. 'llvm', # LLVM
  204. 'locobasic', # Loco Basic
  205. 'logtalk', # Logtalk
  206. 'lolcode', # LOL Code
  207. 'lotusformulas', # Lotus Formulas
  208. 'lotusscript', # Lotus Script
  209. 'lscript', # LScript
  210. 'lua', # Lua
  211. 'm68k', # M68000 Assembler
  212. 'magiksf', # MagikSF
  213. 'make', # Make
  214. 'mapbasic', # MapBasic
  215. 'matlab', # MatLab
  216. 'mirc', # mIRC
  217. 'mmix', # MIX Assembler
  218. 'modula2', # Modula 2
  219. 'modula3', # Modula 3
  220. '68000devpac', # Motorola 68000 HiSoft Dev
  221. 'mpasm', # MPASM
  222. 'mxml', # MXML
  223. 'mysql', # MySQL
  224. 'newlisp', # newLISP
  225. 'text', # None
  226. 'nsis', # NullSoft Installer
  227. 'oberon2', # Oberon 2
  228. 'objeck', # Objeck Programming Langua
  229. 'objc', # Objective C
  230. 'ocaml-brief', # OCalm Brief
  231. 'ocaml', # OCaml
  232. 'pf', # OpenBSD PACKET FILTER
  233. 'glsl', # OpenGL Shading
  234. 'oobas', # Openoffice BASIC
  235. 'oracle11', # Oracle 11
  236. 'oracle8', # Oracle 8
  237. 'oz', # Oz
  238. 'pascal', # Pascal
  239. 'pawn', # PAWN
  240. 'pcre', # PCRE
  241. 'per', # Per
  242. 'perl', # Perl
  243. 'perl6', # Perl 6
  244. 'php', # PHP
  245. 'php-brief', # PHP Brief
  246. 'pic16', # Pic 16
  247. 'pike', # Pike
  248. 'pixelbender', # Pixel Bender
  249. 'plsql', # PL/SQL
  250. 'postgresql', # PostgreSQL
  251. 'povray', # POV-Ray
  252. 'powershell', # Power Shell
  253. 'powerbuilder', # PowerBuilder
  254. 'proftpd', # ProFTPd
  255. 'progress', # Progress
  256. 'prolog', # Prolog
  257. 'properties', # Properties
  258. 'providex', # ProvideX
  259. 'purebasic', # PureBasic
  260. 'pycon', # PyCon
  261. 'python', # Python
  262. 'q', # q/kdb+
  263. 'qbasic', # QBasic
  264. 'rsplus', # R
  265. 'rails', # Rails
  266. 'rebol', # REBOL
  267. 'reg', # REG
  268. 'robots', # Robots
  269. 'rpmspec', # RPM Spec
  270. 'ruby', # Ruby
  271. 'gnuplot', # Ruby Gnuplot
  272. 'sas', # SAS
  273. 'scala', # Scala
  274. 'scheme', # Scheme
  275. 'scilab', # Scilab
  276. 'sdlbasic', # SdlBasic
  277. 'smalltalk', # Smalltalk
  278. 'smarty', # Smarty
  279. 'sql', # SQL
  280. 'systemverilog', # SystemVerilog
  281. 'tsql', # T-SQL
  282. 'tcl', # TCL
  283. 'teraterm', # Tera Term
  284. 'thinbasic', # thinBasic
  285. 'typoscript', # TypoScript
  286. 'unicon', # Unicon
  287. 'uscript', # UnrealScript
  288. 'vala', # Vala
  289. 'vbnet', # VB.NET
  290. 'verilog', # VeriLog
  291. 'vhdl', # VHDL
  292. 'vim', # VIM
  293. 'visualprolog', # Visual Pro Log
  294. 'vb', # VisualBasic
  295. 'visualfoxpro', # VisualFoxPro
  296. 'whitespace', # WhiteSpace
  297. 'whois', # WHOIS
  298. 'winbatch', # Winbatch
  299. 'xbasic', # XBasic
  300. 'xml', # XML
  301. 'xorg_conf', # Xorg Config
  302. 'xpp', # XPP
  303. 'yaml', # YAML
  304. 'z80', # Z80 Assembler
  305. 'zxbasic', # ZXBasic
  306. )
  307.  
  308. def __init__(self):
  309. pass
  310.  
  311. def delete_paste(self, api_dev_key, api_user_key, api_paste_key):
  312. """Delete the paste specified by the api_paste_key.
  313.  
  314. Usage Example::
  315. from pastebin import PastebinAPI
  316. x = PastebinAPI()
  317. paste_to_delete = x.delete_paste(
  318. '453a994e0e2f1efae07f8759e59e075b',
  319. 'c57a18e6c0ae228cd4bd16fe36da381a',
  320. 'WkgcTFtv')
  321. print paste_to_delete
  322. Paste Removed
  323.  
  324.  
  325. @type api_dev_key: string
  326. @param api_dev_key: The API Developer Key of a registered
  327. U{http://pastebin.com} account.
  328.  
  329. @type api_user_key: string
  330. @param api_user_key: The API User Key of a U{http://pastebin.com}
  331. registered user.
  332.  
  333. @type api_paste_key: string
  334. @param api_paste_key: The Paste Key of the paste to be deleted
  335. (string after final / in
  336. U{http://pastebin.com} URL).
  337.  
  338. @rtype: string
  339. @returns: A successful deletion returns 'Paste Removed'.
  340. """
  341.  
  342. # Valid api developer key
  343. argv = {'api_dev_key': str(api_dev_key)}
  344.  
  345. # Requires pre-registered account
  346. if api_user_key is not None:
  347. argv['api_user_key'] = str(api_user_key)
  348.  
  349. # Key of the paste to be deleted.
  350. if api_paste_key is not None:
  351. argv['api_paste_key'] = str(api_paste_key)
  352.  
  353. # Valid API option - 'user_details' in this instance
  354. argv['api_option'] = str('delete')
  355.  
  356. # lets try to read the URL that we've just built.
  357. request_string = urllib.urlopen(self._api_url, urllib.urlencode(argv))
  358. response = request_string.read()
  359.  
  360. return response
  361.  
  362. def user_details(self, api_dev_key, api_user_key):
  363. """Return user details of the user specified by the api_user_key.
  364.  
  365.  
  366. Usage Example::
  367. from pastebin import PastebinAPI
  368. x = PastebinAPI()
  369. details = x.user_details(
  370. '453a994e0e2f1efae07f8759e59e075b',
  371. 'c57a18e6c0ae228cd4bd16fe36da381a')
  372. print details
  373. <user>
  374. <user_name>MonkeyPuzzle</user_name>
  375. <user_format_short>python</user_format_short>
  376. <user_expiration>N</user_expiration>
  377. <user_avatar_url>http://pastebin.com/i/guest.gif</user_avatar_url>
  378. <user_private>0</user_private>
  379. <user_website></user_website>
  380. <user_email>[email protected]</user_email>
  381. <user_location></user_location>
  382. <user_account_type>0</user_account_type>
  383. </user>
  384.  
  385.  
  386. @type api_dev_key: string
  387. @param api_dev_key: The API Developer Key of a registered
  388. U{http://pastebin.com} account.
  389.  
  390. @type api_user_key: string
  391. @param api_user_key: The API User Key of a U{http://pastebin.com}
  392. registered user.
  393.  
  394. @rtype: string
  395. @returns: Returns an XML string containing user information.
  396. """
  397.  
  398. # Valid api developer key
  399. argv = {'api_dev_key': str(api_dev_key)}
  400.  
  401. # Requires pre-registered account to generate an api_user_key
  402. # (see generate_user_key)
  403. if api_user_key is not None:
  404. argv['api_user_key'] = str(api_user_key)
  405.  
  406. # Valid API option - 'user_details' in this instance
  407. argv['api_option'] = str('userdetails')
  408.  
  409. # lets try to read the URL that we've just built.
  410. request_string = urllib.urlopen(self._api_url, urllib.urlencode(argv))
  411. response = request_string.read()
  412.  
  413. # do some basic error checking here so we can gracefully handle any
  414. # errors we are likely to encounter
  415. if response.startswith(self._bad_request):
  416. raise PastebinError(response)
  417.  
  418. elif not response.startswith('<user>'):
  419. raise PastebinError(response)
  420.  
  421. return response
  422.  
  423. def trending(self, api_dev_key):
  424. """Returns the top trending paste details.
  425.  
  426.  
  427. Usage Example::
  428. from pastebin import PastebinAPI
  429. x = PastebinAPI()
  430. details = x.trending('453a994e0e2f1efae07f8759e59e075b')
  431. print details
  432. <paste>
  433. <paste_key>jjMRFDH6</paste_key>
  434. <paste_date>1333230838</paste_date>
  435. <paste_title></paste_title>
  436. <paste_size>6416</paste_size>
  437. <paste_expire_date>0</paste_expire_date>
  438. <paste_private>0</paste_private>
  439. <paste_format_long>None</paste_format_long>
  440. <paste_format_short>text</paste_format_short>
  441. <paste_url>http://pastebin.com/jjMRFDH6</paste_url>
  442. <paste_hits>6384</paste_hits>
  443. </paste>
  444.  
  445. Note: Returns multiple trending pastes, not just 1.
  446.  
  447.  
  448. @type api_dev_key: string
  449. @param api_dev_key: The API Developer Key of a registered
  450. U{http://pastebin.com} account.
  451.  
  452.  
  453. @rtype: string
  454. @return: Returns the string (XML formatted) containing the top
  455. trending pastes.
  456. """
  457.  
  458. # Valid api developer key
  459. argv = {'api_dev_key': str(api_dev_key), 'api_option': str('trends')}
  460.  
  461. # Valid API option - 'trends' is returns trending pastes
  462.  
  463. # lets try to read the URL that we've just built.
  464. request_string = urllib.urlopen(self._api_url, urllib.urlencode(argv))
  465. response = request_string.read()
  466.  
  467. # do some basic error checking here so we can gracefully handle any
  468. # errors we are likely to encounter
  469. if response.startswith(self._bad_request):
  470. raise PastebinError(response)
  471.  
  472. elif not response.startswith('<paste>'):
  473. raise PastebinError(response)
  474.  
  475. return response
  476.  
  477. def pastes_by_user(self, api_dev_key, api_user_key, results_limit=None):
  478. """Returns all pastes for the provided api_user_key.
  479.  
  480.  
  481. Usage Example::
  482. from pastebin import PastebinAPI
  483. x = PastebinAPI()
  484. details = x.user_details('453a994e0e2f1efae07f8759e59e075b',
  485. 'c57a18e6c0ae228cd4bd16fe36da381a',
  486. 100)
  487. print details
  488. <paste>
  489. <paste_key>DLiSspYT</paste_key>
  490. <paste_date>1332714730</paste_date>
  491. <paste_title>Pastebin.py -
  492. Python 3.2 Pastebin.com API</paste_title>
  493. <paste_size>25300</paste_size>
  494. <paste_expire_date>0</paste_expire_date>
  495. <paste_private>0</paste_private>
  496. <paste_format_long>Python</paste_format_long>
  497. <paste_format_short>python</paste_format_short>
  498. <paste_url>http://pastebin.com/DLiSspYT</paste_url>
  499. <paste_hits>70</paste_hits>
  500. </paste>
  501.  
  502. Note: Returns multiple pastes, not just 1.
  503.  
  504.  
  505. @type api_dev_key: string
  506. @param api_dev_key: The API Developer Key of a registered
  507. U{http://pastebin.com} account.
  508.  
  509. @type api_user_key: string
  510. @param api_user_key: The API User Key of a U{http://pastebin.com}
  511. registered user.
  512.  
  513. @type results_limit: number
  514. @param results_limit: The number of pastes to return between 1 - 1000.
  515.  
  516. @rtype: string
  517. @returns: Returns an XML string containing number of specified pastes
  518. by user.
  519. """
  520.  
  521. # Valid api developer key
  522. argv = {'api_dev_key': str(api_dev_key)}
  523.  
  524. # Requires pre-registered account
  525. if api_user_key is not None:
  526. argv['api_user_key'] = str(api_user_key)
  527.  
  528. # Number of results to return - between 1 & 1000, default = 50
  529. if results_limit is None:
  530. argv['api_results_limit'] = 50
  531.  
  532. if results_limit is not None:
  533. if results_limit < 1:
  534. argv['api_results_limit'] = 50
  535. elif results_limit > 1000:
  536. argv['api_results_limit'] = 1000
  537. else:
  538. argv['api_results_limit'] = int(results_limit)
  539.  
  540. # Valid API option - 'paste' is default for new paste
  541. argv['api_option'] = str('list')
  542.  
  543. # lets try to read the URL that we've just built.
  544. request_string = urllib.urlopen(self._api_url, urllib.urlencode(argv))
  545. response = request_string.read()
  546.  
  547. # do some basic error checking here so we can gracefully handle any
  548. # errors we are likely to encounter
  549. if response.startswith(self._bad_request):
  550. raise PastebinError(response)
  551.  
  552. elif not response.startswith('<paste>'):
  553. raise PastebinError(response)
  554.  
  555. return response
  556.  
  557. def generate_user_key(self, api_dev_key, username, password):
  558. """Generate a user session key - needed for other functions.
  559.  
  560.  
  561. Usage Example::
  562. from pastebin import PastebinAPI
  563. x = PastebinAPI()
  564. my_key = x.generate_user_key(
  565. '453a994e0e2f1efae07f8759e59e075b',
  566. 'MonkeyPuzzle',
  567. '12345678')
  568. print my_key
  569. c57a18e6c0ae228cd4bd16fe36da381a
  570.  
  571.  
  572. @type api_dev_key: string
  573. @param api_dev_key: The API Developer Key of a registered
  574. U{http://pastebin.com} account.
  575.  
  576. @type username: string
  577. @param username: The username of a registered U{http://pastebin.com}
  578. account.
  579.  
  580. @type password: string
  581. @param password: The password of a registered U{http://pastebin.com}
  582. account.
  583.  
  584. @rtype: string
  585. @returns: Session key (api_user_key) to allow authenticated
  586. interaction to the API.
  587.  
  588. """
  589. # Valid api developer key
  590. argv = {'api_dev_key': str(api_dev_key)}
  591.  
  592. # Requires pre-registered pastebin account
  593. if username is not None:
  594. argv['api_user_name'] = str(username)
  595.  
  596. # Requires pre-registered pastebin account
  597. if password is not None:
  598. argv['api_user_password'] = str(password)
  599.  
  600. # lets try to read the URL that we've just built.
  601. data = urllib.urlencode(argv)
  602. request_string = urllib.urlopen(self._api_login_url, data)
  603. response = request_string.read()
  604.  
  605. # do some basic error checking here so we can gracefully handle
  606. # any errors we are likely to encounter
  607. if response.startswith(self._bad_request):
  608. raise PastebinError(response)
  609.  
  610. return response
  611.  
  612. def paste(self, api_dev_key, api_paste_code,
  613. api_user_key=None, paste_name=None, paste_format=None,
  614. paste_private=None, paste_expire_date=None):
  615. """Submit a code snippet to Pastebin using the new API.
  616.  
  617.  
  618. Usage Example::
  619. from pastebin import PastebinAPI
  620. x = PastebinAPI()
  621. url = x.paste(
  622. '453a994e0e2f1efae07f8759e59e075b' ,
  623. 'Snippet of code to paste goes here',
  624. paste_name = 'title of paste',
  625. api_user_key = 'c57a18e6c0ae228cd4bd16fe36da381a',
  626. paste_format = 'python',
  627. paste_private = 'unlisted',
  628. paste_expire_date = '10M')
  629. print url
  630. http://pastebin.com/tawPUgqY
  631.  
  632.  
  633. @type api_dev_key: string
  634. @param api_dev_key: The API Developer Key of a registered
  635. U{http://pastebin.com} account.
  636.  
  637. @type api_paste_code: string
  638. @param api_paste_code: The file or string to paste to body of the
  639. U{http://pastebin.com} paste.
  640.  
  641. @type api_user_key: string
  642. @param api_user_key: The API User Key of a U{http://pastebin.com}
  643. registered user.
  644. If none specified, paste is made as a guest.
  645.  
  646. @type paste_name: string
  647. @param paste_name: (Optional) Title of the paste.
  648. Default is to paste anonymously.
  649.  
  650. @type paste_format: string
  651. @param paste_format: (Optional) Programming language of the code being
  652. pasted. This enables syntax highlighting when reading the code in
  653. U{http://pastebin.com}. Default is no syntax highlighting (text is
  654. just text and not source code).
  655.  
  656. @type paste_private: string
  657. @param paste_private: (Optional) C{'public'} if the paste is public
  658. (visible by everyone), C{'unlisted'} if it's public but not
  659. searchable. C{'private'} if the paste is private and not
  660. searchable or indexed.
  661. The Pastebin FAQ (U{http://pastebin.com/faq}) claims
  662. private pastes are not indexed by search engines (aka Google).
  663.  
  664. @type paste_expire_date: str
  665. @param paste_expire_date: (Optional) Expiration date for the paste.
  666. Once past this date the paste is deleted automatically. Valid
  667. values are found in the L{PastebinAPI.paste_expire_date} class
  668. member.
  669. If not provided, the paste never expires.
  670.  
  671. @rtype: string
  672. @return: Returns the URL to the newly created paste.
  673. """
  674.  
  675. # Valid api developer key
  676. argv = {'api_dev_key': str(api_dev_key)}
  677.  
  678. # Code snippet to submit
  679. if api_paste_code is not None:
  680. argv['api_paste_code'] = str(api_paste_code)
  681.  
  682. # Valid API option - 'paste' is default for new paste
  683. argv['api_option'] = str('paste')
  684.  
  685. # API User Key
  686. if api_user_key is not None:
  687. argv['api_user_key'] = str(api_user_key)
  688. elif api_user_key is None:
  689. argv['api_user_key'] = str('')
  690.  
  691. # Name of the poster
  692. if paste_name is not None:
  693. argv['api_paste_name'] = str(paste_name)
  694.  
  695. # Syntax highlighting
  696. if paste_format is not None:
  697. paste_format = str(paste_format).strip().lower()
  698. argv['api_paste_format'] = paste_format
  699.  
  700. # Is the snippet private?
  701. if paste_private is not None:
  702. if paste_private == 'public':
  703. argv['api_paste_private'] = int(0)
  704. elif paste_private == 'unlisted':
  705. argv['api_paste_private'] = int(1)
  706. elif paste_private == 'private':
  707. argv['api_paste_private'] = int(2)
  708.  
  709. # Expiration for the snippet
  710. if paste_expire_date is not None:
  711. paste_expire_date = str(paste_expire_date).strip().upper()
  712. argv['api_paste_expire_date'] = paste_expire_date
  713.  
  714. # lets try to read the URL that we've just built.
  715. request_string = urllib.urlopen(self._api_url, urllib.urlencode(argv))
  716. response = request_string.read()
  717.  
  718. # do some basic error checking here so we can gracefully handle any
  719. # errors we are likely to encounter
  720. if response.startswith(self._bad_request):
  721. raise PastebinError(response)
  722. elif response.startswith(self._post_limit):
  723. raise PostLimitError(response)
  724. elif not response.startswith(self._prefix_url):
  725. raise PastebinError(response)
  726.  
  727. return response
  728.  
  729.  
  730. ######################################################
  731.  
  732. delete_paste = PastebinAPI.delete_paste
  733. user_details = PastebinAPI.user_details
  734. trending = PastebinAPI.trending
  735. pastes_by_user = PastebinAPI.pastes_by_user
  736. generate_user_key = PastebinAPI.generate_user_key
  737. paste = PastebinAPI.paste
  738.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement