| 
									
										
										
										
											2021-07-29 21:05:05 -04:00
										 |  |  | """Read resources contained within a package.""" | 
					
						
							| 
									
										
										
										
											2017-12-30 15:18:06 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-29 21:05:05 -04:00
										 |  |  | from ._common import ( | 
					
						
							|  |  |  |     as_file, | 
					
						
							|  |  |  |     files, | 
					
						
							|  |  |  |     Package, | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | from ._legacy import ( | 
					
						
							|  |  |  |     contents, | 
					
						
							|  |  |  |     open_binary, | 
					
						
							|  |  |  |     read_binary, | 
					
						
							|  |  |  |     open_text, | 
					
						
							|  |  |  |     read_text, | 
					
						
							|  |  |  |     is_resource, | 
					
						
							|  |  |  |     path, | 
					
						
							| 
									
										
										
										
											2021-12-18 21:28:49 -05:00
										 |  |  |     Resource, | 
					
						
							| 
									
										
										
										
											2021-07-29 21:05:05 -04:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-30 21:00:48 -05:00
										 |  |  | from .abc import ResourceReader | 
					
						
							| 
									
										
										
										
											2017-12-30 15:18:06 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-17 11:41:53 -04:00
										 |  |  | __all__ = [ | 
					
						
							|  |  |  |     'Package', | 
					
						
							|  |  |  |     'Resource', | 
					
						
							| 
									
										
										
										
											2021-03-04 13:43:00 -05:00
										 |  |  |     'ResourceReader', | 
					
						
							| 
									
										
										
										
											2020-05-08 19:20:26 -04:00
										 |  |  |     'as_file', | 
					
						
							| 
									
										
										
										
											2018-05-17 11:41:53 -04:00
										 |  |  |     'contents', | 
					
						
							| 
									
										
										
										
											2020-05-08 19:20:26 -04:00
										 |  |  |     'files', | 
					
						
							| 
									
										
										
										
											2018-05-17 11:41:53 -04:00
										 |  |  |     'is_resource', | 
					
						
							|  |  |  |     'open_binary', | 
					
						
							|  |  |  |     'open_text', | 
					
						
							|  |  |  |     'path', | 
					
						
							|  |  |  |     'read_binary', | 
					
						
							|  |  |  |     'read_text', | 
					
						
							| 
									
										
										
										
											2021-03-04 13:43:00 -05:00
										 |  |  | ] |